mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:30:45 -05:00
19 lines
681 B
XML
19 lines
681 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net6.0</TargetFramework>
|
|||
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Aki.ByteBanger\Aki.ByteBanger.csproj" />
|
|||
|
<ProjectReference Include="..\Aki.Launcher.Base\Aki.Launcher.Base.csproj" />
|
|||
|
<ProjectReference Include="..\Aki.Launcher\Aki.Launcher.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(BuildingInsideVisualStudio)' == 'true'">
|
|||
|
<Exec Command="dotnet cake "../build.cake" --config="$(ConfigurationName)" --vsbuilt=true" />
|
|||
|
</Target>
|
|||
|
|
|||
|
</Project>
|