-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUnitTests.csproj
More file actions
20 lines (17 loc) · 889 Bytes
/
UnitTests.csproj
File metadata and controls
20 lines (17 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net8.0</TargetFrameworks>
<TargetFrameworks Condition=" $([MSBuild]::IsOSUnixLike()) ">net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JunitXml.TestLogger" Version="7.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
<ProjectReference Include="..\CSSParser\CSSParser.csproj" />
<ProjectReference Include="..\CSSParser.ExtendedLESSParser\CSSParser.ExtendedLESSParser.csproj" />
</ItemGroup>
</Project>