~ubuntu-branches/debian/sid/nunit/sid

« back to all changes in this revision

Viewing changes to src/ProjectEditor/editor/Properties/AssemblyInfo.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2014-09-16 13:43:36 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140916134336-kjxz48tty6lx2ja5
Tags: 2.6.3+dfsg-1
* [c7bd1b5] Imported Upstream version 2.6.3+dfsg
* [bcb4bf8] Move nunit-console-runner to GAC-installed libnunit2.6, 
  don't treat it as a private lib. This lib is signed, and treated 
  as a GAC lib by consumers such as MonoDevelop.
* [7f08e99] Bump version to 2.6.3 as required
* [84535eb] Refreshed patches
* [8479f61] Split package up into per-assembly packages. This makes 
  ABI tracking easier in the future, as we can meaningfully have GAC 
  policy for cases where ABI isn't truly bumped, and no policy for 
  cases where it is. For example, if nunit.framework bumps ABI but 
  nunit.core does not, previously we would need to rebuild everything 
  using NUnit, but under the new split packaging, that rebuild would 
  not be needed for apps only using nunit.core.
* [17a7dc7] Add missing nunit.mocks.dll to nunit.pc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System.Reflection;
2
 
using System.Runtime.CompilerServices;
3
 
using System.Runtime.InteropServices;
4
 
 
5
 
// General Information about an assembly is controlled through the following 
6
 
// set of attributes. Change these attribute values to modify the information
7
 
// associated with an assembly.
8
 
[assembly: AssemblyTitle("NUnit Project Editor")]
9
 
[assembly: AssemblyDescription("Standalone NUnit project editor")]
10
 
[assembly: AssemblyConfiguration("")]
11
 
[assembly: AssemblyCompany("NUnit Software")]
12
 
[assembly: AssemblyProduct("NUnit Project Editor")]
13
 
[assembly: AssemblyCopyright("Copyright ©  2011 Charlie Poole")]
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)]
21
 
 
22
 
// The following GUID is for the ID of the typelib if this doc is exposed to COM
23
 
[assembly: Guid("d04fe5e3-ffa5-4510-a7c4-c2edd4dff058")]
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("0.9.0.0")]
36
 
[assembly: AssemblyFileVersion("0.9.0.0")]
 
1
using System.Reflection;
 
2
using System.Runtime.CompilerServices;
 
3
using System.Runtime.InteropServices;
 
4
 
 
5
// General Information about an assembly is controlled through the following 
 
6
// set of attributes. Change these attribute values to modify the information
 
7
// associated with an assembly.
 
8
[assembly: AssemblyTitle("NUnit Project Editor")]
 
9
[assembly: AssemblyDescription("Standalone NUnit project editor")]
 
10
[assembly: AssemblyConfiguration("")]
 
11
[assembly: AssemblyCompany("NUnit Software")]
 
12
[assembly: AssemblyProduct("NUnit Project Editor")]
 
13
[assembly: AssemblyCopyright("Copyright ©  2011 Charlie Poole")]
 
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)]
 
21
 
 
22
// The following GUID is for the ID of the typelib if this doc is exposed to COM
 
23
[assembly: Guid("d04fe5e3-ffa5-4510-a7c4-c2edd4dff058")]
 
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("0.9.0.0")]
 
36
[assembly: AssemblyFileVersion("0.9.0.0")]