35 lines
967 B
XML
35 lines
967 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/>
|
|
<PackageReference Include="MSTest" Version="3.6.1"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Libraries\Core\Core.csproj"/>
|
|
<ProjectReference Include="..\Libraries\SptDependencyInjection\SptDependencyInjection.csproj"/>
|
|
<ProjectReference Include="..\Libraries\SptCommon\SptCommon.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="TestAssets\**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Tests\Mock\MockSptLogger.cs"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|