Files
MercuryConverter/src/MercuryConverter.csproj
T

42 lines
1.8 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-20 22:57:06 -07:00
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
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-20 22:57:06 -07:00
<PackageReference Include="ini-parser" Version="2.5.2" />
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\**" />
</ItemGroup>
<ItemGroup>
2025-08-19 17:03:56 -07:00
<ProjectReference Include="..\_External\UAssetAPI\UAssetAPI\UAssetAPI.csproj" />
<ProjectReference Include="../_External/SaturnData/SaturnData/SaturnData.csproj" />
2025-08-17 01:34:44 -07:00
</ItemGroup>
2025-08-06 17:03:37 -07:00
</Project>