Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CC.UI/CC.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<FileAlignment>512</FileAlignment>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<Import Project="$(MSBuildProjectDirectory)/../../../CSharp.warnings.xml" />
<Import Project="$(MSBuildProjectDirectory)/../../../CSharp.warnings.xml"
Condition="Exists('$(MSBuildProjectDirectory)/../../../CSharp.warnings.xml')" />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Configurable Containers Change Log

## v2.6.2.2 / TBD

* Compiled for KSP 1.12.5
* Changed max KSP version to 1.12.99
* Made the shared warning configuration import optional for standalone clones

## v2.6.2.1 / 2022-04-01

* Compiled for KSP 1.12.3
Expand Down
3 changes: 2 additions & 1 deletion ConfigurableContainers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<AssemblyName>ConfigurableContainers</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
</PropertyGroup>
<Import Project="$(MSBuildProjectDirectory)/../../CSharp.warnings.xml" />
<Import Project="$(MSBuildProjectDirectory)/../../CSharp.warnings.xml"
Condition="Exists('$(MSBuildProjectDirectory)/../../CSharp.warnings.xml')" />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"MAJOR":2,
"MINOR":6,
"PATCH":2,
"BUILD":1
"BUILD":2
},
"KSP_VERSION_MIN":
{
Expand All @@ -20,6 +20,6 @@
{
"MAJOR":1,
"MINOR":12,
"PATCH":3
"PATCH":99
}
}
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#if NIGHTBUILD
[assembly: AssemblyVersion("2.6.*")]
#else
[assembly: AssemblyVersion("2.6.2.1")]
[assembly: AssemblyVersion("2.6.2.2")]
#endif
[assembly: KSPAssembly("ConfigurableContainers", 2, 6)]

Expand All @@ -44,7 +44,7 @@ public class CCModInfo : KSP_AVC_Info
public CCModInfo()
{
MinKSPVersion = new Version(1, 12, 3);
MaxKSPVersion = new Version(1, 12, 3);
MaxKSPVersion = new Version(1, 12, 99);

VersionURL =
"https://github.com/allista/ConfigurableContainers/tree/master/GameData/ConfigurableContainers/ConfigurableContainers.version";
Expand Down