-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathRubjerg.Graphviz.TransitiveTest.csproj
More file actions
40 lines (35 loc) · 1.42 KB
/
Rubjerg.Graphviz.TransitiveTest.csproj
File metadata and controls
40 lines (35 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net8.0</TargetFrameworks>
<Platforms>x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
<RestorePackagesPath>..\packages</RestorePackagesPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<LangVersion>latest</LangVersion>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit.ConsoleRunner">
<Version>3.18.3</Version>
</PackageReference>
<PackageReference Include="NUnit">
<Version>3.14.0</Version>
</PackageReference>
<PackageReference Include="NUnit.Extension.TeamCityEventListener">
<Version>1.0.9</Version>
</PackageReference>
<PackageReference Include="OpenCover">
<Version>4.7.1221</Version>
</PackageReference>
<!--We need both packages below to run the tests in VS https://github.com/microsoft/vstest/issues/1870-->
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Rubjerg.Graphviz.Test\Rubjerg.Graphviz.Test.csproj" />
</ItemGroup>
</Project>