mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.5 KiB
76 lines
2.5 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net46</TargetFramework> |
|
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo> |
|
|
|
<EnableDefaultItems>false</EnableDefaultItems> |
|
|
|
<SignAssembly>True</SignAssembly> |
|
<AssemblyOriginatorKeyFile>..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.snk</AssemblyOriginatorKeyFile> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
|
<DebugType>full</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
|
<DebugType>pdbonly</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<!-- Workaround for lack of XAML support in the new project system --> |
|
<LanguageTargets>$(MSBuildExtensionsPath)\$(VisualStudioVersion)\Bin\Microsoft.CSharp.targets</LanguageTargets> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Reference Include="PresentationCore" /> |
|
<Reference Include="PresentationFramework" /> |
|
<Reference Include="System.Xaml" /> |
|
<Reference Include="UIAutomationProvider" /> |
|
<Reference Include="UIAutomationTypes" /> |
|
<Reference Include="WindowsBase" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Page Include="Themes\Generic.xaml"> |
|
<Generator>MSBuild:Compile</Generator> |
|
<SubType>Designer</SubType> |
|
</Page> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="Converters.cs" /> |
|
<Compile Include="EditTextBox.cs" /> |
|
<Compile Include="ExtensionMethods.cs" /> |
|
<Compile Include="GeneralAdorner.cs" /> |
|
<Compile Include="InsertMarker.cs" /> |
|
<Compile Include="LinesRenderer.cs" /> |
|
<Compile Include="Properties\AssemblyInfo.cs"> |
|
<SubType>Code</SubType> |
|
</Compile> |
|
<Compile Include="Properties\GlobalAssemblyInfo.cs" /> |
|
<Compile Include="FlatListTreeNode.cs" /> |
|
<Compile Include="SharpGridView.cs" /> |
|
<Compile Include="SharpTreeNode.cs" /> |
|
<Compile Include="SharpTreeNodeCollection.cs" /> |
|
<Compile Include="SharpTreeNodeView.cs" /> |
|
<Compile Include="SharpTreeView.cs" /> |
|
<Compile Include="SharpTreeViewAutomationPeer.cs" /> |
|
<Compile Include="SharpTreeViewItem.cs" /> |
|
<Compile Include="SharpTreeViewTextSearch.cs" /> |
|
<Compile Include="SharpTreeViewItemAutomationPeer.cs" /> |
|
<Compile Include="TreeFlattener.cs" /> |
|
<Compile Include="TreeTraversal.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<None Include="copyright.txt" /> |
|
<None Include="license.txt" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|