зеркало из
1
0
Форкнуть 0
reproducible-builds/Directory.Build.props

36 строки
1.3 KiB
Plaintext
Исходник Обычный вид История

<Project>
2021-05-14 22:54:47 +03:00
<PropertyGroup>
<!-- Default to not packaging a project. Override per-project where dotnet sdk nuget packaging
is desired. -->
<IsPackable Condition="'$(IsPackable)' == ''">false</IsPackable>
<!-- set up package output path -->
<PackageOutputPath Condition="'$(Build_ArtifactStagingDirectory)' != ''">
$(Build_ArtifactStagingDirectory)\packages\</PackageOutputPath>
<PackageOutputPath Condition="'$(PackageOutputPath)' == ''">$(MSBuildThisFileDirectory)packages\</PackageOutputPath>
<SourceLinkPackageVersion>8.0.0</SourceLinkPackageVersion>
<NerdbankPackageVersion>3.6.133</NerdbankPackageVersion>
<!-- Packaging properties -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EnableSourceLink>true</EnableSourceLink>
<Authors>.NET Foundation and Contributors</Authors>
<Copyright>© .NET Foundation</Copyright>
</PropertyGroup>
<ItemGroup>
<None
Include="$(MSBuildThisFileDirectory)/README.md"
Pack="true"
PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference
Include="Nerdbank.GitVersioning"
Version="$(NerdbankPackageVersion)"
PrivateAssets="all" />
</ItemGroup>
</Project>