-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSolutionItems.csproj
More file actions
26 lines (22 loc) · 883 Bytes
/
SolutionItems.csproj
File metadata and controls
26 lines (22 loc) · 883 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net46</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>
<ItemGroup>
<None Include="*" Exclude="*.csproj*" />
<None Include=".teamcity\**" />
<None Include="Build\*" />
<None Include="Doc\**" />
<None Include="Src\RiderPlugin\*" />
<None Include="Src\RiderPlugin\src\**" />
<None Include="Shared\Build\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NUnit.ConsoleRunner" Version="3.10.0" />
<PackageReference Include="NUnit.Extension.NUnitV2Driver" Version="3.7.0" />
<PackageReference Include="NUnit.Extension.TeamCityEventListener" Version="1.0.6" />
<PackageReference Include="OpenCover" Version="4.7.922" />
<PackageReference Include="ReportGenerator" Version="4.2.12" />
</ItemGroup>
</Project>