Adding version info as a linked file in each project, and updating version to 0.9

Change-Id: Ie839944fa329786d7e7b212b6f85386cba729931
This commit is contained in:
Wayne Foley
2014-03-26 10:15:06 -07:00
parent 91a144209b
commit fbc6f0418c
8 changed files with 46 additions and 36 deletions

View File

@@ -0,0 +1,32 @@
// /* ============================================================================
// Copyright 2014 Hewlett Packard
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ============================================================================ */
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 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("0.9.0.0")]
[assembly: AssemblyFileVersion("0.9.0.0")]

View File

@@ -54,6 +54,9 @@
<Compile Include="Http\IOpenStackAccessToken.cs" />
<Compile Include="ObjectExtentions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="..\AssemblyVersionInfo.cs">
<Link>Properties\AssemblyVersionInfo.cs</Link>
</Compile>
<Compile Include="ServiceLocation\AssemblyNameComparer.cs" />
<Compile Include="ServiceLocation\IServiceLocationAssemblyScanner.cs" />
<Compile Include="ServiceLocation\IServiceLocationManager.cs" />

View File

@@ -38,16 +38,4 @@ using System.Runtime.InteropServices;
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("0ed0b3bc-5dcd-488c-a9bd-0940e43afc4a")]
// 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.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: InternalsVisibleTo("Openstack.Test")]

View File

@@ -75,6 +75,9 @@
<Compile Include="Identity\OpenstackRegionResolverTests.cs" />
<Compile Include="ServiceLocation\ServiceLocationAssemblyScannerTests.cs" />
<Compile Include="ServiceLocation\ServiceLocatorTests.cs" />
<Compile Include="..\AssemblyVersionInfo.cs">
<Link>Properties\AssemblyVersionInfo.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Storage\StorageAccountPayloadConverterTests.cs" />
<Compile Include="Storage\StorageContainerPayloadConverterTests.cs" />

View File

@@ -37,15 +37,3 @@ using System.Runtime.InteropServices;
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("47bc2198-4d59-47a0-9b5f-a3985ff6ab5a")]
// 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.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -9,6 +9,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Openstack", "Openstack\Open
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Openstack.Test", "Openstack.Test\Openstack.Test.csproj", "{7AF6DEC5-2257-4A29-BB55-66711DE3055D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{863F820F-2B49-44FF-A825-A858BFBBD69E}"
ProjectSection(SolutionItems) = preProject
AssemblyVersionInfo.cs = AssemblyVersionInfo.cs
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU

View File

@@ -46,6 +46,9 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\AssemblyVersionInfo.cs">
<Link>Properties\AssemblyVersionInfo.cs</Link>
</Compile>
<Compile Include="Identity\IdentityServiceClientDefinition.cs" />
<Compile Include="Identity\IOpenstackRegionResolver.cs" />
<Compile Include="Identity\OpenstackRegionResolver.cs" />

View File

@@ -38,16 +38,4 @@ using System.Runtime.InteropServices;
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("3a65db89-60cd-49c4-b736-118dce9487ec")]
// 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.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: InternalsVisibleTo("Openstack.Test")]