merge from trunk revisions 58933, 58935, 58936
[mono.git] / mcs / tools / macpack / AssemblyInfo.cs
1 using System;
2 using System.Reflection;
3 using Mono.GetOptions;
4
5 // Attributes visible in " --help"
6 [assembly: AssemblyTitle ("macpack.exe")]
7 [assembly: AssemblyVersion (Consts.MonoVersion)]
8 [assembly: AssemblyDescription ("MacPack")]
9 [assembly: AssemblyCopyright ("MIT/X11")]
10
11 // This is text that goes after " [options]" in help output.
12 [assembly: Mono.UsageComplement ("")]
13
14 // Attributes visible in " -V"
15 [assembly: Mono.About("MacPack will take a managed assembly and prepare it in a Mac OSX compliant bundle to be run with mono")]
16 [assembly: Mono.Author ("kangaroo")]