35 lines
1.4 KiB
C#
35 lines
1.4 KiB
C#
|
// ****************************************************************
|
||
|
// This is free software licensed under the NUnit license. You
|
||
|
// may obtain a copy of the license as well as information regarding
|
||
|
// copyright ownership at http://nunit.org/?p=license&r=2.4.
|
||
|
// ****************************************************************
|
||
|
|
||
|
using System.Reflection;
|
||
|
|
||
|
//
|
||
|
// Common Information about all NUnit assemblies is controlled through the following
|
||
|
// set of attributes. Change these attribute values to modify the information
|
||
|
// associated with an assembly.
|
||
|
//
|
||
|
//[assembly: AssemblyTitle("")]
|
||
|
//[assembly: AssemblyDescription("")]
|
||
|
[assembly: AssemblyConfiguration("")]
|
||
|
[assembly: AssemblyCompany("NUnit.org")]
|
||
|
[assembly: AssemblyProduct("NUnit")]
|
||
|
[assembly: AssemblyCopyright("Copyright (C) 2002-2007 Charlie Poole.\r\nCopyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov.\r\nCopyright (C) 2000-2002 Philip Craig.\r\nAll Rights Reserved.")]
|
||
|
[assembly: AssemblyTrademark("")]
|
||
|
[assembly: AssemblyCulture("")]
|
||
|
|
||
|
//
|
||
|
// 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 Revision and Build Numbers
|
||
|
// by using the '*' as shown below:
|
||
|
|
||
|
[assembly: AssemblyVersion("2.4.8")]
|