56 строки
2.7 KiB
XML
56 строки
2.7 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<MinClientVersion>2.12</MinClientVersion>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
|
|
<DebugType>embedded</DebugType>
|
|
<Authors>.NET Foundation and Contributors</Authors>
|
|
<Copyright>Copyright (c) .NET Foundation and Contributors</Copyright>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/reactiveui/refit</PackageProjectUrl>
|
|
<PackageIcon>refit_logo.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
<Description>The automatic type-safe REST library for Xamarin and .NET</Description>
|
|
<NoPackageAnalysis>true</NoPackageAnalysis>
|
|
<LangVersion>preview</LangVersion>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<!-- Net Analyzers config taken from : https://docs.microsoft.com/en-gb/visualstudio/code-quality/migrate-from-fxcop-analyzers-to-net-analyzers?view=vs-2019 -->
|
|
<EnableNETAnalyzers>True</EnableNETAnalyzers>
|
|
<AnalysisLevel>latest</AnalysisLevel>
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
<ImplicitUsings>true</ImplicitUsings>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)buildtask.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(MSBuildThisFileDirectory)refit_logo.png" Pack="true" PackagePath="\" Visible="false" />
|
|
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="LICENSE" />
|
|
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(IsTestProject)' != 'true'">
|
|
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.8.14" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" 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>
|