0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 08:50:43 -05:00
launcher/project/SPT.Build/SPT.Build.csproj

14 lines
587 B
XML
Raw Normal View History

2023-03-03 19:25:33 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-03-06 18:03:37 -05:00
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
2023-03-03 19:25:33 +00:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
2024-05-21 20:15:19 +01:00
<Exec Command="dotnet publish ../SPT.Launcher/SPT.Launcher.csproj -c Release -f net8.0 -r win-x64 /p:IncludeNativeLibrariesForSelfExtract=true -p:PublishSingleFile=true --self-contained false"/>
<Exec Command="pwsh -NoProfile -ExecutionPolicy Bypass ../build.ps1" WorkingDirectory="$(ProjectDir)" />
2023-10-10 10:13:49 -04:00
</Target>
2023-03-03 19:25:33 +00:00
</Project>