You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Directory.Build.targets 2.1 kB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Based on https://github.com/terrafx/terrafx/blob/master/Directory.Build.props -->
  3. <!-- Copyright © Tanner Gooding and Contributors -->
  4. <Project>
  5. <!--
  6. Directory.Build.targets is automatically picked up and imported by
  7. Microsoft.Common.targets. This file needs to exist, even if empty so that
  8. files in the parent directory tree, with the same name, are not imported
  9. instead. The import fairly late and most other props/targets will have been
  10. imported beforehand. We also don't need to add ourselves to
  11. MSBuildAllProjects, as that is done by the file that imports us.
  12. -->
  13. <!-- Settings that append the existing setting value -->
  14. <PropertyGroup>
  15. <DefineConstants>$(DefineConstants);$(OS)</DefineConstants>
  16. <NoWarn>$(NoWarn);NU5105</NoWarn>
  17. <PackageVersion Condition="'$(GITHUB_RUN_ID)' != ''">$(Version).$(GITHUB_RUN_ID)</PackageVersion>
  18. </PropertyGroup>
  19. <!-- Package versions for package references across all projects -->
  20. <ItemGroup>
  21. <PackageReference Update="coverlet.collector" Version="3.0.3" />
  22. <PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" />
  23. <PackageReference Update="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0" />
  24. <PackageReference Update="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
  25. <PackageReference Update="Microsoft.Extensions.Hosting" Version="5.0.0" />
  26. <PackageReference Update="Microsoft.Extensions.Options" Version="5.0.0" />
  27. <PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.10.0" />
  28. <PackageReference Update="Microsoft.Net.Compilers.Toolset" Version="3.9.0" />
  29. <PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0" />
  30. <PackageReference Update="System.IO.Pipelines" Version="5.0.1" />
  31. <PackageReference Update="System.Text.Json" Version="5.0.2" />
  32. <PackageReference Update="xunit" Version="2.4.1" />
  33. <PackageReference Update="xunit.runner.visualstudio" Version="2.4.3" />
  34. </ItemGroup>
  35. </Project>

No Description