mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-04-19 07:32:28 +03:00
- Fixes remaining ProjectX issues and failing tests. - Relaxes dependencies on other libraries.
29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- Compilation -->
|
|
<PropertyGroup>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFramework>netcoreapp3</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<!-- References -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
|
|
</ItemGroup>
|
|
|
|
<!-- Files Linking -->
|
|
<Target Name="FilesRemove" AfterTargets="Build;Clean">
|
|
<Message Text="Removing Files" Importance="high" />
|
|
<Exec Command="RD "$(OutputPath)Files" /S/Q" />
|
|
</Target>
|
|
<Target Name="FilesCreate" AfterTargets="Build">
|
|
<Message Text="Linking Files" Importance="high" />
|
|
<Exec Command="MKLINK /D "$(OutputPath)Files" "$(ProjectDir)Files"" />
|
|
</Target>
|
|
|
|
</Project>
|