summaryrefslogtreecommitdiff
path: root/Directory.Build.targets
blob: 4e17687cb9232ab84474d239ee066c164fef864a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<Project>
  <Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" Condition="'$(ArcadeBuild)' == 'True'"/>

  <PropertyGroup>
    <!-- SDK sets product to assembly but we want it to be our product name -->
    <Product>Microsoft%AE .NET Core</Product>

    <!-- Use the .NET Core product branding version for informational version description -->
    <InformationalVersion>$(ProductVersion)</InformationalVersion>
    <InformationalVersion Condition="'$(VersionSuffix)' != ''">$(InformationalVersion)-$(VersionSuffix)</InformationalVersion>
  </PropertyGroup>
</Project>