Cleaning up assemblyinfo.cs project references

This commit is contained in:
mhorstma 2016-05-03 13:41:58 -07:00
Родитель 5fcf4f0f29
Коммит e25388861d
3 изменённых файлов: 22 добавлений и 40 удалений

Просмотреть файл

@ -1,33 +0,0 @@
using System;
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("Kafka.Client")]
[assembly: AssemblyDescription(".NET Client for Kafka")]
[assembly: AssemblyCompany("Microsoft Corporation")]
[assembly: AssemblyProduct("Kafka.Client")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
// 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("be9c68df-6078-4876-bdd4-20ea513b62c7")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
//[assembly: AssemblyVersion("0.8.0.17")]
//[assembly: AssemblyFileVersion("0.8.0.17")]
[assembly: InternalsVisibleTo("Kafka.Client.Tests")]
//[assembly: CLSCompliant(true)]

Просмотреть файл

@ -161,7 +161,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Cfg\BrokerConfiguration.cs" />
<Compile Include="Cfg\BrokerConfigurationElement.cs" />
<Compile Include="Cfg\BrokerConfigurationElementCollection.cs" />

Просмотреть файл

@ -14,19 +14,34 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Kafka.Client")]
// 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("KafkaNET.Library")]
[assembly: AssemblyDescription(".NET Client for Kafka")]
[assembly: AssemblyCompany("Microsoft Corporation")]
[assembly: AssemblyProduct("Kafka.Client")]
[assembly: AssemblyCopyright("Copyright © ExactTarget 2014")]
[assembly: AssemblyProduct("KafkaNET.Library")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2016")]
// 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)]
[assembly: AssemblyVersion("0.8.0.11")]
[assembly: AssemblyFileVersion("0.8.0.11")]
[assembly: CLSCompliant(true)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("be9c68df-6078-4876-bdd4-20ea513b62c7")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
[assembly: InternalsVisibleTo("Kafka.Client.Tests")]
[assembly: CLSCompliant(true)]