-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathKRPC.MechJeb.csproj
125 lines (125 loc) · 5.64 KB
/
KRPC.MechJeb.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" 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>{7D914285-E863-4CF1-AE2B-1265F430785C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>KRPC.MechJeb</RootNamespace>
<AssemblyName>KRPC.MechJeb</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</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>
<DocumentationFile>bin\Debug\KRPC.MechJeb.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</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>
<DocumentationFile>bin\Release\KRPC.MechJeb.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="KRPC">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\KRPC.dll</HintPath>
</Reference>
<Reference Include="KRPC.Core">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\KRPC.Core.dll</HintPath>
</Reference>
<Reference Include="KRPC.SpaceCenter">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\KRPC.SpaceCenter.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\UnityEngine.CoreModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ExtensionMethods\ReflectionExtensions.cs" />
<Compile Include="ExtensionMethods\VesselExtensions.cs" />
<Compile Include="Maneuver\Operation.cs" />
<Compile Include="Maneuver\OperationApoapsis.cs" />
<Compile Include="Maneuver\OperationCircularize.cs" />
<Compile Include="Maneuver\OperationCourseCorrection.cs" />
<Compile Include="Maneuver\OperationEllipticize.cs" />
<Compile Include="Maneuver\OperationInclination.cs" />
<Compile Include="Maneuver\OperationInterplanetaryTransfer.cs" />
<Compile Include="Maneuver\OperationKillRelVel.cs" />
<Compile Include="Maneuver\OperationLambert.cs" />
<Compile Include="Maneuver\OperationLan.cs" />
<Compile Include="Maneuver\OperationLongitude.cs" />
<Compile Include="Maneuver\OperationMoonReturn.cs" />
<Compile Include="Maneuver\OperationPeriapsis.cs" />
<Compile Include="Maneuver\OperationPlane.cs" />
<Compile Include="Maneuver\OperationResonantOrbit.cs" />
<Compile Include="Maneuver\OperationSemiMajor.cs" />
<Compile Include="Maneuver\OperationTransfer.cs" />
<Compile Include="Maneuver\TimeSelector.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Util\MathFunctions.cs" />
<Compile Include="Util\Vector6.cs" />
<Compile Include="AirplaneAutopilot.cs" />
<Compile Include="AscentAutopilot.cs" />
<Compile Include="AscentClassic.cs" />
<Compile Include="AscentGT.cs" />
<Compile Include="AscentPVG.cs" />
<Compile Include="ComputerModule.cs" />
<Compile Include="DeployableController.cs" />
<Compile Include="DockingAutopilot.cs" />
<Compile Include="EditableVariables.cs" />
<Compile Include="KSPAddon.cs" />
<Compile Include="LandingAutopilot.cs" />
<Compile Include="Logger.cs" />
<Compile Include="ManeuverPlanner.cs" />
<Compile Include="MechJeb.cs" />
<Compile Include="NodeExecutor.cs" />
<Compile Include="RCSController.cs" />
<Compile Include="RendezvousAutopilot.cs" />
<Compile Include="SmartASS.cs" />
<Compile Include="SmartRCS.cs" />
<Compile Include="StagingController.cs" />
<Compile Include="TargetController.cs" />
<Compile Include="ThrustController.cs" />
<Compile Include="Translatron.cs" />
<Compile Include="VesselState.cs" />
</ItemGroup>
<ItemGroup>
<None Include=".editorconfig" />
<None Include=".github\CODE_OF_CONDUCT.md" />
<None Include=".github\CONTRIBUTING.md" />
<None Include="CHANGELOG.md" />
<None Include="README.md" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>