forked from russnash/Kaboom
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10e217b
commit 31de46c
Showing
2 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="16.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>{2B7E1B6F-D663-49E9-B0BF-64EB7D8CCBE4}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Kaboom</RootNamespace> | ||
<AssemblyName>Kaboom</AssemblyName> | ||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<Deterministic>true</Deterministic> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>..\GameData\Kaboom\Plugins\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DocumentationFile>..\GameData\Kaboom\Plugins\Kaboom.xml</DocumentationFile> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>embedded</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>..\GameData\Kaboom\Plugins\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DocumentationFile>..\GameData\Kaboom\Plugins\Kaboom.xml</DocumentationFile> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<RootNamespace>Kaboom</RootNamespace> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="$(K112)\KSP_x64_Data\Managed\Assembly*.dll"> | ||
<Private>False</Private> | ||
</Reference> | ||
<Reference Include="$(K112)\KSP_x64_Data\Managed\UnityEngine*.dll"> | ||
<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" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Kaboom.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="Properties\Version.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTime>True</DesignTime> | ||
<DependentUpon>Version.tt</DependentUpon> | ||
</Compile> | ||
<Compile Include="Support\InstallChecker.cs" /> | ||
<Compile Include="Support\Settings.cs" /> | ||
<Compile Include="Welding\Welding.cs" /> | ||
<Compile Include="Welding\WeldingData.cs" /> | ||
<Compile Include="Welding\WeldingDockingPorts.cs" /> | ||
<Compile Include="Welding\WeldingUtilities.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="Properties\Version.tt"> | ||
<Generator>TextTemplatingFileGenerator</Generator> | ||
<LastGenOutput>Version.cs</LastGenOutput> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="Asset\en-us.cfg" /> | ||
<None Include="Asset\Kaboom.version" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<PropertyGroup> | ||
<PreBuildEvent>"$(DevEnvDir)\TextTransform.exe" "$(ProjectDir)Properties\Version.tt" | ||
</PreBuildEvent> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<PostBuildEvent> | ||
set K112=$(K112) | ||
IF "%25K112%25"=="" ( | ||
ECHO Configuration error - K112 not specified in project. | ||
ECHO Either set K112 environment variable | ||
PAUSE | ||
GOTO DONE | ||
) | ||
|
||
start /D $(ProjectDir)..\ /WAIT _deploy.bat $(TargetDir) $(TargetFileName) | ||
|
||
if $(ConfigurationName) == Release start /D $(ProjectDir)..\ /WAIT _buildRelease.bat $(TargetDir) $(TargetFileName)</PostBuildEvent> | ||
</PropertyGroup> | ||
<ProjectExtensions> | ||
<MonoDevelop> | ||
<Properties> | ||
<Policies> | ||
<TextStylePolicy TabWidth="4" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" EolMarker="Native" FileWidth="132" TabsToSpaces="False" scope="text/plain" /> | ||
</Policies> | ||
</Properties> | ||
</MonoDevelop> | ||
<VisualStudio AllowExistingFolder="true" /> | ||
</ProjectExtensions> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}") = "Kaboom", "Repo-Kaboom.csproj", "{2B7E1B6F-D663-49E9-B0BF-64EB7D8CCBE4}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{2B7E1B6F-D663-49E9-B0BF-64EB7D8CCBE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{2B7E1B6F-D663-49E9-B0BF-64EB7D8CCBE4}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{2B7E1B6F-D663-49E9-B0BF-64EB7D8CCBE4}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{2B7E1B6F-D663-49E9-B0BF-64EB7D8CCBE4}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |