2023-03-03 19:25:33 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2024-03-05 08:33:31 +00:00
|
|
|
|
<PropertyGroup>
|
2024-03-06 18:03:37 -05:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-03-05 08:33:31 +00:00
|
|
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
|
|
|
</PropertyGroup>
|
2023-03-03 19:25:33 +00:00
|
|
|
|
|
2024-02-16 12:08:15 +00:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2024-03-06 18:03:37 -05:00
|
|
|
|
<Exec Command="dotnet publish ../Aki.Launcher/Aki.Launcher.csproj -c Release -f net8.0 -r win-x64 /p:IncludeNativeLibrariesForSelfExtract=true -p:PublishSingleFile=true --self-contained false"/>
|
2024-03-05 08:33:31 +00:00
|
|
|
|
<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>
|