mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 03:10:44 -05:00
51 lines
2.0 KiB
XML
51 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<Nullable>enable</Nullable>
|
|
<ApplicationIcon>Assets\spt-logo.ico</ApplicationIcon>
|
|
</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" />
|
|
<None Remove="Assets\SPT-logo.png" />
|
|
<None Remove="Assets\icon.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Assets\icon.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.1.0-rc2" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.1.0-rc2" />
|
|
<!--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="11.1.0-rc2" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.0-rc2" />
|
|
<PackageReference Include="DialogHost.Avalonia" Version="0.8.0-avalonia11dot1-3" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SPT.ByteBanger\SPT.ByteBanger.csproj" />
|
|
<ProjectReference Include="..\SPT.Launcher.Base\SPT.Launcher.Base.csproj" />
|
|
</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>
|