2021-06-15 03:39:17 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-10-20 19:11:08 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2021-06-15 03:39:17 +00:00
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-15 03:09:50 +00:00
|
|
|
<PackageReference Include="coverlet.msbuild" Version="6.0.0">
|
2022-10-07 00:02:22 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2024-06-06 14:18:56 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
|
2023-11-15 03:09:50 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
|
|
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
|
2024-06-06 14:48:29 +00:00
|
|
|
<PackageReference Include="Xunit.DependencyInjection" Version="9.3.0" />
|
2023-11-15 03:09:50 +00:00
|
|
|
<PackageReference Include="Xunit.DependencyInjection.Logging" Version="8.1.0" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-06 14:48:29 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
|
|
|
|
<PackageReference Include="xunit" Version="2.8.1" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
|
2021-06-15 03:39:17 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2024-06-06 14:48:29 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.2">
|
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>
|