Update branding to 8.0.0-alpha.2.

pull/146/head
Laurents Meyer 2 years ago
parent 914bd5a2ee
commit 2155c12963

@ -1,49 +1,52 @@
<Project> <Project>
<PropertyGroup Label="Version settings"> <PropertyGroup Label="Version settings">
<!-- <!--
Use the following values for the different release types: Use the following values for the different release types:
- "alpha" - "alpha"
- "beta" - "beta"
- "rc" - "rc"
- "rtm" - "rtm"
- "servicing" - "servicing"
-->
<VersionPrefix>8.0.0</VersionPrefix>
<PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
<!-- Bump-up to the next iteration immediately after a release, so that subsequent daily builds are named
The following properties will automatically be set by CI builds when appropriate: correctly.
OfficialVersion -->
ContinuousIntegrationTimestamp <VersionPrefix>8.0.0</VersionPrefix>
BuildSha <PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
--> <PreReleaseVersionIteration>2</PreReleaseVersionIteration>
</PropertyGroup>
<!-- <!--
If no version or version suffix or official version has been explicitly set, we generate a version suffix in the following format: The following properties will automatically be set by CI builds when appropriate:
alpha.1.ci.20201004T181121Z+sha.0a1b2c3 OfficialVersion
--> ContinuousIntegrationTimestamp
<PropertyGroup> BuildSha
<UseVersionOverride Condition="'$(Version)' != ''">true</UseVersionOverride> -->
<UseVersionSuffixOverride Condition="'$(VersionSuffix)' != ''">true</UseVersionSuffixOverride> </PropertyGroup>
</PropertyGroup>
<PropertyGroup Label="Version Suffix Handling" Condition="'$(UseVersionOverride)' != 'true' And '$(UseVersionSuffixOverride)' != 'true' And ('$(OfficialVersion)' == '' Or $(OfficialVersion.Contains('-')))"> <!--
<VersionSuffix>$(PreReleaseVersionLabel).$(PreReleaseVersionIteration)</VersionSuffix> If no version or version suffix or official version has been explicitly set, we generate a version suffix in the following format:
<VersionSuffix Condition="'$(ContinuousIntegrationTimestamp)' != ''">$(VersionSuffix).ci.$(ContinuousIntegrationTimestamp)</VersionSuffix> alpha.1.ci.20201004T181121Z+sha.0a1b2c3
<VersionSuffix Condition="'$(BuildSha)' != ''">$(VersionSuffix)+sha.$(BuildSha)</VersionSuffix> -->
</PropertyGroup> <PropertyGroup>
<UseVersionOverride Condition="'$(Version)' != ''">true</UseVersionOverride>
<UseVersionSuffixOverride Condition="'$(VersionSuffix)' != ''">true</UseVersionSuffixOverride>
</PropertyGroup>
<Target Name="EnsureVersionParameters" BeforeTargets="CoreBuild" Condition="'$(UseVersionOverride)' != 'true' And '$(UseVersionSuffixOverride)' != 'true'"> <PropertyGroup Label="Version Suffix Handling" Condition="'$(UseVersionOverride)' != 'true' And '$(UseVersionSuffixOverride)' != 'true' And ('$(OfficialVersion)' == '' Or $(OfficialVersion.Contains('-')))">
<Error Condition="'$(VersionPrefix)' == ''" Text="The 'VersionPrefix' property needs to be set." /> <VersionSuffix>$(PreReleaseVersionLabel).$(PreReleaseVersionIteration)</VersionSuffix>
<Error Condition="'$(PreReleaseVersionLabel)' == ''" Text="The 'PreReleaseVersionLabel' property needs to be set." /> <VersionSuffix Condition="'$(ContinuousIntegrationTimestamp)' != ''">$(VersionSuffix).ci.$(ContinuousIntegrationTimestamp)</VersionSuffix>
<Error Condition="'$(PreReleaseVersionIteration)' == ''" Text="The 'PreReleaseVersionIteration' property needs to be set." /> <VersionSuffix Condition="'$(BuildSha)' != ''">$(VersionSuffix)+sha.$(BuildSha)</VersionSuffix>
<Error Condition="'$(OfficialVersion)' != '' And '$(OfficialVersion)' != '$(VersionPrefix)' And '$(OfficialVersion)' != '$(VersionPrefix)-$(VersionSuffix)'" Text="The 'OfficialVersion' property needs to be identical to the 'VersionPrefix' property or to a combination of the 'VersionPrefix' and the 'VersionSuffix' properties." /> </PropertyGroup>
<!--
<Message Importance="high" Text="VersionPrefix: $(VersionPrefix)" /> <Target Name="EnsureVersionParameters" BeforeTargets="CoreBuild" Condition="'$(UseVersionOverride)' != 'true' And '$(UseVersionSuffixOverride)' != 'true'">
<Message Importance="high" Text="VersionSuffix: $(VersionSuffix)" /> <Error Condition="'$(VersionPrefix)' == ''" Text="The 'VersionPrefix' property needs to be set."/>
<Message Importance="high" Text="Version: $(Version)" /> <Error Condition="'$(PreReleaseVersionLabel)' == ''" Text="The 'PreReleaseVersionLabel' property needs to be set."/>
--> <Error Condition="'$(PreReleaseVersionIteration)' == ''" Text="The 'PreReleaseVersionIteration' property needs to be set."/>
</Target> <Error Condition="'$(OfficialVersion)' != '' And '$(OfficialVersion)' != '$(VersionPrefix)' And '$(OfficialVersion)' != '$(VersionPrefix)-$(VersionSuffix)'" Text="The 'OfficialVersion' property needs to be identical to the 'VersionPrefix' property or to a combination of the 'VersionPrefix' and the 'VersionSuffix' properties."/>
<!--
<Message Importance="high" Text="VersionPrefix: $(VersionPrefix)" />
<Message Importance="high" Text="VersionSuffix: $(VersionSuffix)" />
<Message Importance="high" Text="Version: $(Version)" />
-->
</Target>
</Project> </Project>

Loading…
Cancel
Save