Directory.build.props 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project>
  2. <PropertyGroup>
  3. <Copyright>Copyright (c) .NET Foundation and Contributors.</Copyright>
  4. <MinClientVersion>2.12</MinClientVersion>
  5. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  6. <Authors>.NET Foundation and Contributors</Authors>
  7. <PackageIconUrl>https://raw.githubusercontent.com/dotnet/reactive/0f837d11385cfaf575861ccc5a5fbcafb22d888f/Rx.NET/Resources/Artwork/Logo.png</PackageIconUrl>
  8. <PackageProjectUrl>https://github.com/dotnet/reactive</PackageProjectUrl>
  9. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  10. <DebugType Condition="'$(Configuration)' != 'Debug'">embedded</DebugType>
  11. <SignAssembly>true</SignAssembly>
  12. <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)ReactiveX.snk</AssemblyOriginatorKeyFile>
  13. <NoWarn>$(NoWarn);1701;1702;CS1591;NU5105</NoWarn>
  14. <DefaultLanguage>en-US</DefaultLanguage>
  15. <IncludeSymbols>false</IncludeSymbols>
  16. <IsTestProject>$(MSBuildProjectName.Contains('Tests'))</IsTestProject>
  17. <GeneratePackageOnBuild Condition=" '$(IsTestProject)' != 'true' and '$(CreatePackage)' == 'true' ">true</GeneratePackageOnBuild>
  18. <PackageOutputPath>$(MSBuildThisFileDirectory)artifacts</PackageOutputPath>
  19. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  20. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  21. <LangVersion>latest</LangVersion>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
  24. <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
  28. <PackageReference Include="Nerdbank.GitVersioning" Version="3.4.231" PrivateAssets="all" />
  29. </ItemGroup>
  30. <ItemGroup Condition="'$(IsTestProject)' == 'true'">
  31. <PackageReference Include="coverlet.collector" Version="3.2.0" />
  32. </ItemGroup>
  33. </Project>