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.
27 lines
849 B
27 lines
849 B
<?xml version="1.0" encoding="utf-8"?> |
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net11.0</TargetFramework> |
|
<LangVersion>preview</LangVersion> |
|
|
|
<IsPackable>false</IsPackable> |
|
|
|
<GenerateTestingPlatformEntryPoint>true</GenerateTestingPlatformEntryPoint> |
|
<StartupObject>ICSharpCode.ILSpyCmd.Tests.MicrosoftTestingPlatformEntryPoint</StartupObject> |
|
<OutputType>Exe</OutputType> |
|
|
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="NUnit" /> |
|
<PackageReference Include="NUnit3TestAdapter" /> |
|
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" /> |
|
<PackageReference Include="Microsoft.Testing.Extensions.VSTestBridge" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ICSharpCode.ILSpyCmd\ICSharpCode.ILSpyCmd.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|