Skip to content

Commit eb84fbe

Browse files
committed
Legal Mambo Jambo
1 parent 0445e44 commit eb84fbe

File tree

3 files changed

+40
-6
lines changed

3 files changed

+40
-6
lines changed

Source/ModuleManager/ModuleManager.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@
136136
<Compile Include="GUI\ReloadingDatabase.12.cs" />
137137
<Compile Include="Utils\PerformanceMetrics.cs" />
138138
<Compile Include="Logging\PatchLogger.cs" />
139+
<Compile Include="Properties\LegalMamboJambo.cs" />
139140
</ItemGroup>
140141
<ItemGroup>
141142
<Reference Include="System" />

Source/ModuleManager/Properties/AssemblyInfo.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
// Information about this assembly is defined by the following attributes.
44
// Change them to the values specific to your project.
55

6-
[assembly: AssemblyTitle("ModuleManager")]
7-
[assembly: AssemblyDescription("Module Manager /L Experimental")]
6+
[assembly: AssemblyTitle("Module Manager /L Experimental")]
7+
[assembly: AssemblyDescription("ModuleManager is mod that let you write patch file that edit other part at load time.")]
88
[assembly: AssemblyConfiguration("")]
9-
[assembly: AssemblyCompany("")]
10-
[assembly: AssemblyProduct("")]
11-
[assembly: AssemblyCopyright("")]
12-
[assembly: AssemblyTrademark("")]
9+
[assembly: AssemblyCompany(ModuleManager.LegalMamboJambo.Company)]
10+
[assembly: AssemblyProduct(ModuleManager.LegalMamboJambo.Product)]
11+
[assembly: AssemblyCopyright(ModuleManager.LegalMamboJambo.Copyright)]
12+
[assembly: AssemblyTrademark(ModuleManager.LegalMamboJambo.Trademark)]
1313
[assembly: AssemblyCulture("")]
1414

1515
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// /*
2+
// This file is part of KSPe, a component for KSP API Extensions/L
3+
// (C) 2018-21 Lisias T : http://lisias.net <[email protected]>
4+
//
5+
// KSPe API Extensions/L is double licensed, as follows:
6+
//
7+
// * SKL 1.0 : https://ksp.lisias.net/SKL-1_0.txt
8+
// * GPL 2.0 : https://www.gnu.org/licenses/gpl-2.0.txt
9+
//
10+
// And you are allowed to choose the License that better suit your needs.
11+
//
12+
// KSPe API Extensions/L is distributed in the hope that it will be useful,
13+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15+
//
16+
// You should have received a copy of the SKL Standard License 1.0
17+
// along with KSPe API Extensions/L. If not, see <https://ksp.lisias.net/SKL-1_0.txt>.
18+
//
19+
// You should have received a copy of the GNU General Public License 2.0
20+
// along with KSPe API Extensions/L. If not, see <https://www.gnu.org/licenses/>.
21+
//
22+
// */
23+
using System;
24+
namespace ModuleManager
25+
{
26+
public static class LegalMamboJambo
27+
{
28+
public const string Company = "L Aerospace KSP Division";
29+
public const string Product = "Module Manager";
30+
public const string Copyright = "©2018-21 Lisias";
31+
public const string Trademark = "Module Manager /L Experimental";
32+
}
33+
}

0 commit comments

Comments
 (0)