0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-12 17:30:43 -05:00
modules/project/SPT.Build/SPT.Build.csproj

35 lines
1.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net471</TargetFramework>
<Configuration>Release</Configuration>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Company>SPT</Company>
<Copyright>Copyright @ SPT 2024</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" ExcludeAssets="runtime" PrivateAssets="all">
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SPT.Common\SPT.Common.csproj" />
<ProjectReference Include="..\SPT.Core\SPT.Core.csproj" />
<ProjectReference Include="..\SPT.Reflection\SPT.Reflection.csproj" />
<ProjectReference Include="..\SPT.PrePatch\SPT.PrePatch.csproj" />
<ProjectReference Include="..\SPT.Debugging\SPT.Debugging.csproj" />
<ProjectReference Include="..\SPT.SinglePlayer\SPT.SinglePlayer.csproj" />
<ProjectReference Include="..\SPT.Custom\SPT.Custom.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="pwsh -NoProfile -ExecutionPolicy Bypass ../build.ps1" WorkingDirectory="$(ProjectDir)" />
</Target>
</Project>