0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:10:44 -05:00
launcher/project/SPT.Launcher/SPT.Launcher.csproj

50 lines
1.9 KiB
XML
Raw Normal View History

2023-03-03 19:25:33 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2024-03-06 18:03:37 -05:00
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
2023-03-03 19:25:33 +00:00
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Nullable>enable</Nullable>
2024-05-30 11:55:41 -04:00
<ApplicationIcon>Assets\spt-logo.ico</ApplicationIcon>
2023-03-03 19:25:33 +00:00
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
<AvaloniaXaml Remove="Properties\**" />
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="Properties\**" />
<AvaloniaResource Remove="Assets\Styles.axaml" />
<None Remove=".gitignore" />
2024-05-21 20:15:19 +01:00
<None Remove="Assets\SPT-logo.png" />
2023-03-03 19:25:33 +00:00
<None Remove="Assets\icon.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.15" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.15" />
<!--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.12" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.15" />
<PackageReference Include="DialogHost.Avalonia" Version="0.5.0" />
</ItemGroup>
<ItemGroup>
2024-05-21 20:15:19 +01:00
<ProjectReference Include="..\SPT.ByteBanger\SPT.ByteBanger.csproj" />
<ProjectReference Include="..\SPT.Launcher.Base\SPT.Launcher.Base.csproj" />
2023-03-03 19:25:33 +00:00
</ItemGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json">
<HintPath>References\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="zlib.net">
<HintPath>References\zlib.net.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<AvaloniaXaml Update="Assets\Styles.axaml">
<SubType>Designer</SubType>
</AvaloniaXaml>
</ItemGroup>
</Project>