CommonAI_C.csproj 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{0D86D14E-C45E-400A-8F50-FF7BDE63B35A}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CommonAI</RootNamespace>
  12. <AssemblyName>CommonAI</AssemblyName>
  13. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <FileUpgradeFlags>
  16. </FileUpgradeFlags>
  17. <UpgradeBackupLocation>
  18. </UpgradeBackupLocation>
  19. <OldToolsVersion>3.5</OldToolsVersion>
  20. <PublishUrl>publish\</PublishUrl>
  21. <Install>true</Install>
  22. <InstallFrom>Disk</InstallFrom>
  23. <UpdateEnabled>false</UpdateEnabled>
  24. <UpdateMode>Foreground</UpdateMode>
  25. <UpdateInterval>7</UpdateInterval>
  26. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  27. <UpdatePeriodically>false</UpdatePeriodically>
  28. <UpdateRequired>false</UpdateRequired>
  29. <MapFileExtensions>true</MapFileExtensions>
  30. <ApplicationRevision>0</ApplicationRevision>
  31. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  32. <IsWebBootstrapper>false</IsWebBootstrapper>
  33. <UseApplicationTrust>false</UseApplicationTrust>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. <TargetFrameworkProfile>
  36. </TargetFrameworkProfile>
  37. </PropertyGroup>
  38. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  39. <DebugSymbols>true</DebugSymbols>
  40. <DebugType>portable</DebugType>
  41. <Optimize>false</Optimize>
  42. <OutputPath>..\..\Library\Debug\</OutputPath>
  43. <DefineConstants>TRACE;DEBUG;PATH_NO_SQRT;ClientOnly</DefineConstants>
  44. <ErrorReport>prompt</ErrorReport>
  45. <WarningLevel>4</WarningLevel>
  46. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  47. <RegisterForComInterop>false</RegisterForComInterop>
  48. <DocumentationFile>
  49. </DocumentationFile>
  50. <NoWarn>1591</NoWarn>
  51. <WarningsAsErrors>0612;0108</WarningsAsErrors>
  52. <Prefer32Bit>false</Prefer32Bit>
  53. <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
  54. </PropertyGroup>
  55. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  56. <DebugType>pdbonly</DebugType>
  57. <Optimize>true</Optimize>
  58. <OutputPath>..\..\Library\Release\</OutputPath>
  59. <DefineConstants>TRACE</DefineConstants>
  60. <ErrorReport>prompt</ErrorReport>
  61. <WarningLevel>0</WarningLevel>
  62. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  63. <Prefer32Bit>false</Prefer32Bit>
  64. </PropertyGroup>
  65. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_JSGProfile|AnyCPU'">
  66. <DebugSymbols>true</DebugSymbols>
  67. <OutputPath>bin\Debug_JSGProfile\</OutputPath>
  68. <DefineConstants>TRACE;DEBUG;PATH_NO_SQRT;JSGProfile;ProfileGS</DefineConstants>
  69. <NoWarn>1591</NoWarn>
  70. <DebugType>full</DebugType>
  71. <PlatformTarget>AnyCPU</PlatformTarget>
  72. <WarningsAsErrors>0612;0108</WarningsAsErrors>
  73. <ErrorReport>prompt</ErrorReport>
  74. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  75. <Prefer32Bit>false</Prefer32Bit>
  76. </PropertyGroup>
  77. <ItemGroup>
  78. <Reference Include="CommonLang, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  79. <SpecificVersion>False</SpecificVersion>
  80. <HintPath>..\..\Library\Debug\CommonLang.dll</HintPath>
  81. </Reference>
  82. <Reference Include="System" />
  83. <Reference Include="System.Xml" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <Compile Include="BattleCodec.cs" />
  87. <Compile Include="data\ComData.cs" />
  88. <Compile Include="data\Interface.cs" />
  89. <Compile Include="data\XmdsConstConfig.cs" />
  90. <Compile Include="Disposable.cs" />
  91. <Compile Include="Properties\AssemblyInfo.cs" />
  92. <Compile Include="RTS\Manhattan\IManhattanMap.cs" />
  93. <Compile Include="RTS\Manhattan\RTSManhattan.cs" />
  94. <Compile Include="RTS\Manhattan\RTSManhattan.Map.cs" />
  95. <Compile Include="RTS\Manhattan\RTSManhattan.SpaceDiv.cs" />
  96. <Compile Include="RTS\PathFinder.cs" />
  97. <Compile Include="ZoneClient\Agent\AbstractAgent.cs" />
  98. <Compile Include="ZoneClient\Agent\ActorMoveAgent.cs" />
  99. <Compile Include="ZoneClient\ZoneLayer.cs" />
  100. <Compile Include="ZoneClient\ZoneLayer.Terrain.cs" />
  101. <Compile Include="ZoneClient\ZoneObject.cs" />
  102. <Compile Include="ZoneClient\ZoneObject.Player.cs" />
  103. <Compile Include="ZoneClient\ZoneFlags.cs" />
  104. <Compile Include="ZoneClient\ZoneObject.Unit.cs" />
  105. <Compile Include="ZoneClient\ZoneObject.Unit.Status.cs" />
  106. <Compile Include="ZoneServer\JSGModule\JSGGlobalData.cs" />
  107. <Compile Include="ZoneServer\JSGModule\JSGHackerModule.cs" />
  108. <Compile Include="ZoneServer\JSGModule\JSGSrvData.cs" />
  109. <Compile Include="ZoneServer\JSGModule\MSpaceNodeCache.cs" />
  110. <Compile Include="ZoneServer\JSGModule\JSGModule.cs" />
  111. <Compile Include="ZoneServer\JSGModule\JSGServerProfile.cs" />
  112. <Compile Include="ZoneServer\RoomData\BotRunner\DataTest.cs" />
  113. <Compile Include="ZoneServer\RoomData\BsClient\DataR2B.cs" />
  114. <Compile Include="ZoneServer\RoomData\BsServer\DataC2B.cs" />
  115. <Compile Include="ZoneServer\DataB2R.cs" />
  116. <Compile Include="Zone\EventTrigger\EventAdapter.cs" />
  117. <Compile Include="Zone\EventTrigger\EventData.cs" />
  118. <Compile Include="Zone\Helper\AttackRangeHelper.cs" />
  119. <Compile Include="Zone\Helper\DarmaAOI.cs" />
  120. <Compile Include="Zone\Helper\QuestAdapter.cs" />
  121. <Compile Include="RTS\SpaceDivision.cs" />
  122. <Compile Include="Zone\Helper\SpellChainInfo.cs" />
  123. <Compile Include="Zone\Helper\TeamFormationHelper.cs" />
  124. <Compile Include="Zone\Helper\AOI.cs" />
  125. <Compile Include="Zone\Helper\ZoneManhattanMap.cs" />
  126. <Compile Include="Zone\InstanceZoneFactory.Simple.cs" />
  127. <Compile Include="Zone\Instance\Abilities\Triggers.View.cs" />
  128. <Compile Include="Zone\Instance\Abilities\Triggers.Spawn.cs" />
  129. <Compile Include="Zone\Instance\InstanceBuilding.cs" />
  130. <Compile Include="Zone\Instance\InstanceManual.cs" />
  131. <Compile Include="Zone\Instance\InstanceNature.cs" />
  132. <Compile Include="Zone\Instance\InstanceNpcs.cs" />
  133. <Compile Include="Zone\Instance\InstancePet.cs" />
  134. <Compile Include="Zone\Instance\InstancePlayer.cs" />
  135. <Compile Include="Zone\Instance\InstanceZone.Events.cs" />
  136. <Compile Include="Zone\Instance\UnitTypes.cs" />
  137. <Compile Include="Zone\Interface\PlayerClientObject.cs" />
  138. <Compile Include="Zone\Replay\BattleRecoder.cs" />
  139. <Compile Include="Zone\ZoneEditor\EditorTemplates.cs" />
  140. <Compile Include="Zone\ZoneEditor\EditorData.Vars.cs" />
  141. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.UnitControl.cs" />
  142. <Compile Include="Zone\ZoneEditor\EventTrigger\Quest.Actions.cs" />
  143. <Compile Include="Zone\ZoneEditor\EventTrigger\Quest.Triggers.cs" />
  144. <Compile Include="Zone\ZoneEditor\EventTrigger\Triggers.Items.cs" />
  145. <Compile Include="Zone\ZoneEditor\EventTrigger\Triggers.Events.cs" />
  146. <Compile Include="Zone\ZoneEditor\EventTrigger\Triggers.Units.cs" />
  147. <Compile Include="Zone\ZoneEditor\EventTrigger\Triggers.Flags.cs" />
  148. <Compile Include="Zone\ZoneEditor\EventTrigger\Triggers.Zone.cs" />
  149. <Compile Include="Zone\ZoneEditor\EventTrigger\UnitEnvironment.Values.cs" />
  150. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.Items.cs" />
  151. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.Units.cs" />
  152. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.Flags.cs" />
  153. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.Zone.cs" />
  154. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.Client.cs" />
  155. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.A.cs" />
  156. <Compile Include="Zone\ZoneEditor\EventTrigger\SceneEnvironment.Actions.cs" />
  157. <Compile Include="Zone\ZoneEditor\EventTrigger\SceneEnvironment.Values.cs" />
  158. <Compile Include="Zone\ZoneEditor\EventTrigger\UnitEnvironment.Actions.cs" />
  159. <Compile Include="Zone\ZoneEditor\EventTrigger\Conditions.cs" />
  160. <Compile Include="Zone\ZoneEditor\EventTrigger\Quest.Values.cs" />
  161. <Compile Include="Zone\ZoneEditor\EventTrigger\SpawnTrigger.Values.cs" />
  162. <Compile Include="Zone\ZoneEditor\EventTrigger\LocalVars.Actions.cs" />
  163. <Compile Include="Zone\ZoneEditor\EventTrigger\LocalVars.Values.cs" />
  164. <Compile Include="Zone\ZoneEditor\EventTrigger\LocalVar.cs" />
  165. <Compile Include="Zone\ZoneEditor\EventTrigger\Triggers.A.cs" />
  166. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.A.cs" />
  167. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Fields.Properties.cs" />
  168. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Flags.cs" />
  169. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Items.cs" />
  170. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Positions.cs" />
  171. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Units.cs" />
  172. <Compile Include="Zone\Attributes.cs" />
  173. <Compile Include="ZoneClient\Messages.cs" />
  174. <Compile Include="Zone\Formula\IFormulas.cs" />
  175. <Compile Include="Zone\Helper\DropItem.cs" />
  176. <Compile Include="Zone\Helper\EnvironmentVar.cs" />
  177. <Compile Include="Zone\Helper\HateSystem.cs" />
  178. <Compile Include="Zone\Helper\Helper.cs" />
  179. <Compile Include="Zone\Helper\ObjectCollection.cs" />
  180. <Compile Include="Zone\Helper\UnitActionStatus.cs" />
  181. <Compile Include="Zone\Helper\GameObject.cs" />
  182. <Compile Include="Zone\Instance\InstanceTriggerUnit.cs" />
  183. <Compile Include="Zone\Instance\InstanceUnit.API.cs" />
  184. <Compile Include="Zone\Instance\InstanceUnit.StateMachine.cs" />
  185. <Compile Include="Zone\Helper\Motions.cs" />
  186. <Compile Include="Zone\Instance\InstanceZone.API.cs" />
  187. <Compile Include="Zone\Instance\InstanceZone.Terrain.cs" />
  188. <Compile Include="Zone\Helper\Collider.cs" />
  189. <Compile Include="Zone\Helper\Statistic.cs" />
  190. <Compile Include="Zone\ZoneEditor\EditorData.Abilities.cs" />
  191. <Compile Include="Zone\ZoneEditor\EditorPlugin.cs" />
  192. <Compile Include="Zone\Instance\InstanceItem.cs" />
  193. <Compile Include="Zone\ZoneEditor\EditorScene.cs" />
  194. <Compile Include="Zone\Data.cs" />
  195. <Compile Include="Zone\Messages.cs" />
  196. <Compile Include="Zone\Instance\InstanceFlag.cs" />
  197. <Compile Include="Zone\Instance\InstanceSpell.cs" />
  198. <Compile Include="Zone\Instance\Abilities\Triggers.cs" />
  199. <Compile Include="Zone\Instance\InstanceUnit.cs" />
  200. <Compile Include="Zone\Instance\InstanceZone.cs" />
  201. <Compile Include="Zone\InstanceZoneFactory.cs" />
  202. <Compile Include="Zone\Instance\InstanceZoneObject.cs" />
  203. <Compile Include="Zone\ZoneEditor\EditorDatas.cs" />
  204. <Compile Include="Zone\ZoneEditor\EditorData.Events.cs">
  205. <SubType>Code</SubType>
  206. </Compile>
  207. <Compile Include="Zone\TemplateManager.cs" />
  208. <Compile Include="Zone\Data.UnitTriggers.cs" />
  209. <Compile Include="Zone\ZoneEditor\ISceneDataLoader.cs" />
  210. </ItemGroup>
  211. <ItemGroup>
  212. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  213. <Visible>False</Visible>
  214. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  215. <Install>false</Install>
  216. </BootstrapperPackage>
  217. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  218. <Visible>False</Visible>
  219. <ProductName>.NET Framework 3.5 SP1</ProductName>
  220. <Install>true</Install>
  221. </BootstrapperPackage>
  222. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  223. <Visible>False</Visible>
  224. <ProductName>Windows Installer 3.1</ProductName>
  225. <Install>true</Install>
  226. </BootstrapperPackage>
  227. </ItemGroup>
  228. <ItemGroup>
  229. <Compile Include="Zone\Instance\InstanceUnit.Status.cs" />
  230. </ItemGroup>
  231. <ItemGroup>
  232. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Fields.cs" />
  233. </ItemGroup>
  234. <ItemGroup>
  235. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Templates.cs" />
  236. </ItemGroup>
  237. <ItemGroup>
  238. <Compile Include="Zone\ZoneEditor\EventTrigger\Actions.Manual.cs" />
  239. </ItemGroup>
  240. <ItemGroup>
  241. <Compile Include="ZoneClient\ZoneObject.Spell.cs" />
  242. </ItemGroup>
  243. <ItemGroup>
  244. <Compile Include="ZoneClient\ZoneObject.Item.cs" />
  245. </ItemGroup>
  246. <ItemGroup>
  247. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Int32.cs" />
  248. </ItemGroup>
  249. <ItemGroup>
  250. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.String.cs" />
  251. </ItemGroup>
  252. <ItemGroup>
  253. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Single.cs" />
  254. </ItemGroup>
  255. <ItemGroup>
  256. <Compile Include="Zone\ZoneEditor\EventTrigger\Values.Boolean.cs" />
  257. </ItemGroup>
  258. <ItemGroup>
  259. <Compile Include="Zone\Data.UnitEvents.cs" />
  260. </ItemGroup>
  261. <ItemGroup>
  262. <Compile Include="Zone\Instance\InstanceUnit.Events.cs" />
  263. </ItemGroup>
  264. <ItemGroup>
  265. <Compile Include="ZoneClient\ZoneLayer.Objects.cs" />
  266. </ItemGroup>
  267. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  268. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  269. Other similar extension points exist, see Microsoft.Common.targets.
  270. <Target Name="BeforeBuild">
  271. </Target>
  272. <Target Name="AfterBuild">
  273. </Target>
  274. -->
  275. <PropertyGroup>
  276. <PostBuildEvent>
  277. </PostBuildEvent>
  278. </PropertyGroup>
  279. </Project>