123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <Project>
- <PropertyGroup>
- <Product>$(AssemblyName) ($(TargetFramework))</Product>
- <Copyright>Copyright (c) .NET Foundation and Contributors.</Copyright>
- <MinClientVersion>2.12</MinClientVersion>
- <GenerateDocumentationFile>true</GenerateDocumentationFile>
- <Authors>.NET Foundation and Contributors</Authors>
- <PackageIconUrl>https://raw.githubusercontent.com/dotnet/reactive/0f837d11385cfaf575861ccc5a5fbcafb22d888f/Rx.NET/Resources/Artwork/Logo.png</PackageIconUrl>
- <PackageProjectUrl>http://go.microsoft.com/fwlink/?LinkId=261273</PackageProjectUrl>
- <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
- <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
- <DebugType>embedded</DebugType>
- <SignAssembly>true</SignAssembly>
- <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)ReactiveX.snk</AssemblyOriginatorKeyFile>
- <NoWarn>$(NoWarn);1701;1702;CS1591</NoWarn>
- <DefaultLanguage>en-US</DefaultLanguage>
- <IncludeSymbols>false</IncludeSymbols>
- <IsTestProject>$(MSBuildProjectName.Contains('Tests'))</IsTestProject>
- <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)Rx.ruleset</CodeAnalysisRuleSet>
- <GeneratePackageOnBuild Condition=" '$(IsTestProject)' != 'true' and '$(CreatePackage)' == 'true' ">true</GeneratePackageOnBuild>
- <PackageOutputPath>$(MSBuildThisFileDirectory)artifacts</PackageOutputPath>
- <EmbedUntrackedSources>true</EmbedUntrackedSources>
- <PublishRepositoryUrl>true</PublishRepositoryUrl>
- <LangVersion>latest</LangVersion>
- </PropertyGroup>
-
- <ItemGroup Condition="'$(IsTestProject)' != 'true' and '$(SourceLinkEnabled)' != 'false'">
- <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.2" />
- <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-62925-02" PrivateAssets="All"/>
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="Nerdbank.GitVersioning" Version="2.3.105" PrivateAssets="all" />
- </ItemGroup>
- <Target Name="AddCommitHashToAssemblyAttributes" BeforeTargets="GetAssemblyAttributes">
- <ItemGroup>
- <AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute" Condition=" '$(SourceRevisionId)' != '' ">
- <_Parameter1>CommitHash</_Parameter1>
- <_Parameter2>$(SourceRevisionId)</_Parameter2>
- </AssemblyAttribute>
- </ItemGroup>
- </Target>
- </Project>
|