mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-06-26 08:16:15 -04:00
21 lines
590 B
XML
21 lines
590 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.2.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\FileLiberator\FileLiberator.csproj" />
|
|
<ProjectReference Include="..\..\LibationFileManager\LibationFileManager.csproj" />
|
|
<ProjectReference Include="..\AssertionHelper\AssertionHelper.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|