|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 | | - <Import Project="..\packages\Microsoft.Net.Compilers.3.0.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.3.0.0\build\Microsoft.Net.Compilers.props')" /> |
| 3 | + <Import Project="..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props')" /> |
4 | 4 | <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> |
5 | 5 | <PropertyGroup> |
6 | 6 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
10 | 10 | <AppDesignerFolder>Properties</AppDesignerFolder> |
11 | 11 | <RootNamespace>B9PartSwitch</RootNamespace> |
12 | 12 | <AssemblyName>B9PartSwitch</AssemblyName> |
13 | | - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
| 13 | + <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion> |
14 | 14 | <FileAlignment>512</FileAlignment> |
15 | 15 | <TargetFrameworkProfile /> |
16 | 16 | <NuGetPackageImportStamp> |
|
43 | 43 | <Reference Include="UnityEngine"> |
44 | 44 | <Private>False</Private> |
45 | 45 | </Reference> |
| 46 | + <Reference Include="UnityEngine.CoreModule"> |
| 47 | + <Private>False</Private> |
| 48 | + </Reference> |
46 | 49 | <Reference Include="UnityEngine.UI"> |
47 | 50 | <Private>False</Private> |
48 | 51 | </Reference> |
49 | 52 | </ItemGroup> |
50 | 53 | <ItemGroup> |
51 | 54 | <Compile Include="CustomPartModule.cs" /> |
52 | | - <Compile Include="Extensions\CFGUtilPartModuleExtensions.cs" /> |
| 55 | + <Compile Include="Extensions\AttachNodeExtensions.cs" /> |
| 56 | + <Compile Include="Extensions\CustomPartModuleExtensions.cs" /> |
53 | 57 | <Compile Include="Extensions\IEnumerableExtensions.cs" /> |
| 58 | + <Compile Include="Extensions\ListExtensions.cs" /> |
| 59 | + <Compile Include="Extensions\ObjectExtensions.cs" /> |
| 60 | + <Compile Include="Extensions\PartExtensions.cs" /> |
54 | 61 | <Compile Include="Extensions\PartModuleExtensions.cs" /> |
55 | 62 | <Compile Include="Extensions\StringExtensions.cs" /> |
56 | 63 | <Compile Include="Extensions\TransformExtensions.cs" /> |
| 64 | + <Compile Include="Extensions\TypeExtensions.cs" /> |
57 | 65 | <Compile Include="Extensions\Vector3Extensions.cs" /> |
58 | 66 | <Compile Include="FatalErrorHandler.cs" /> |
| 67 | + <Compile Include="FARChecker.cs" /> |
59 | 68 | <Compile Include="Fishbones\Context\Operation.cs" /> |
60 | 69 | <Compile Include="Fishbones\Context\OperationContext.cs" /> |
61 | 70 | <Compile Include="Fishbones\FieldWrappers\FieldWrapper.cs" /> |
|
87 | 96 | <Compile Include="Fishbones\Parsers\NodeObjectWrapperIContextualNode.cs" /> |
88 | 97 | <Compile Include="Fishbones\Parsers\OverrideValueParseMap.cs" /> |
89 | 98 | <Compile Include="Fishbones\Parsers\PartResourceDefinitionValueParser.cs" /> |
| 99 | + <Compile Include="Fishbones\Parsers\ScaleParser.cs" /> |
90 | 100 | <Compile Include="Fishbones\Parsers\ValueParseMap.cs" /> |
91 | 101 | <Compile Include="Fishbones\Parsers\ValueParseMapWrapper.cs" /> |
92 | 102 | <Compile Include="Fishbones\Parsers\ValueParser.cs" /> |
93 | 103 | <Compile Include="Fishbones\NodeDataMappers\INodeDataMapperBuilder.cs" /> |
94 | 104 | <Compile Include="Fishbones\NodeDataBuilder.cs" /> |
95 | 105 | <Compile Include="Fishbones\NodeDataField.cs" /> |
96 | | - <Compile Include="Fishbones\OperationManager.cs" /> |
97 | 106 | <Compile Include="Fishbones\NodeDataMappers\ValueListMapperBuilder.cs" /> |
98 | 107 | <Compile Include="Fishbones\NodeDataMappers\ValueScalarMapperBuilder.cs" /> |
| 108 | + <Compile Include="Fishbones\OperationManager.cs" /> |
99 | 109 | <Compile Include="Fishbones\UseParser.cs" /> |
100 | 110 | <Compile Include="Localization.cs" /> |
101 | 111 | <Compile Include="ModuleB9DisableTransform.cs" /> |
102 | 112 | <Compile Include="ModuleB9PropagateCopyEvents.cs" /> |
103 | | - <Compile Include="PartSwitch\PartModifiers\AttachNodeMover.cs" /> |
104 | 113 | <Compile Include="PartSwitch\AttachNodeModifierInfo.cs" /> |
| 114 | + <Compile Include="PartSwitch\BestSubtypeDeterminator.cs" /> |
| 115 | + <Compile Include="PartSwitch\LockedSubtypeWarningHandler.cs" /> |
105 | 116 | <Compile Include="PartSwitch\ModuleB9PartInfo.cs" /> |
| 117 | + <Compile Include="PartSwitch\ModuleB9PartSwitch.cs" /> |
| 118 | + <Compile Include="PartSwitch\ModuleModifierInfo.cs" /> |
| 119 | + <Compile Include="PartSwitch\PartModifiers\AttachNodeMover.cs" /> |
106 | 120 | <Compile Include="PartSwitch\PartModifiers\AttachNodeToggler.cs" /> |
| 121 | + <Compile Include="PartSwitch\PartModifiers\EffectDeactivator.cs" /> |
107 | 122 | <Compile Include="PartSwitch\PartModifiers\IPartModifier.cs" /> |
| 123 | + <Compile Include="PartSwitch\PartModifiers\ModuleDataHandlerBasic.cs" /> |
| 124 | + <Compile Include="PartSwitch\PartModifiers\ModuleDeactivator.cs" /> |
| 125 | + <Compile Include="PartSwitch\PartModifiers\ModuleOutputResourceResetter.cs" /> |
108 | 126 | <Compile Include="PartSwitch\PartModifiers\PartAttachNodeModifier.cs" /> |
109 | 127 | <Compile Include="PartSwitch\PartModifiers\PartCenterOfBuoyancyModifier.cs" /> |
110 | 128 | <Compile Include="PartSwitch\PartModifiers\PartCenterOfDisplacementModifier.cs" /> |
|
117 | 135 | <Compile Include="PartSwitch\PartModifiers\PartSkinMaxTempModifier.cs" /> |
118 | 136 | <Compile Include="PartSwitch\PartModifiers\PartStackSymmetryModifier.cs" /> |
119 | 137 | <Compile Include="PartSwitch\PartModifiers\ResourceModifier.cs" /> |
| 138 | + <Compile Include="PartSwitch\PartModifiers\TextureReplacement.cs" /> |
120 | 139 | <Compile Include="PartSwitch\PartModifiers\TransformMover.cs" /> |
121 | 140 | <Compile Include="PartSwitch\PartModifiers\TransformRotator.cs" /> |
| 141 | + <Compile Include="PartSwitch\PartModifiers\TransformScaleModifier.cs" /> |
122 | 142 | <Compile Include="PartSwitch\PartModifiers\TransformToggler.cs" /> |
| 143 | + <Compile Include="PartSwitch\PartSubtype.cs" /> |
123 | 144 | <Compile Include="PartSwitch\PartSwitchFlightDialog.cs" /> |
124 | | - <Compile Include="PartSwitch\PartModifiers\TextureReplacement.cs" /> |
125 | 145 | <Compile Include="PartSwitch\TextureSwitchInfo.cs" /> |
126 | 146 | <Compile Include="PartSwitch\TransformModifierInfo.cs" /> |
127 | 147 | <Compile Include="Serialization\SerializedDataContainer.cs" /> |
128 | | - <Compile Include="Extensions\AttachNodeExtensions.cs" /> |
129 | | - <Compile Include="Extensions\ObjectExtensions.cs" /> |
130 | | - <Compile Include="Extensions\PartExtensions.cs" /> |
131 | | - <Compile Include="Extensions\TypeExtensions.cs" /> |
132 | | - <Compile Include="FARChecker.cs" /> |
133 | | - <Compile Include="Extensions\ListExtensions.cs" /> |
134 | 148 | <Compile Include="SeriousWarningHandler.cs" /> |
135 | | - <Compile Include="TankSettings\B9TankSettings.cs" /> |
136 | | - <Compile Include="PartSwitch\ModuleB9PartSwitch.cs" /> |
137 | | - <Compile Include="PartSwitch\PartSubtype.cs" /> |
138 | 149 | <Compile Include="Properties\AssemblyInfo.cs" /> |
| 150 | + <Compile Include="TankSettings\B9TankSettings.cs" /> |
139 | 151 | <Compile Include="TankSettings\Tanks.cs" /> |
140 | 152 | <Compile Include="TankSettings\TankTypeValueParser.cs" /> |
141 | | - <Compile Include="Test\ModuleB9PartSwitchTest.cs" /> |
142 | | - <Compile Include="Test\PartModuleTest.cs" /> |
| 153 | + <Compile Include="UI\PrefabManager.cs" /> |
| 154 | + <Compile Include="UI\SwitcherSubtypeDescriptionGenerator.cs" /> |
| 155 | + <Compile Include="UI\TooltipHelper.cs" /> |
| 156 | + <Compile Include="UI\UIPartActionSubtypeButton.cs" /> |
| 157 | + <Compile Include="UI\UIPartActionSubtypeSelector.cs" /> |
| 158 | + <Compile Include="UI\UI_SubtypeSelector.cs" /> |
| 159 | + <Compile Include="Utils\ColorParser.cs" /> |
| 160 | + <Compile Include="Utils\GroupedStringBuilder.cs" /> |
| 161 | + <Compile Include="Utils\ResourceColors.cs" /> |
143 | 162 | </ItemGroup> |
144 | 163 | <ItemGroup> |
145 | 164 | <None Include="packages.config" /> |
|
159 | 178 | <PropertyGroup> |
160 | 179 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
161 | 180 | </PropertyGroup> |
162 | | - <Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.3.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.3.0.0\build\Microsoft.Net.Compilers.props'))" /> |
| 181 | + <Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.3.3.1\build\Microsoft.Net.Compilers.props'))" /> |
163 | 182 | </Target> |
164 | 183 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
165 | 184 | Other similar extension points exist, see Microsoft.Common.targets. |
|
0 commit comments