Skip to content

Commit c009035

Browse files
committed
Update/1.10.0 - Updated to KSP 1.10
1 parent 1922aaa commit c009035

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed
36 KB
Binary file not shown.
0 Bytes
Binary file not shown.
225 KB
Binary file not shown.

DistantObject.csproj

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,24 +48,26 @@
4848
<Reference Include="UnityEngine">
4949
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
5050
</Reference>
51-
<Reference Include="UnityEngine.AnimationModule">
51+
<Reference Include="UnityEngine.AnimationModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
52+
<SpecificVersion>False</SpecificVersion>
5253
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.AnimationModule.dll</HintPath>
5354
</Reference>
54-
<Reference Include="UnityEngine.CoreModule">
55+
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
56+
<SpecificVersion>False</SpecificVersion>
5557
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
5658
</Reference>
57-
<Reference Include="UnityEngine.IMGUIModule">
59+
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
60+
<SpecificVersion>False</SpecificVersion>
5861
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.IMGUIModule.dll</HintPath>
5962
</Reference>
60-
<Reference Include="UnityEngine.InputLegacyModule">
63+
<Reference Include="UnityEngine.InputLegacyModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
64+
<SpecificVersion>False</SpecificVersion>
6165
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.InputLegacyModule.dll</HintPath>
6266
</Reference>
63-
<Reference Include="UnityEngine.PhysicsModule">
67+
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
68+
<SpecificVersion>False</SpecificVersion>
6469
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.PhysicsModule.dll</HintPath>
6570
</Reference>
66-
<Reference Include="UnityEngine.UI">
67-
<HintPath>..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Kerbal Space Program\KSP_x64_Data\Managed\UnityEngine.UI.dll</HintPath>
68-
</Reference>
6971
</ItemGroup>
7072
<ItemGroup>
7173
<Compile Include="SharedAssemblyInfo.cs" />
@@ -79,7 +81,7 @@
7981
</ItemGroup>
8082
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8183
<PropertyGroup>
82-
<PostBuildEvent>copy $(TargetPath) $(SolutionDir)GameData\DistantObject\</PostBuildEvent>
84+
<PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)GameData\DistantObject\" /Y</PostBuildEvent>
8385
</PropertyGroup>
8486
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
8587
Other similar extension points exist, see Microsoft.Common.targets.

GameData/DistantObject/DistantObject.version

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
},
1010
"KSP_VERSION": {
1111
"MAJOR": 1,
12-
"MINOR": 9,
12+
"MINOR": 10,
1313
"PATCH": 0
1414
},
1515
"KSP_VERSION_MIN":
1616
{
1717
"MAJOR": 1,
18-
"MINOR": 9,
18+
"MINOR": 10,
1919
"PATCH": 0
2020
},
2121
"KSP_VERSION_MAX":
2222
{
2323
"MAJOR": 1,
24-
"MINOR": 9,
25-
"PATCH": 0
24+
"MINOR": 10,
25+
"PATCH": 99
2626
}
2727
}

SharedAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
1515
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1616
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
17-
[assembly: AssemblyVersion("2.0.0.2")]
17+
[assembly: AssemblyVersion("2.0.1.0")]
1818

1919
// Use KSPAssembly to allow other DLLs to make this DLL a dependency in a
2020
// non-hacky way in KSP. Format is (AssemblyProduct, major, minor), and it
2121
// does not appear to have a hard requirement to match the assembly version.
22-
[assembly: KSPAssembly("DistantObject", 2, 0)]
22+
[assembly: KSPAssembly("DistantObject", 2, 1)]
2323

2424
// The following attributes are used to specify the signing key for the assembly,
2525
// if desired. See the Mono documentation for more information about signing.

0 commit comments

Comments
 (0)