1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | // AntennaRange © 2014 toadicus // // AntennaRange provides incentive and requirements for the use of the various antenna parts. // Nominally, the breakdown is as follows: // // Communotron 16 - Suitable up to Kerbalsynchronous Orbit // Comms DTS-M1 - Suitable throughout the Kerbin subsystem // Communotron 88-88 - Suitable throughout the Kerbol system. // // This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. To view a // copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ // // This software uses the ModuleManager library © 2013 ialdabaoth, used under a Creative Commons Attribution-ShareAlike // 3.0 Uported License. // // This software uses code from the MuMechLib library, © 2013 r4m0n, used under the GNU GPL version 3. using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("AntennaRange")] [assembly: AssemblyDescription("Enforce and Encourage Antenna Diversity")] [assembly: AssemblyCopyright("toadicus")] // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.6.2.*")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. //[assembly: AssemblyDelaySign(false)] //[assembly: AssemblyKeyFile("")] |