2021-06-15 03:39:17 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-06-15 03:39:17 +00:00
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-26 12:06:37 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115" />
|
|
|
|
<PackageReference Include="Xunit.DependencyInjection" Version="8.1.0" />
|
|
|
|
<PackageReference Include="Xunit.DependencyInjection.Logging" Version="8.0.0" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-26 12:06:37 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
|
|
|
<PackageReference Include="xunit" Version="2.4.2-pre.12" />
|
2021-06-15 03:39:17 +00:00
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2021-07-31 03:04:25 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0">
|
2021-06-15 03:39:17 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-26 12:06:37 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.VFS\Wabbajack.VFS.csproj" />
|
2021-06-15 03:39:17 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|