Files
Libation/Source/_Tests/FileManager.Tests/FileManager.Tests.csproj
T
Cursor Agentandrmcrackan afd970c672 Update MSTest to 4.3.3
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>
2026-08-19 18:17:57 +00:00

20 lines
501 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="..\..\FileManager\FileManager.csproj" />
<ProjectReference Include="..\AssertionHelper\AssertionHelper.csproj" />
</ItemGroup>
</Project>