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