|
- <?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="coverlet.collector" Version="3.0.3" />
- <PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" />
- <PackageReference Update="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0" />
- <PackageReference Update="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
- <PackageReference Update="Microsoft.Extensions.Hosting" Version="5.0.0" />
- <PackageReference Update="Microsoft.Extensions.Options" Version="5.0.0" />
- <PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.10.0" />
- <PackageReference Update="Microsoft.Net.Compilers.Toolset" Version="3.9.0" />
- <PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0" />
- <PackageReference Update="System.IO.Pipelines" Version="5.0.1" />
- <PackageReference Update="System.Text.Json" Version="5.0.2" />
- <PackageReference Update="xunit" Version="2.4.1" />
- <PackageReference Update="xunit.runner.visualstudio" Version="2.4.3" />
- </ItemGroup>
-
- </Project>
|