mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
46 lines
1.7 KiB
XML
46 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Readme.md" />
|
|
<Compile Remove="AVortexCompilerTest.cs" />
|
|
<None Include="AVortexCompilerTest.cs" />
|
|
<Compile Remove="VortexTests.cs" />
|
|
<None Include="VortexTests.cs" />
|
|
<Compile Remove="WebAutomationTests.cs" />
|
|
<Compile Remove="ZEditIntegrationTests.cs" />
|
|
<None Include="ZEditIntegrationTests.cs" />
|
|
<Compile Remove="CompilationStackTests.cs" />
|
|
<Compile Remove="FilePickerTests.cs" />
|
|
<None Update="xunit.runner.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CefSharp.Common" Version="79.1.360" />
|
|
<PackageReference Include="CefSharp.OffScreen" Version="79.1.360" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
|
|
<PackageReference Include="coverlet.collector" Version="1.2.1" />
|
|
<PackageReference Include="XunitContext" Version="1.9.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Wabbajack.Common.CSP\Wabbajack.Common.CSP.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Lib\Wabbajack.Lib.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|