mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
647 B
XML
21 lines
647 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
<Platforms>x64</Platforms>
|
||
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
||
|
<IsPackable>false</IsPackable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="xunit" Version="2.4.1" />
|
||
|
<PackageReference Include="xunit.runner.console" Version="2.4.1" />
|
||
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|