|
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Based on https://github.com/terrafx/terrafx/blob/master/Directory.Build.props -->
- <!-- Copyright © Tanner Gooding and Contributors -->
- <Project>
-
- <!--
- Directory.Build.targets is automatically picked up and imported by
- Microsoft.Common.targets. This file needs to exist, even if empty so that
- files in the parent directory tree, with the same name, are not imported
- instead. The import fairly late and most other props/targets will have been
- imported beforehand. We also don't need to add ourselves to
- MSBuildAllProjects, as that is done by the file that imports us.
- -->
-
- <!-- Settings that append the existing setting value -->
- <PropertyGroup>
- <DefineConstants>$(DefineConstants);$(OS)</DefineConstants>
- <NoWarn>$(NoWarn);NU5105</NoWarn>
- <PackageVersion Condition="'$(GITHUB_RUN_ID)' != ''">$(Version).$(GITHUB_RUN_ID)</PackageVersion>
- </PropertyGroup>
-
- <!-- Package versions for package references across all projects -->
- <ItemGroup>
- <PackageReference Update="Microsoft.Net.Compilers.Toolset" Version="3.6.0-2.final" />
- <PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.5.0" />
- <PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0" />
- </ItemGroup>
-
- </Project>
|