Skip to content

Commit

Permalink
Move AssemblyVersion and AssemblyFileVersion attributes back to the s…
Browse files Browse the repository at this point in the history
…eparate AssemblyInfo.cs files so I can set the version from TeamCity.
  • Loading branch information
tdanner committed Jun 4, 2015
1 parent a216c2f commit dcdf9eb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Src/CommonAssemblyInfo.cs
Expand Up @@ -2,10 +2,3 @@

[assembly: AssemblyCompany("SolarWinds, Inc.")]
[assembly: AssemblyCopyright("Copyright © 2015 SolarWinds Worldwide, LLC. All rights reserved.")]
[assembly: AssemblyVersion(GlobalConstants.Version)]
[assembly: AssemblyFileVersion(GlobalConstants.Version)]

internal static class GlobalConstants
{
public const string Version = "1.11.0.0";
}
3 changes: 3 additions & 0 deletions Src/Contract/Properties/AssemblyInfo.cs
Expand Up @@ -22,3 +22,6 @@

[assembly: InternalsVisibleTo("InformationService.Contract.Tests")]
[assembly: InternalsVisibleTo("SolarWinds.InformationService.Core.Tests")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
3 changes: 3 additions & 0 deletions Src/Logging/Properties/AssemblyInfo.cs
Expand Up @@ -18,3 +18,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("0df76c47-6a23-4147-a215-251bcdb09452")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
3 changes: 3 additions & 0 deletions Src/SwisPowerShell/Properties/AssemblyInfo.cs
Expand Up @@ -18,3 +18,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("8660f489-de80-4bf6-be1f-b48f05e42188")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
3 changes: 3 additions & 0 deletions Src/SwqlStudio/Properties/AssemblyInfo.cs
Expand Up @@ -18,3 +18,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("85e57129-3aa6-4c0c-9532-c1167a4195cc")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit dcdf9eb

Please sign in to comment.