-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathAssemblyInfo.cs
57 lines (48 loc) · 2.1 KB
/
AssemblyInfo.cs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Author:
// Allis Tauri <allista@gmail.com>
//
// Copyright (c) 2015 Allis Tauri
//
// This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/
// or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
using System;
using System.Reflection;
using AT_Utils;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("ThrottleControlledAvionics")]
[assembly: AssemblyDescription("Plugin for the Kerbal Space Program")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("Allis Tauri")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// 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.
#if NIGHTBUILD
[assembly: AssemblyVersion("3.8.*")]
#else
[assembly: AssemblyVersion("3.8.0.1")]
#endif
[assembly: KSPAssembly("ThrottleControlledAvionics", 3, 8)]
// 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("")]
namespace ThrottleControlledAvionics
{
public class ModInfo : KSP_AVC_Info
{
public ModInfo()
{
MinKSPVersion = new Version(1, 12, 3);
MaxKSPVersion = new Version(1, 12, 3);
VersionURL = "https://raw.githubusercontent.com/allista/ThrottleControlledAvionics/master/GameData/ThrottleControlledAvionics/ThrottleControlledAvionics.version";
UpgradeURL = "http://spacedock.info/mod/198/Throttle%20Controlled%20Avionics";
ChangeLogURL = "https://raw.githubusercontent.com/allista/ThrottleControlledAvionics/master/ChangeLog.md";
}
}
}