Skip to content

Commit

Permalink
Fixed AssemblyVersion mess and bumped version to 1.0.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Wagner <[email protected]>
  • Loading branch information
danielwagn3r committed Oct 15, 2016
1 parent 8039f00 commit d27e4ad
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
15 changes: 1 addition & 14 deletions source/AppSettingsUtils.UnitTests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,4 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM

[assembly: Guid("c0b7979b-9fb1-4529-b632-26963bd85491")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.0.*")]
[assembly: Guid("c0b7979b-9fb1-4529-b632-26963bd85491")]
13 changes: 0 additions & 13 deletions source/AppSettingsUtils/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,3 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM

[assembly: Guid("d32c1422-6a7c-432e-aa8b-22149e540d76")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.0.*")]
28 changes: 27 additions & 1 deletion source/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
using System.Reflection;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.

#if DEBUG

[assembly: AssemblyConfiguration("Debug")]
#else

[assembly: AssemblyConfiguration("Release")]
#endif

Expand All @@ -12,4 +17,25 @@
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyInformationalVersion("1.0.0.3")]


// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyInformationalVersion("1.0.1.0")]
#if DEBUG

[assembly: AssemblyVersion("1.0.*")]
#else

[assembly: AssemblyVersion("1.0.1.0")]
#endif

0 comments on commit d27e4ad

Please sign in to comment.