Skip to content

Commit eb7bdea

Browse files
committed
integrate KSPBuildTools
1 parent 8752b67 commit eb7bdea

File tree

6 files changed

+56
-91
lines changed

6 files changed

+56
-91
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "KSPBuildTools"]
2+
path = KSPBuildTools
3+
url = https://github.com/KSPModdingLibs/KSPBuildTools.git

DistantObject.csproj

Lines changed: 0 additions & 88 deletions
This file was deleted.

DistantObject.sln

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Express 2013 for Windows Desktop
4-
VisualStudioVersion = 12.0.21005.1
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.10.35027.167
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistantObject", "DistantObject.csproj", "{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistantObject", "Source-Code\DistantObject.csproj", "{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -19,4 +19,7 @@ Global
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE
2121
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {F958512B-7A41-49FF-AFDA-2BA23D5EE231}
24+
EndGlobalSection
2225
EndGlobal

KSPBuildTools

Submodule KSPBuildTools added at 1cf9e94

Source-Code/DistantObject.csproj

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{CFA036CD-0BD0-4363-9A4B-621567C9F5E3}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>DistantObject</RootNamespace>
11+
<AssemblyName>DistantObject</AssemblyName>
12+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
<Prefer32Bit>false</Prefer32Bit>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<PlatformTarget>AnyCPU</PlatformTarget>
27+
<Optimize>true</Optimize>
28+
<OutputPath>bin\Release\</OutputPath>
29+
<DefineConstants>TRACE</DefineConstants>
30+
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
32+
<Prefer32Bit>false</Prefer32Bit>
33+
</PropertyGroup>
34+
<ItemGroup>
35+
<Compile Include="DarkenSky.cs" />
36+
<Compile Include="FlareDraw.cs" />
37+
<Compile Include="SettingsGui.cs" />
38+
<Compile Include="SharedAssemblyInfo.cs" />
39+
<Compile Include="ToolbarDOE.cs" />
40+
<Compile Include="ToolbarWrapper.cs" />
41+
<Compile Include="Utils.cs" />
42+
<Compile Include="VesselDraw.cs" />
43+
</ItemGroup>
44+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
45+
<Import Project="$(SolutionDir)KSPBuildTools\KSPCommon.targets"/>
46+
</Project>

0 commit comments

Comments
 (0)