-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
24 lines (19 loc) · 995 Bytes
/
Directory.Build.targets
File metadata and controls
24 lines (19 loc) · 995 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project=".build\Common.props" Condition="'$(CreatePackage)' == 'true'" />
<!-- Package refereces for all projects if CreatePackage=true -->
<ItemGroup Condition="'$(CreatePackage)' == 'true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- Package versions for package references across all projects -->
<ItemGroup>
<!--3rd party dependencies-->
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Update="Moq" Version="4.16.1" />
<PackageReference Update="NUnit" Version="3.13.2" />
<PackageReference Update="NUnit3TestAdapter" Version="4.1.0" />
<PackageReference Update="coverlet.collector" Version="5.8.0" />
<PackageReference Update="CommandLineParser" Version="2.8.0" />
<PackageReference Update="System.ComponentModel.Annotations" Version="4.7.0" />
</ItemGroup>
</Project>