Skip to content

Commit

Permalink
Merge pull request #4 from MagicSmokeIndustries/develop
Browse files Browse the repository at this point in the history
Working Version
  • Loading branch information
ZiwKerman committed Apr 30, 2015
2 parents 783cb61 + 378255d commit 99e13d7
Show file tree
Hide file tree
Showing 36 changed files with 5,823 additions and 0 deletions.
22 changes: 22 additions & 0 deletions ActiveStruts.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ActiveStruts", "ActiveStruts\ActiveStruts.csproj", "{93A0B490-9598-449E-9A15-31427B585C76}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{93A0B490-9598-449E-9A15-31427B585C76}.Debug|Any CPU.ActiveCfg = Release|Any CPU
{93A0B490-9598-449E-9A15-31427B585C76}.Debug|Any CPU.Build.0 = Release|Any CPU
{93A0B490-9598-449E-9A15-31427B585C76}.Release|Any CPU.ActiveCfg = Release|Any CPU
{93A0B490-9598-449E-9A15-31427B585C76}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
4 changes: 4 additions & 0 deletions ActiveStruts.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=AS/@EntryIndexedValue">AS</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=DS/@EntryIndexedValue">DS</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=OSD/@EntryIndexedValue">OSD</s:String></wpf:ResourceDictionary>
8 changes: 8 additions & 0 deletions ActiveStruts.userprefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Properties StartupItem="ActiveStruts/ActiveStruts.csproj">
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
<MonoDevelop.Ide.Workbench />
<MonoDevelop.Ide.DebuggingService.Breakpoints>
<BreakpointStore />
</MonoDevelop.Ide.DebuggingService.Breakpoints>
<MonoDevelop.Ide.DebuggingService.PinnedWatches />
</Properties>
84 changes: 84 additions & 0 deletions ActiveStruts/ActiveStruts.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{93A0B490-9598-449E-9A15-31427B585C76}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ActiveStruts</RootNamespace>
<AssemblyName>ActiveStruts</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\KSP_LIB\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="UnityEngine">
<HintPath>..\..\KSP_LIB\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Addons\ActiveStrutsAddon.cs" />
<Compile Include="Modules\IDResetable.cs" />
<Compile Include="Modules\ModuleActiveStrutFreeAttachTarget.cs" />
<Compile Include="Modules\ModuleAutoStrutter.cs" />
<Compile Include="Modules\ModuleKerbalHook.cs" />
<Compile Include="Modules\ModuleKerbalHookAnchor.cs" />
<Compile Include="PartFactory.cs" />
<Compile Include="Util\ColorExtenstions.cs" />
<Compile Include="Util\Config.cs" />
<Compile Include="Util\LinkType.cs" />
<Compile Include="Util\Mode.cs" />
<Compile Include="Modules\ModuleActiveStrut.cs" />
<Compile Include="Util\OSD.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Util\PartExtensions.cs" />
<Compile Include="Util\RaycastResult.cs" />
<Compile Include="Util\RotationAngleHelper.cs" />
<Compile Include="Util\SettingsEntry.cs" />
<Compile Include="Util\Tuple.cs" />
<Compile Include="Util\Utilities.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="License.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
16 changes: 16 additions & 0 deletions ActiveStruts/ActiveStruts.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"NAME":"CIT - ActiveStruts",
"URL":"https://static.marce.at/file/KSP/CIT/ActiveStruts/ActiveStruts.version",
"DOWNLOAD":"https://static.marce.at/file/KSP/CIT/ChopIt/ActiveStruts.7z",
"VERSION":{
"MAJOR":1,
"MINOR":0,
"PATCH":0,
"BUILD":0
},
"KSP_VERSION":{
"MAJOR":0,
"MINOR":25,
"PATCH":0
}
}
Loading

0 comments on commit 99e13d7

Please sign in to comment.