mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-13 14:17:15 -04:00
Libation already runs its tests on Microsoft.Testing.Platform via the MSTest metapackage; this only moves the version off 4.2.2 so all three repos name the same MSTest release. Co-authored-by: rmcrackan <rmcrackan@gmail.com>
20 lines
514 B
XML
20 lines
514 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<IsPackable>false</IsPackable>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MSTest" Version="4.3.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\LibationFileManager\LibationFileManager.csproj" />
|
|
<ProjectReference Include="..\AssertionHelper\AssertionHelper.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|