forked from allista/GroundConstruction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OneTimeResourceConverter.csproj
93 lines (93 loc) · 4.56 KB
/
OneTimeResourceConverter.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{24EAA6A4-B304-486E-9E2D-DA815597FA6B}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>GroundConstruction</RootNamespace>
<AssemblyName>OneTimeResourceConverter</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
</PropertyGroup>
<Import Project="$(MSBuildProjectDirectory)/../CSharp.warnings.xml" />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>GameData\GroundConstruction\Plugins</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>GameData\GroundConstruction\Plugins</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Nightbuild|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>GameData\GroundConstruction\Plugins</OutputPath>
<WarningLevel>4</WarningLevel>
<DefineConstants>NIGHTBUILD</DefineConstants>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\KSP-test\KSP_test_1.12.3\KSP_Data\Managed\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System">
<HintPath>..\KSP-test\KSP_test_1.12.3\KSP_Data\Managed\System.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Core">
<HintPath>..\KSP-test\KSP_test_1.12.3\KSP_Data\Managed\System.Core.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\KSP-test\KSP_test_1.12.3\KSP_Data\Managed\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\KSP-test\KSP_test_1.12.3\KSP_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\KSP-test\KSP_test_1.12.3\KSP_Data\Managed\UnityEngine.IMGUIModule.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>..\KSP-test\KSP_test_1.12.3\KSP_Data\Managed\UnityEngine.UI.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AT_Utils\AT_Utils.csproj">
<Project>{64CC36A2-0610-4F74-9F31-3D4E22866B7E}</Project>
<Name>AT_Utils</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\AT_Utils\ConfigurableContainers\ConfigurableContainers.csproj">
<Project>{BD074812-7105-46D7-A252-53C20DAB698B}</Project>
<Name>ConfigurableContainers</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\AT_Utils\Unity\AT_Utils.UI.csproj">
<Project>{0b711e55-8312-144f-53ad-eda5a8cee04a}</Project>
<Name>AT_Utils.UI</Name>
</ProjectReference>
<ProjectReference Include="GroundConstruction.csproj">
<Project>{EF214F4D-30E8-47E6-AD75-50679ADA77E3}</Project>
<Name>GroundConstruction</Name>
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo-OTRC.cs" />
<Compile Include="OneTimeResourceConverter.cs" />
</ItemGroup>
</Project>