-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathRubjerg.Graphviz.Test.csproj
More file actions
54 lines (48 loc) · 1.87 KB
/
Rubjerg.Graphviz.Test.csproj
File metadata and controls
54 lines (48 loc) · 1.87 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<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="Rubjerg.Graphviz">
<Version>*-*</Version>
</PackageReference>
<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>
<None Update="*.dot">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<PropertyGroup>
<GenerateReadme>generatereadme.bat</GenerateReadme>
</PropertyGroup>
<Exec Command="$(GenerateReadme)" Condition="'$(OS)' == 'Windows_NT'" />
</Target>
</Project>