1
0
Fork 0
mirror of https://github.com/oMaN-Rod/nxDumpFuse.git synced 2024-12-08 01:32:07 +00:00
nxDumpFuse/src/nxDumpFuse/nxDumpFuse.csproj
2022-11-26 17:00:23 -05:00

43 lines
1.8 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
<SelfContained>true</SelfContained>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<!-- <RuntimeIdentifier>linux-x64</RuntimeIdentifier> -->
<!--<RuntimeIdentifier>osx-x64</RuntimeIdentifier>-->
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<ApplicationIcon>nxDumpFuse.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\Fonts\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Assets\github_icon.png" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Assets\github_icon.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.18" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.18" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.18" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.18" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.18" />
</ItemGroup>
<ItemGroup>
<Compile Update="Views\AboutView.axaml.cs">
<DependentUpon>AboutView.axaml</DependentUpon>
</Compile>
<Compile Update="Views\FuseView.axaml.cs">
<DependentUpon>FuseView.axaml</DependentUpon>
</Compile>
<Compile Update="Views\FuseView.axaml.cs">
<DependentUpon>FuseView.axaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>