Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Update branding to 5.0 #7221

Merged
merged 4 commits into from
Jul 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions BranchInfo.props
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MajorVersion>3</MajorVersion>
<MajorVersion>5</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>0</PatchVersion>

<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>

<PreReleaseLabel Condition="'$(PackageVersionStamp)' != ''">$(PackageVersionStamp)</PreReleaseLabel>
<PreReleaseLabel Condition="'$(PreReleaseLabel)' == ''">preview8</PreReleaseLabel>
<PreReleaseLabel Condition="'$(PreReleaseLabel)' == ''">alpha1</PreReleaseLabel>
<IncludePreReleaseLabelInPackageVersion Condition="'$(StabilizePackageVersion)' != 'true' or '$(PackageVersionStamp)' != ''">true</IncludePreReleaseLabelInPackageVersion>
<IncludeBuildNumberInPackageVersion Condition="'$(StabilizePackageVersion)' != 'true'">true</IncludeBuildNumberInPackageVersion>

<ReleaseSuffix>$(PreReleaseLabel)</ReleaseSuffix>
<ReleaseBrandSuffix>Preview 8</ReleaseBrandSuffix>
<ReleaseBrandSuffix>Alpha 1</ReleaseBrandSuffix>
<Channel>master</Channel>
<ContainerName>dotnet</ContainerName>
<ChecksumContainerName>$(ContainerName)</ChecksumContainerName>
Expand Down
13 changes: 12 additions & 1 deletion dir.props
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,20 @@

<!-- Versioning -->
<PropertyGroup>
<BuildNumberMinorTrimmedLeadingZero>$(BuildNumberMinor.TrimStart('0'))</BuildNumberMinorTrimmedLeadingZero>
<BuildNumberMinorTrimmedLeadingZero Condition="'$(BuildNumberMinorTrimmedLeadingZero)' == ''">0</BuildNumberMinorTrimmedLeadingZero>

<VersionSuffix></VersionSuffix>
<VersionSuffix Condition="'$(IncludePreReleaseLabelInPackageVersion)' == 'true'">$(PreReleaseLabel)</VersionSuffix>
<VersionSuffix Condition="'$(IncludeBuildNumberInPackageVersion)' == 'true'">$(VersionSuffix)-$(BuildNumberMajor)-$(BuildNumberMinor)</VersionSuffix>
<VersionSuffix Condition="'$(IncludeBuildNumberInPackageVersion)' == 'true'">$(VersionSuffix).$(BuildNumberMajor).$(BuildNumberMinorTrimmedLeadingZero)</VersionSuffix>
<!--
During BuildTools init, VersionSuffix is used even though the build numbers aren't
initialized. With SemVer v1, this is benign: dash-dash-zero at the end is valid. (It has not
been confirmed that this is the exact version.) With SemVer v2, we get '..0' at the end. The
periods make the version invalid, and fails the build. To work around this, replace '..0' at
the end of the suffix with nothingness to avoid making an invalid version.
-->
<VersionSuffix>$(VersionSuffix.Replace('..0', ''))</VersionSuffix>

<ProductVersionSuffix Condition="'$(IncludePreReleaseLabelInPackageVersion)' == 'true'">-$(VersionSuffix)</ProductVersionSuffix>
<ProductBandVersion Condition="'$(ProductBandVersion)' == ''">$(MajorVersion).$(MinorVersion)</ProductBandVersion>
Expand Down
2 changes: 2 additions & 0 deletions src/managed/CommonManaged.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Managed API isn't completely documented yet. TODO: https://github.com/dotnet/core-setup/issues/5108 -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Allow SemVer v2 -->
<NoWarn>$(NoWarn);NU5105</NoWarn>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>$(NETCoreAppFramework)</TargetFramework>
<OutputType>Exe</OutputType>
<RuntimeIdentifier>$(TestTargetRid)</RuntimeIdentifier>
<RuntimeFrameworkVersion>$(MNAVersion)</RuntimeFrameworkVersion>
Expand Down
2 changes: 2 additions & 0 deletions tools-local/setuptools/dotnet-deb-tool/dotnet-deb-tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<AssemblyName>dotnet-deb-tool</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>dotnet-deb-tool</PackageId>
<!-- Allow SemVer v2 -->
<NoWarn>$(NoWarn);NU5105</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down