Directory.build.props 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <SignAssembly>true</SignAssembly>
  11. <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)ReactiveX.snk</AssemblyOriginatorKeyFile>
  12. <NoWarn>$(NoWarn);1701;1702;CS1591;NU5105</NoWarn>
  13. <DefaultLanguage>en-US</DefaultLanguage>
  14. <IncludeSymbols>false</IncludeSymbols>
  15. <IsTestProject>$(MSBuildProjectName.Contains('Tests'))</IsTestProject>
  16. <GeneratePackageOnBuild Condition=" '$(IsTestProject)' != 'true' and '$(CreatePackage)' == 'true' ">true</GeneratePackageOnBuild>
  17. <PackageOutputPath>$(MSBuildThisFileDirectory)artifacts</PackageOutputPath>
  18. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  19. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  20. <LangVersion>latest</LangVersion>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)' != 'Debug'">
  23. <IncludeSymbols>true</IncludeSymbols>
  24. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
  27. <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
  31. <PackageReference Include="Nerdbank.GitVersioning" Version="3.5.119" PrivateAssets="all" />
  32. </ItemGroup>
  33. <ItemGroup Condition="'$(IsTestProject)' == 'true'">
  34. <PackageReference Include="coverlet.collector" Version="3.2.0" />
  35. </ItemGroup>
  36. <PropertyGroup>
  37. <AnalysisLevelDesign>7.0-default</AnalysisLevelDesign>
  38. <AnalysisLevelNaming>7.0-all</AnalysisLevelNaming>
  39. <AnalysisLevelPerformance>7.0-all</AnalysisLevelPerformance>
  40. <!-- Enable analyzers on older targets. -->
  41. <EnableNETAnalyzers>true</EnableNETAnalyzers>
  42. <!--
  43. Disable diagnostics:
  44. CA1001 - types holding disposable fields should implement IDisposable. See next item.
  45. CA2213 - IDisposable types should Dispose any IDisposable fields. This rule finds over 600
  46. examples! These are all in subtle multithreaded or async code. Some of them appear
  47. not to be real problems. For example, there are places where schedulers retain
  48. references to IDisposable work items, but that IDisposable interfaces is only there
  49. to enable application code to cancel scheduled work, so it's not Rx's place to call
  50. Dispose. And there are more subtle cases where disposal is deferred to give threads
  51. a chance to shut down. Each of these likely needs individual review:
  52. https://github.com/dotnet/reactive/issues/1927
  53. IDE0056 - Use of index/range syntax - relevant types not available on all targets, so we can't
  54. IDE0057 do this.
  55. -->
  56. <!-- Get diagnostics back to the level that the .NET 5.0 SDK had for now. Fix these properly before release. -->
  57. <NoWarn>$(NoWarn);CA1001;CA2213;IDE0056;IDE0057</NoWarn>
  58. </PropertyGroup>
  59. <ItemGroup>
  60. <GlobalAnalyzerConfigFiles Include="$(MSBuildThisFileDirectory)analyzers.globalconfig" />
  61. </ItemGroup>
  62. </Project>