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.
65 lines
2.7 KiB
65 lines
2.7 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net6.0-windows</TargetFramework> |
|
<IsPackable>false</IsPackable> |
|
<StartupObject>AutoGeneratedProgram</StartupObject> |
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
|
|
|
<NoWarn>1701;1702;1705,67,169,1058,728,1720,649,168,251</NoWarn> |
|
|
|
<EnableDefaultItems>false</EnableDefaultItems> |
|
|
|
<RootNamespace>ICSharpCode.ILSpy.Tests</RootNamespace> |
|
<AutoGenerateBindingRedirects>True</AutoGenerateBindingRedirects> |
|
|
|
<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 Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
|
<DefineConstants>TRACE;DEBUG;NET46;ROSLYN;CS60;CS70</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="Analyzers\MemberImplementsInterfaceAnalyzerTests.cs" /> |
|
<Compile Include="Analyzers\MethodUsesAnalyzerTests.cs" /> |
|
<Compile Include="Analyzers\TestCases\MainAssembly.cs" /> |
|
<Compile Include="Analyzers\TypeUsedByAnalyzerTests.cs" /> |
|
</ItemGroup> |
|
|
|
<Import Project="..\packages.props" /> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="DiffLib" Version="$(DiffLibVersion)" /> |
|
<PackageReference Include="System.Collections.Immutable" Version="$(SystemCollectionsImmutableVersion)" /> |
|
<PackageReference Include="System.Reflection.Metadata" Version="$(SystemReflectionMetadataVersion)" /> |
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(RoslynVersion)" /> |
|
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="$(RoslynVersion)" /> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkVersion)" /> |
|
<PackageReference Include="NUnit3TestAdapter" Version="$(NUnitAdapterVersion)" /> |
|
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)" /> |
|
<PackageReference Include="NUnit" Version="$(NUnitVersion)" /> |
|
<!-- used for xml test result files --> |
|
<PackageReference Include="JunitXml.TestLogger" Version="$(JUnitXmlTestLoggerVersion)" /> |
|
<PackageReference Include="Moq" Version="$(MoqVersion)" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" /> |
|
<ProjectReference Include="..\ILSpy\ILSpy.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project> |