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.
33 lines
1.1 KiB
33 lines
1.1 KiB
<?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> |
|
|
|
<ItemGroup> |
|
<!-- A BAML stream inside a .g.resources container, the way the WPF build puts one into an |
|
assembly, so that exporting this assembly as a project has one to convert. --> |
|
<EmbeddedResource Include="fixtures\test.g.resources" LogicalName="ICSharpCode.ILSpyCmd.Tests.g.resources" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|