Directory.build.props 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. <PackageIcon>icon.png</PackageIcon>
  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
  32. Include="Nerdbank.GitVersioning"
  33. Version="3.6.143"
  34. PrivateAssets="all" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <None Include="$(MSBuildThisFileDirectory)../Resources/Artwork/Logo.png" Pack="true" PackagePath="\icon.png"/>
  38. </ItemGroup>
  39. <ItemGroup Condition="'$(IsTestProject)' == 'true'">
  40. <PackageReference Include="coverlet.collector" Version="3.2.0" />
  41. </ItemGroup>
  42. <PropertyGroup Condition="'$(TargetFramework)'=='uap10.0.18362'">
  43. <!--
  44. See 0003-uap-targets.md ADR in documentation for the reasons behind these settings.
  45. -->
  46. <NoStdLib>True</NoStdLib>
  47. <TargetPlatformMinVersion>10.0.18362</TargetPlatformMinVersion>
  48. <TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion>
  49. <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
  50. <TargetFrameworkMoniker>.NETCore,Version=v5.0</TargetFrameworkMoniker>
  51. <TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
  52. <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
  53. <NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
  54. <DefineConstants>$(DefineConstants);WINDOWS_UWP</DefineConstants>
  55. </PropertyGroup>
  56. <PropertyGroup>
  57. <AnalysisLevelDesign>7.0-default</AnalysisLevelDesign>
  58. <AnalysisLevelNaming>7.0-all</AnalysisLevelNaming>
  59. <AnalysisLevelPerformance>7.0-all</AnalysisLevelPerformance>
  60. <!-- Enable analyzers on older targets. -->
  61. <EnableNETAnalyzers>true</EnableNETAnalyzers>
  62. <!--
  63. Disabled diagnostics:
  64. CA1001 - types holding disposable fields should implement IDisposable. See next item.
  65. CA2213 - IDisposable types should Dispose any IDisposable fields. This rule finds over 600
  66. examples! These are all in subtle multithreaded or async code. Some of them appear
  67. not to be real problems. For example, there are places where schedulers retain
  68. references to IDisposable work items, but that IDisposable interfaces is only there
  69. to enable application code to cancel scheduled work, so it's not Rx's place to call
  70. Dispose. And there are more subtle cases where disposal is deferred to give threads
  71. a chance to shut down. Each of these likely needs individual review:
  72. https://github.com/dotnet/reactive/issues/1927
  73. IDE0028 - Suggests Collection expressions in place of construction, e.g. replaces new List<int>(x)
  74. [.. x]. To me, this is less readable, and it doesn't improve performance, as far as we know.
  75. Annoyingly, we don't seem to be able to configure this to apply only when it would not
  76. introduce a spread.
  77. IDE0056 - Use of index/range syntax - relevant types not available on all targets, so we can't
  78. IDE0057 do this.
  79. IDE0130 - Namespace does not match folder structure. Conforming to this would be a significant
  80. upheaval, and it's not clear that it would be an improvement.
  81. IDE0290 - Primary ctors. This diagnostic suggests them in a lot of places where we don't want
  82. them. E.g., in most types with multiple constructors I find I prefer not to have
  83. a primary ctor. Since this is all or nothing, we turn it off.
  84. IDE0305 - Suggests Collection expressions in place of .ToArray. E.g, wants to change this:
  85. _readyList.ToArray()
  86. to this:
  87. [.. readyList]
  88. This won't improve performance as far as we know (sometimes a reason for using that
  89. syntax), and it's not obviously an improvement in readability.
  90. IDE0306 - Suggests Collection expressions in place of construction, e.g. replaces new List<int>(x)
  91. [.. x]. To me, this is less readable, and it doesn't improve performance, as far as we know.
  92. CA1510 - use ArgumentNullException.ThrowIf (not available on all targets)
  93. CA1513 - use ObjectDisposedException.ThrowIf (not available on all targets)
  94. -->
  95. <NoWarn>$(NoWarn);CA1001;CA2213;CA1510;CA1513;IDE0028;IDE0056;IDE0057;IDE0130;IDE0290;IDE0305;IDE0306</NoWarn>
  96. </PropertyGroup>
  97. <ItemGroup>
  98. <GlobalAnalyzerConfigFiles Include="$(MSBuildThisFileDirectory)analyzers.globalconfig" />
  99. </ItemGroup>
  100. </Project>