|
Andy
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
|
2 |
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
|
3 |
<PropertyGroup> |
|
|
4 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug_win</Configuration> |
|
|
5 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
Andy
|
6 |
<ProductVersion>8.0.30703</ProductVersion> |
|
Andy
|
7 |
<SchemaVersion>2.0</SchemaVersion> |
|
|
8 |
<ProjectGuid>{B36F2C11-962E-4A75-9F41-61AD56D11493}</ProjectGuid> |
|
|
9 |
<OutputType>Library</OutputType> |
|
|
10 |
<RootNamespace>AntennaRange</RootNamespace> |
|
|
11 |
<AssemblyName>AntennaRange</AssemblyName> |
|
Andy Wilkinson
|
12 |
<ReleaseVersion>1.3</ReleaseVersion> |
|
Andy
|
13 |
<SynchReleaseVersion>false</SynchReleaseVersion> |
|
|
14 |
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
|
Andy
|
15 |
<UseMSBuildEngine>False</UseMSBuildEngine> |
|
Andy
|
16 |
</PropertyGroup> |
|
|
17 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_win|AnyCPU' "> |
|
|
18 |
<DebugSymbols>true</DebugSymbols> |
|
|
19 |
<DebugType>full</DebugType> |
|
|
20 |
<Optimize>false</Optimize> |
|
|
21 |
<OutputPath>bin\Debug</OutputPath> |
|
|
22 |
<DefineConstants>DEBUG;TRACE;</DefineConstants> |
|
|
23 |
<ErrorReport>prompt</ErrorReport> |
|
|
24 |
<WarningLevel>4</WarningLevel> |
|
|
25 |
<ConsolePause>false</ConsolePause> |
|
|
26 |
<CustomCommands> |
|
|
27 |
<CustomCommands> |
|
Andy Wilkinson
|
28 |
<Command type="AfterBuild" command="xcopy /y ${TargetFile} ${ProjectDir}\GameData\AntennaRange\" /> |
|
Andy
|
29 |
</CustomCommands> |
|
|
30 |
</CustomCommands> |
|
|
31 |
</PropertyGroup> |
|
|
32 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_win|AnyCPU' "> |
|
|
33 |
<Optimize>true</Optimize> |
|
|
34 |
<OutputPath>bin\Release</OutputPath> |
|
|
35 |
<ErrorReport>prompt</ErrorReport> |
|
|
36 |
<WarningLevel>4</WarningLevel> |
|
|
37 |
<ConsolePause>false</ConsolePause> |
|
|
38 |
<CustomCommands> |
|
|
39 |
<CustomCommands> |
|
Andy Wilkinson
|
40 |
<Command type="AfterBuild" command="xcopy /y ${TargetFile} ${ProjectDir}\GameData\AntennaRange\" /> |
|
Andy
|
41 |
</CustomCommands> |
|
|
42 |
</CustomCommands> |
|
toadicus
|
43 |
<DocumentationFile>bin\Release\AntennaRange.xml</DocumentationFile> |
|
Andy
|
44 |
</PropertyGroup> |
|
Andy Wilkinson
|
45 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_linux|AnyCPU' "> |
|
|
46 |
<DebugSymbols>true</DebugSymbols> |
|
|
47 |
<DebugType>full</DebugType> |
|
|
48 |
<Optimize>false</Optimize> |
|
|
49 |
<OutputPath>bin\Debug</OutputPath> |
|
|
50 |
<DefineConstants>DEBUG;TRACE;</DefineConstants> |
|
|
51 |
<ErrorReport>prompt</ErrorReport> |
|
|
52 |
<WarningLevel>4</WarningLevel> |
|
|
53 |
<ConsolePause>false</ConsolePause> |
|
|
54 |
<CustomCommands> |
|
|
55 |
<CustomCommands> |
|
Andy Wilkinson
|
56 |
<Command type="AfterBuild" command="cp -afv ${TargetFile} ${ProjectDir}/GameData/${ProjectName}/" /> |
|
Andy Wilkinson
|
57 |
</CustomCommands> |
|
|
58 |
</CustomCommands> |
|
|
59 |
</PropertyGroup> |
|
|
60 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_linux|AnyCPU' "> |
|
|
61 |
<Optimize>true</Optimize> |
|
|
62 |
<OutputPath>bin\Release</OutputPath> |
|
|
63 |
<ErrorReport>prompt</ErrorReport> |
|
|
64 |
<WarningLevel>4</WarningLevel> |
|
|
65 |
<CustomCommands> |
|
|
66 |
<CustomCommands> |
|
Andy Wilkinson
|
67 |
<Command type="AfterBuild" command="cp -afv ${TargetFile} ${ProjectDir}/GameData/${ProjectName}/" /> |
|
Andy Wilkinson
|
68 |
</CustomCommands> |
|
|
69 |
</CustomCommands> |
|
|
70 |
<ConsolePause>false</ConsolePause> |
|
|
71 |
</PropertyGroup> |
|
Andy
|
72 |
<ItemGroup> |
|
|
73 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
|
74 |
<Compile Include="IAntennaRelay.cs" /> |
|
|
75 |
<Compile Include="ModuleLimitedDataTransmitter.cs" /> |
|
|
76 |
<Compile Include="AntennaRelay.cs" /> |
|
|
77 |
<Compile Include="ProtoAntennaRelay.cs" /> |
|
|
78 |
<Compile Include="RelayDatabase.cs" /> |
|
|
79 |
<Compile Include="RelayExtensions.cs" /> |
|
Andy Wilkinson
|
80 |
<Compile Include="ARConfiguration.cs" /> |
|
Andy
|
81 |
<Compile Include="ARFlightController.cs" /> |
|
Andy
|
82 |
<Compile Include="ARMapRenderer.cs" /> |
|
Andy
|
83 |
</ItemGroup> |
|
|
84 |
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
|
Andy Wilkinson
|
85 |
<ItemGroup> |
|
|
86 |
<Reference Include="Assembly-CSharp"> |
|
|
87 |
<HintPath>..\_KSPAssemblies\Assembly-CSharp.dll</HintPath> |
|
Andy
|
88 |
<Private>False</Private> |
|
Andy Wilkinson
|
89 |
</Reference> |
|
|
90 |
<Reference Include="System"> |
|
|
91 |
<HintPath>..\_KSPAssemblies\System.dll</HintPath> |
|
Andy
|
92 |
<Private>False</Private> |
|
Andy Wilkinson
|
93 |
</Reference> |
|
|
94 |
<Reference Include="UnityEngine"> |
|
|
95 |
<HintPath>..\_KSPAssemblies\UnityEngine.dll</HintPath> |
|
Andy
|
96 |
<Private>False</Private> |
|
Andy Wilkinson
|
97 |
</Reference> |
|
|
98 |
</ItemGroup> |
|
Andy
|
99 |
<ItemGroup> |
|
|
100 |
<ProjectReference Include="..\ToadicusTools\ToadicusTools.csproj"> |
|
|
101 |
<Project>{D48A5542-6655-4149-BC27-B27DF0466F1C}</Project> |
|
|
102 |
<Name>ToadicusTools</Name> |
|
|
103 |
</ProjectReference> |
|
|
104 |
</ItemGroup> |
|
Andy Wilkinson
|
105 |
<ItemGroup> |
|
|
106 |
<None Include="GameData\AntennaRange\AntennaRange.cfg" /> |
|
|
107 |
<None Include="GameData\AntennaRange\ATM_AntennaRange.cfg" /> |
|
|
108 |
</ItemGroup> |
|
Andy
|
109 |
</Project> |