Skip to content

Commit

Permalink
1.4.3.0 version, redid folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Caskey committed May 23, 2018
1 parent 9437110 commit 00c86a7
Show file tree
Hide file tree
Showing 25 changed files with 72 additions and 78 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ UnityEngine.UI.dll
# User-specific files
*.suo
*.user
*.userprefs
*.userosscache
*.sln.docstates

Expand Down Expand Up @@ -234,3 +235,4 @@ $RECYCLE.BIN/

# Windows shortcuts
*.lnk
*.zip
File renamed without changes.
File renamed without changes.
Binary file not shown.
2 changes: 2 additions & 0 deletions GameData/KSCSwitcher/README.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
### KSCSwitcher
Switches your KSC
File renamed without changes
Binary file removed KSCSwitcher.1.1.zip
Binary file not shown.
16 changes: 0 additions & 16 deletions KSCSwitcher.userprefs

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
117 changes: 59 additions & 58 deletions KSCSwitcher/KSCSwitcher.csproj → Source/KSCSwitcher.csproj
Original file line number Diff line number Diff line change
@@ -1,59 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{508CF9C1-62E6-4949-A1C9-3C742A7BA0B9}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>KSCSwitcher</RootNamespace>
<AssemblyName>KSCSwitcher</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Switcher\GameData\KSCSwitcher\Plugins\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<HintPath>..\..\..\..\.local\share\Steam\SteamApps\common\Kerbal Space Program\KSP_Data\Managed\System.Core.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>..\UnityEngine.UI.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="KSCSwitcher.cs" />
<Compile Include="CameraFixer.cs" />
<Compile Include="KSCLoader.cs" />
<Compile Include="LaunchSite.cs" />
<Compile Include="LastKSC.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{508CF9C1-62E6-4949-A1C9-3C742A7BA0B9}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>KSCSwitcher</RootNamespace>
<AssemblyName>KSCSwitcher</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\GameData\KSCSwitcher\Plugins\</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\GameData\KSCSwitcher\Plugins\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Dependencies\1.4.3\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<HintPath>..\..\..\..\.local\share\Steam\SteamApps\common\Kerbal Space Program\KSP_Data\Managed\System.Core.dll</HintPath>
</Reference>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Dependencies\1.4.3\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="KSCSwitcher.cs" />
<Compile Include="CameraFixer.cs" />
<Compile Include="KSCLoader.cs" />
<Compile Include="LaunchSite.cs" />
<Compile Include="LastKSC.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
11 changes: 8 additions & 3 deletions KSCSwitcher.sln → Source/KSCSwitcher.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KSCSwitcher", "KSCSwitcher\KSCSwitcher.csproj", "{508CF9C1-62E6-4949-A1C9-3C742A7BA0B9}"
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26430.4
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KSCSwitcher", "KSCSwitcher.csproj", "{508CF9C1-62E6-4949-A1C9-3C742A7BA0B9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -14,6 +16,9 @@ Global
{508CF9C1-62E6-4949-A1C9-3C742A7BA0B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{508CF9C1-62E6-4949-A1C9-3C742A7BA0B9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = KSCSwitcher\KSCSwitcher.csproj
EndGlobalSection
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// 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.
[assembly: AssemblyVersion ("1.0.*")]
[assembly: AssemblyVersion ("1.4.3.0")]
// 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)]
Expand Down

0 comments on commit 00c86a7

Please sign in to comment.