-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathDiffEngine.Tests.csproj
More file actions
19 lines (19 loc) · 884 Bytes
/
DiffEngine.Tests.csproj
File metadata and controls
19 lines (19 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net10.0;net48</TargetFrameworks>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<NoWarn>$(NoWarn);SYSLIB0012</NoWarn>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Using Include="DiffEngine" />
<PackageReference Include="MarkdownSnippets.MsBuild" PrivateAssets="all" />
<PackageReference Include="Argon" />
<PackageReference Include="ProjectDefaults" PrivateAssets="all" />
<ProjectReference Include="..\DiffEngine\DiffEngine.csproj" />
<Compile Remove="DefinitionsTest.cs" Condition="'$(TargetFramework)' == 'net9.0'" />
<PackageReference Include="TUnit" />
</ItemGroup>
</Project>