Skip to content

Commit e3886d2

Browse files
committed
Merge branch 'release-0.14.4'
2 parents 9447378 + 66b2927 commit e3886d2

File tree

9 files changed

+16
-9
lines changed

9 files changed

+16
-9
lines changed

Sharpmake.Application/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@
4343
//
4444
// You can specify all the values or you can default the Build and Revision Numbers
4545
// by using the '*' as shown below:
46-
[assembly: AssemblyVersion("0.14.3.0")]
46+
[assembly: AssemblyVersion("0.14.4.0")]

Sharpmake.Generators/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
//
4545
// You can specify all the values or you can default the Build and Revision Numbers
4646
// by using the '*' as shown below:
47-
[assembly: AssemblyVersion("0.14.3.0")]
47+
[assembly: AssemblyVersion("0.14.4.0")]
4848

4949
[assembly: InternalsVisibleTo("Sharpmake")]

Sharpmake.Generators/VisualStudio/Csproj.Template.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017 Ubisoft Entertainment
1+
// Copyright (c) 2017 Ubisoft Entertainment
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -111,6 +111,7 @@ public static class Project
111111
<GenerateAssemblyVersionAttribute>[GeneratedAssemblyConfigTemplate.GenerateAssemblyVersionAttribute]</GenerateAssemblyVersionAttribute>
112112
<GenerateAssemblyInformationalVersionAttribute>[GeneratedAssemblyConfigTemplate.GenerateAssemblyInformationalVersionAttribute]</GenerateAssemblyInformationalVersionAttribute>
113113
<RestoreProjectStyle>[NugetRestoreProjectStyleString]</RestoreProjectStyle>
114+
<ProductVersion>[options.ProductVersion]</ProductVersion>
114115
</PropertyGroup>
115116
";
116117

Sharpmake.Generators/VisualStudio/Csproj.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017 Ubisoft Entertainment
1+
// Copyright (c) 2017 Ubisoft Entertainment
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -3214,6 +3214,7 @@ private Options.ExplicitOptions GenerateOptions(CSharpProject project, Project.C
32143214
options["ManifestKeyFile"] = Options.StringOption.Get<Options.CSharp.ManifestKeyFile>(conf);
32153215
options["ManifestCertificateThumbprint"] = Options.StringOption.Get<Options.CSharp.ManifestCertificateThumbprint>(conf);
32163216
options["CopyVsixExtensionLocation"] = Options.StringOption.Get<Options.CSharp.CopyVsixExtensionLocation>(conf);
3217+
options["ProductVersion"] = Options.StringOption.Get<Options.CSharp.ProductVersion>(conf);
32173218

32183219
// concat defines, don't add options.Defines since they are automatically added by VS
32193220
Strings defines = new Strings();

Sharpmake.Platforms/Sharpmake.CommonPlatforms/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
//
4545
// You can specify all the values or you can default the Build and Revision Numbers
4646
// by using the '*' as shown below:
47-
[assembly: AssemblyVersion("0.14.3.0")]
47+
[assembly: AssemblyVersion("0.14.4.0")]
4848

4949
[assembly: SharpmakeExtension]

Sharpmake.Platforms/Sharpmake.NvShield/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
//
4545
// You can specify all the values or you can default the Build and Revision Numbers
4646
// by using the '*' as shown below:
47-
[assembly: AssemblyVersion("0.14.3.0")]
47+
[assembly: AssemblyVersion("0.14.4.0")]
4848

4949
[assembly: SharpmakeExtension]

Sharpmake.Platforms/Sharpmake.X360/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
//
4545
// You can specify all the values or you can default the Build and Revision Numbers
4646
// by using the '*' as shown below:
47-
[assembly: AssemblyVersion("0.14.3.0")]
47+
[assembly: AssemblyVersion("0.14.4.0")]
4848

4949
[assembly: SharpmakeExtension]

Sharpmake/Options.CSharp.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,11 @@ public class CopyVsixExtensionLocation : StringOption
331331
public CopyVsixExtensionLocation(string location) : base(location) { }
332332
}
333333

334+
public class ProductVersion : StringOption
335+
{
336+
public ProductVersion(string versionString) : base(versionString) { }
337+
}
338+
334339
public enum MapFileExtensions
335340
{
336341
Enabled,

Sharpmake/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
//
4545
// You can specify all the values or you can default the Build and Revision Numbers
4646
// by using the '*' as shown below:
47-
[assembly: AssemblyVersion("0.14.3.0")]
47+
[assembly: AssemblyVersion("0.14.4.0")]
4848
#pragma warning disable CS7035
49-
[assembly: AssemblyFileVersion("0.14.3.0 (LocalBuild)")]
49+
[assembly: AssemblyFileVersion("0.14.4.0 (LocalBuild)")]
5050
#pragma warning restore
5151

5252
[assembly: InternalsVisibleTo("Sharpmake.Application")]

0 commit comments

Comments
 (0)