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.
25 lines
721 B
25 lines
721 B
<?xml version="1.0" encoding="utf-8"?> |
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
<PropertyGroup> |
|
<TargetFramework>net10.0</TargetFramework> |
|
<AssemblyName>Test.Plugin</AssemblyName> |
|
<Nullable>enable</Nullable> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ILSpy\ILSpy.csproj" /> |
|
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Avalonia" /> |
|
<PackageReference Include="Avalonia.AvaloniaEdit" /> |
|
<PackageReference Include="CommunityToolkit.Mvvm" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<AvaloniaResource Include="Clear.png" /> |
|
<None Include="Readme.txt" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|