Skip to content

Commit b89b0c6

Browse files
author
Jeff Treuting
committed
Update assembly info
Updated common assembly copyright year and version Made sure all projects had shared common assembly info file and their own unique one
1 parent 577d066 commit b89b0c6

23 files changed

Lines changed: 41 additions & 261 deletions

File tree

CommonAssembly.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[assembly: AssemblyCompany("SharpRepository")]
55
[assembly: AssemblyProduct("SharpRepository")]
6-
[assembly: AssemblyCopyright("Copyright © SharpRepository 2012")]
6+
[assembly: AssemblyCopyright("Copyright © SharpRepository 2013")]
77
[assembly: AssemblyTrademark("")]
88
[assembly: AssemblyCulture("")]
99

@@ -17,15 +17,15 @@
1717
// and in the AssemblyRef table of any assembly that references it.
1818
// Take care when changing the AssemblyVersion as it may impact referencing
1919
// assemblies.
20-
[assembly: AssemblyVersion("1.1")]
20+
[assembly: AssemblyVersion("1.2")]
2121

2222
// The AssemblyFileVersion is intended to uniquely identify a build of the individual assembly
2323
// Ideally we would have the build server update this value. This version number is stored
2424
// in the Win32 version resource and can be seen when viewing the Windows Explorer property
2525
// pages for the assembly. The CLR does not care about nor examine the AssemblyFileVersion.
26-
[assembly: AssemblyFileVersion("1.1.2.1")]
26+
[assembly: AssemblyFileVersion("1.2.0.0")]
2727

2828
// The AssemblyInformationalVersion is intended to represent the version of your entire product.
2929
// The CLR does not care about nor examine the AssemblyInformationalVersion. You will find this
3030
// value represented as the assembly's product version in Windows Explorer.
31-
[assembly: AssemblyInformationalVersion("1.1.2.1")]
31+
[assembly: AssemblyInformationalVersion("1.2.0.0")]
Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,11 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("SharpRepository.CacheRepository")]
98
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("SharpRepository.CacheRepository")]
13-
[assembly: AssemblyCopyright("Copyright © 2013")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
16-
17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
20-
[assembly: ComVisible(false)]
219

2210
// The following GUID is for the ID of the typelib if this project is exposed to COM
2311
[assembly: Guid("93a961ad-26d2-4e9b-8e45-c164e16f99ae")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

SharpRepository.CacheRepository/SharpRepository.CacheRepository.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
<Reference Include="System.Runtime.Caching" />
3737
</ItemGroup>
3838
<ItemGroup>
39+
<Compile Include="..\CommonAssembly.cs">
40+
<Link>Properties\CommonAssembly.cs</Link>
41+
</Compile>
3942
<Compile Include="CacheRepositoryBase.cs" />
4043
<Compile Include="CacheRepository.cs" />
4144
<Compile Include="CacheCompoundKeyRepositoryBase.cs" />
Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,11 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("SharpRepository.Caching.AppFabric")]
98
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("SharpRepository.Caching.AppFabric")]
13-
[assembly: AssemblyCopyright("Copyright © 2012")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
16-
17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
20-
[assembly: ComVisible(false)]
219

2210
// The following GUID is for the ID of the typelib if this project is exposed to COM
2311
[assembly: Guid("9a62addf-9f66-455b-91cb-b7a6b409682c")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

SharpRepository.Caching.AppFabric/SharpRepository.Caching.AppFabric.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
<Reference Include="System.Runtime.Caching" />
4242
</ItemGroup>
4343
<ItemGroup>
44+
<Compile Include="..\CommonAssembly.cs">
45+
<Link>Properties\CommonAssembly.cs</Link>
46+
</Compile>
4447
<Compile Include="AppFabricCachingProvider.cs" />
4548
<Compile Include="Properties\AssemblyInfo.cs" />
4649
</ItemGroup>
Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,11 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("SharpRepository.Caching.Memcached")]
98
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("SharpRepository.Caching.Memcached")]
13-
[assembly: AssemblyCopyright("Copyright © 2012")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
16-
17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
20-
[assembly: ComVisible(false)]
219

2210
// The following GUID is for the ID of the typelib if this project is exposed to COM
2311
[assembly: Guid("db63c8fd-d036-45bb-bf8f-ab3c64d372bc")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

SharpRepository.Caching.Memcached/SharpRepository.Caching.Memcached.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
<Reference Include="System.Runtime.Caching" />
4141
</ItemGroup>
4242
<ItemGroup>
43+
<Compile Include="..\CommonAssembly.cs">
44+
<Link>Properties\CommonAssembly.cs</Link>
45+
</Compile>
4346
<Compile Include="MemCachedCachingProvider.cs" />
4447
<Compile Include="MemCachedCachingProviderConfiguration.cs" />
4548
<Compile Include="MemCachedConfigCachingProviderFactory.cs" />
Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,11 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("SharpRepository.Caching.Redis")]
98
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("SharpRepository.Caching.Redis")]
13-
[assembly: AssemblyCopyright("Copyright © 2012")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
16-
17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
20-
[assembly: ComVisible(false)]
219

2210
// The following GUID is for the ID of the typelib if this project is exposed to COM
2311
[assembly: Guid("8ef74c27-82e6-44e2-a6bb-35ca7cd97f66")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

SharpRepository.Caching.Redis/SharpRepository.Caching.Redis.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,11 @@
4848
<Reference Include="System.Runtime.Caching" />
4949
</ItemGroup>
5050
<ItemGroup>
51-
<Compile Include="RedisCachingProvider.cs" />
51+
<Compile Include="..\CommonAssembly.cs">
52+
<Link>Properties\CommonAssembly.cs</Link>
53+
</Compile>
5254
<Compile Include="Properties\AssemblyInfo.cs" />
55+
<Compile Include="RedisCachingProvider.cs" />
5356
<Compile Include="RedisCachingProviderConfiguration.cs" />
5457
<Compile Include="RedisConfigCachingProviderFactory.cs" />
5558
</ItemGroup>
Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,11 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("SharpRepository.Caching.WindowsAzure")]
98
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("SharpRepository.Caching.WindowsAzure")]
13-
[assembly: AssemblyCopyright("Copyright © 2012")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
16-
17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
20-
[assembly: ComVisible(false)]
219

2210
// The following GUID is for the ID of the typelib if this project is exposed to COM
2311
[assembly: Guid("dddb540e-2ed4-4080-ad47-8abf332aa73d")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)