Skip to content

Commit

Permalink
1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zer0Kerbal committed Feb 7, 2020
1 parent ff65482 commit 8412b6e
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GameData/Biomatic/patches/BiomaticConfig.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// BiomaticConfig v1.0
// Biomatic
// created: 11 Oct 19
// created: 11 Oct 19
// updated: 03 Feb 2020

@PART[*]:HAS[@MODULE[ModuleCommand],@MODULE[!Biomatic]]:NEEDS[Biomatic]:FOR[Biomatic]
{
@description:NEEDS[Biomatic] ^= :$:<color=blue>\nBiomatic Installed. </color>:

//enables Biomatic on all pods and probes//
MODULE:NEEDS[Biomatic] {}
MODULE
{
name = Biomatic
}
Expand Down
82 changes: 82 additions & 0 deletions Source/Biomatic173.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{15ADE103-88E3-420F-BE21-A00E1AABA934}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>Biomatic</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Biomatic</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- <Reference Include="Microsoft.CSharp" /> -->
<Reference Include="$(DevDir173)\GameData\000_ClickThroughBlocker\Plugins\ClickThroughBlocker.dll">
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="$(DevDir173)\KSP_x64_Data\Managed\Assembly-CSharp*.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(DevDir173)\KSP_x64_Data\Managed\*.dll">
<Private>False</Private>
</Reference>
<Reference Include="$(DevDir173)\GameData\001_ToolbarControl\Plugins\ToolbarControl.dll">
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Biomatic.cs" />
<Compile Include="BiomaticExtensions.cs" />
<Compile Include="BiomeSituation.cs" />
<Compile Include="InstallChecker.cs" />
<Compile Include="Log.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Version.cs" />
<Compile Include="RectExtensions.cs" />
<Compile Include="StockToolBar.cs" />
<Compile Include="TechChecker.cs" />
<Compile Include="ToolbarWrapper.cs" />
<Compile Include="Utilities.cs" />
</ItemGroup>
<ItemGroup>
<None Include=".vs\Biomatic\v16\.suo" />
</ItemGroup>
<ItemGroup>
<Content Include="Properties\Version.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Version2.cs</LastGenOutput>
</Content>
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
</Project>

0 comments on commit 8412b6e

Please sign in to comment.