Skip to content

Commit 1653abe

Browse files
committed
Drop the date from the package prerelease version due to length limits
1 parent 476b62a commit 1653abe

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

build/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
[assembly: AssemblyCopyright("\x00a9 Microsoft Corporation All rights reserved.")]
99
[assembly: AssemblyTrademark("")]
1010
[assembly: AssemblyVersion("4.0.0.0")]
11-
[assembly: AssemblyFileVersion("4.0.61108.0")]
12-
[assembly: AssemblyInformationalVersion("4.0.0-preview1-61108-000")]
11+
[assembly: AssemblyFileVersion("4.0.61115.0")]
12+
[assembly: AssemblyInformationalVersion("4.0.0-preview1-000")]
1313
[assembly: AssemblyMetadata("Serviceable", "True")]

build/DevAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
[assembly: AssemblyCopyright("\x00a9 Microsoft Corporation All rights reserved.")]
99
[assembly: AssemblyTrademark("")]
1010
[assembly: AssemblyVersion("0.31.0.0")]
11-
[assembly: AssemblyFileVersion("0.31.60801.0")]
12-
[assembly: AssemblyInformationalVersion("0.31.0-pre-60801-000")]
11+
[assembly: AssemblyFileVersion("0.31.61115.0")]
12+
[assembly: AssemblyInformationalVersion("0.31.0-pre-000")]
1313
[assembly: AssemblyMetadata("Serviceable", "True")]

build/Katana.version.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<PropertyGroup>
44
<ShipVersion>4.0.0</ShipVersion>
55
<ShipStrongNameVersion>4.0.0.0</ShipStrongNameVersion>
6-
<ShipFullVersion>4.0.0-preview1-61108-000</ShipFullVersion>
7-
<ShipFileVersion>4.0.61108.0</ShipFileVersion>
6+
<ShipFullVersion>4.0.0-preview1-000</ShipFullVersion>
7+
<ShipFileVersion>4.0.61115.0</ShipFileVersion>
88
<MajorVersion>4</MajorVersion>
99
<MinorVersion>0</MinorVersion>
1010
<PatchVersion>0</PatchVersion>
1111
<BuildQuality>preview1</BuildQuality>
12-
<BuildDate>61108</BuildDate>
12+
<BuildDate>61115</BuildDate>
1313
<BranchSuffix></BranchSuffix>
1414
<Eula>https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm</Eula>
1515
<ProjectUrl>https://github.com/aspnet/AspNetKatana/</ProjectUrl>

build/Sakefile.shade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ functions
387387
{
388388
return "";
389389
}
390-
// -MILESTONE-ymmdd-BUILD_NUMBER-BUILD_SUFFIX
390+
// -MILESTONE-BUILD_NUMBER-BUILD_SUFFIX
391391
var pre = "";
392392
if (!String.IsNullOrEmpty(MILESTONE))
393393
{
@@ -397,7 +397,7 @@ functions
397397
{
398398
var buildNumber = "000" + Environment.GetEnvironmentVariable("BUILD_NUMBER");
399399
buildNumber = buildNumber.Substring(buildNumber.Length - 3);
400-
pre += "-" + BuildDate() + "-" + buildNumber;
400+
pre += "-" + buildNumber;
401401

402402
if (!String.IsNullOrEmpty(BranchSuffix()))
403403
{

tests/FunctionalTests/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("0.31.0.0")]
3535
[assembly: AssemblyVersion("0.31.0.0")]
36-
[assembly: AssemblyFileVersion("0.31.60801.0")]
36+
[assembly: AssemblyFileVersion("0.31.61115.0")]

0 commit comments

Comments
 (0)