Files
MercuryConverter/MercuryConverter.csproj
T

40 lines
1.7 KiB
XML
Raw Normal View History

2025-08-06 17:03:37 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
2025-08-07 17:41:58 -07:00
<AvaloniaUseCompiledBindingsByDefault>false</AvaloniaUseCompiledBindingsByDefault>
2025-08-06 17:03:37 -07:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.2" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.2" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.2" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.2" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.3.2" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.2">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
2025-08-13 20:13:40 -07:00
<PackageReference Include="Deadpikle.AvaloniaProgressRing" Version="0.10.10" />
<PackageReference Include="DialogHost.Avalonia" Version="0.9.3" />
2025-08-17 01:34:44 -07:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2025-08-06 17:03:37 -07:00
</ItemGroup>
2025-08-07 17:41:58 -07:00
<ItemGroup>
2025-08-13 20:13:40 -07:00
<AvaloniaResource Include="Assets\**" />
2025-08-07 17:41:58 -07:00
</ItemGroup>
2025-08-17 01:34:44 -07:00
<ItemGroup>
<Compile Remove="_External\**" />
<Compile Include="_External\SaturnData\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="_External\UAssetAPI\UAssetAPI\UAssetAPI.csproj" />
</ItemGroup>
2025-08-06 17:03:37 -07:00
</Project>