File tree Expand file tree Collapse file tree 3 files changed +40
-6
lines changed Expand file tree Collapse file tree 3 files changed +40
-6
lines changed Original file line number Diff line number Diff line change 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" />
Original file line number Diff line number Diff line change 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}".
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments