/src/NUnit/mocks/CommonAssemblyInfo.cs
C# | 34 lines | 7 code | 4 blank | 23 comment | 0 complexity | fcd526232e0dee507285babcc06c1108 MD5 | raw file
1// **************************************************************** 2// This is free software licensed under the NUnit license. You 3// may obtain a copy of the license as well as information regarding 4// copyright ownership at http://nunit.org. 5// **************************************************************** 6 7using System.Reflection; 8 9// 10// Common Information about all NUnit assemblies is controlled through the following 11// set of attributes. Change these source values to modify the information 12// associated with an assembly. 13// 14// NOTE: This file is only used in the Visual Studio builds. For the NAnt builds, 15// an alternate file is generated and used. 16// 17[assembly: AssemblyCompany("NUnit.org")] 18[assembly: AssemblyProduct("NUnit")] 19[assembly: AssemblyCopyright("Copyright (C) 2002-2010 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.")] 20[assembly: AssemblyTrademark("NUnit is a trademark of NUnit.org")] 21 22// 23// Version information for an assembly consists of the following four values: 24// 25// Major Version 26// Minor Version 27// Build Number 28// Revision 29// 30// You can specify all the values or you can default the Revision and Build Numbers 31// by using the '*' as shown below: 32 33[assembly: AssemblyVersion("2.5.10")] 34[assembly: AssemblyInformationalVersion("2.5.10")]