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.
34 lines
1.3 KiB
34 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net11.0</TargetFramework> |
|
<OutputType>Exe</OutputType> |
|
<Nullable>enable</Nullable> |
|
<IsPackable>false</IsPackable> |
|
<RootNamespace>ICSharpCode.ILSpy.Tests</RootNamespace> |
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault> |
|
|
|
<!-- Strong-named with the shared snk so ICSharpCode.ILSpyX can grant |
|
InternalsVisibleTo for the analyzer-library tests (mirrors ILSpy.Tests). --> |
|
<SignAssembly>True</SignAssembly> |
|
<AssemblyOriginatorKeyFile>..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.snk</AssemblyOriginatorKeyFile> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Avalonia" /> |
|
<PackageReference Include="Avalonia.Headless.NUnit" /> |
|
<PackageReference Include="Avalonia.Themes.Simple" /> |
|
<PackageReference Include="NUnit" /> |
|
<PackageReference Include="NUnit3TestAdapter" /> |
|
<PackageReference Include="coverlet.MTP" /> |
|
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" /> |
|
<PackageReference Include="Microsoft.Testing.Extensions.VSTestBridge" /> |
|
<PackageReference Include="AwesomeAssertions" /> |
|
<PackageReference Include="NSubstitute" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ILSpy\ILSpy.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|