Navigation Menu

Skip to content

Commit

Permalink
Split assembly info into shared files.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Gozde committed Dec 15, 2011
1 parent 42d3dee commit 789ecf8
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 61 deletions.
18 changes: 18 additions & 0 deletions src/ProductInfo.cs
@@ -0,0 +1,18 @@
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;

// 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.
[assembly: AssemblyCompany("iMatix Corporation")]
[assembly: AssemblyProduct("clrzmq")]
[assembly: AssemblyCopyright("Copyright © 2011 iMatix Corporation and Contributors")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: NeutralResourcesLanguage("en")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
17 changes: 17 additions & 0 deletions src/VersionInfo.cs
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.239
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System.Reflection;

[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: AssemblyConfiguration("Release")]


31 changes: 1 addition & 30 deletions src/clrzmq-ext/Properties/AssemblyInfo.cs
@@ -1,36 +1,7 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// 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.
[assembly: AssemblyTitle("clrzmq-ext")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("clrzmq-ext")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2011")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("f7678251-6370-4465-9b3f-3d042789369f")]

// 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: AssemblyDescription("Extensions for ZeroMQ .NET Bindings")]
6 changes: 6 additions & 0 deletions src/clrzmq-ext/clrzmq-ext.csproj
Expand Up @@ -79,6 +79,12 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\ProductInfo.cs">
<Link>Properties\ProductInfo.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="Device.cs" />
<Compile Include="SocketExt.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
Expand Down
33 changes: 2 additions & 31 deletions src/clrzmq/Properties/AssemblyInfo.cs
@@ -1,36 +1,7 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// 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.
[assembly: AssemblyTitle("clrzmq2")]
[assembly: AssemblyDescription("CLR interop for ZeroMQ")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("clrzmq2")]
[assembly: AssemblyCopyright("Copyright © Michael Comptons")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("361edfa3-7f66-4bbf-8b26-6d34391a9bb6")]

// 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("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: AssemblyTitle("clrzmq")]
[assembly: AssemblyDescription("ZeroMQ .NET bindings")]
6 changes: 6 additions & 0 deletions src/clrzmq/clrzmq.csproj
Expand Up @@ -111,6 +111,12 @@
<Reference Include="Mono.Posix" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\ProductInfo.cs">
<Link>Properties\ProductInfo.cs</Link>
</Compile>
<Compile Include="..\VersionInfo.cs">
<Link>Properties\VersionInfo.cs</Link>
</Compile>
<Compile Include="Context.cs" />
<Compile Include="Enums.cs" />
<Compile Include="Polling.cs" />
Expand Down

0 comments on commit 789ecf8

Please sign in to comment.