Skip to content

Commit

Permalink
Merge branch 'release-0.14.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
belkiss committed Jul 23, 2020
2 parents 9447378 + 66b2927 commit e3886d2
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Sharpmake.Application/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.3.0")]
[assembly: AssemblyVersion("0.14.4.0")]
2 changes: 1 addition & 1 deletion Sharpmake.Generators/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.3.0")]
[assembly: AssemblyVersion("0.14.4.0")]

[assembly: InternalsVisibleTo("Sharpmake")]
3 changes: 2 additions & 1 deletion Sharpmake.Generators/VisualStudio/Csproj.Template.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017 Ubisoft Entertainment
// Copyright (c) 2017 Ubisoft Entertainment
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -111,6 +111,7 @@ public static class Project
<GenerateAssemblyVersionAttribute>[GeneratedAssemblyConfigTemplate.GenerateAssemblyVersionAttribute]</GenerateAssemblyVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>[GeneratedAssemblyConfigTemplate.GenerateAssemblyInformationalVersionAttribute]</GenerateAssemblyInformationalVersionAttribute>
<RestoreProjectStyle>[NugetRestoreProjectStyleString]</RestoreProjectStyle>
<ProductVersion>[options.ProductVersion]</ProductVersion>
</PropertyGroup>
";

Expand Down
3 changes: 2 additions & 1 deletion Sharpmake.Generators/VisualStudio/Csproj.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017 Ubisoft Entertainment
// Copyright (c) 2017 Ubisoft Entertainment
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -3214,6 +3214,7 @@ private Options.ExplicitOptions GenerateOptions(CSharpProject project, Project.C
options["ManifestKeyFile"] = Options.StringOption.Get<Options.CSharp.ManifestKeyFile>(conf);
options["ManifestCertificateThumbprint"] = Options.StringOption.Get<Options.CSharp.ManifestCertificateThumbprint>(conf);
options["CopyVsixExtensionLocation"] = Options.StringOption.Get<Options.CSharp.CopyVsixExtensionLocation>(conf);
options["ProductVersion"] = Options.StringOption.Get<Options.CSharp.ProductVersion>(conf);

// concat defines, don't add options.Defines since they are automatically added by VS
Strings defines = new Strings();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.3.0")]
[assembly: AssemblyVersion("0.14.4.0")]

[assembly: SharpmakeExtension]
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.3.0")]
[assembly: AssemblyVersion("0.14.4.0")]

[assembly: SharpmakeExtension]
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.3.0")]
[assembly: AssemblyVersion("0.14.4.0")]

[assembly: SharpmakeExtension]
5 changes: 5 additions & 0 deletions Sharpmake/Options.CSharp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,11 @@ public class CopyVsixExtensionLocation : StringOption
public CopyVsixExtensionLocation(string location) : base(location) { }
}

public class ProductVersion : StringOption
{
public ProductVersion(string versionString) : base(versionString) { }
}

public enum MapFileExtensions
{
Enabled,
Expand Down
4 changes: 2 additions & 2 deletions Sharpmake/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.3.0")]
[assembly: AssemblyVersion("0.14.4.0")]
#pragma warning disable CS7035
[assembly: AssemblyFileVersion("0.14.3.0 (LocalBuild)")]
[assembly: AssemblyFileVersion("0.14.4.0 (LocalBuild)")]
#pragma warning restore

[assembly: InternalsVisibleTo("Sharpmake.Application")]
Expand Down

0 comments on commit e3886d2

Please sign in to comment.