Unity.Controller.csproj 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{E875513C-291C-4378-815E-85D7DFB8C1A9}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Controller</RootNamespace>
  11. <AssemblyName>Controller</AssemblyName>
  12. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile>Unity Full v3.5</TargetFrameworkProfile>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\Temp\UnityVS_bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup>
  34. <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="AsyncBridge.Net35, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b3b1c0202c0d6a87, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\Assets\CSharp 6.0 Support\AsyncTools\Plugins\AsyncBridge.Net35.dll</HintPath>
  40. </Reference>
  41. <Reference Include="System" />
  42. <Reference Include="System.Core" />
  43. <Reference Include="System.Threading, Version=1.0.2856.102, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  44. <SpecificVersion>False</SpecificVersion>
  45. <HintPath>..\Assets\CSharp 6.0 Support\AsyncTools\Plugins\System.Threading.dll</HintPath>
  46. </Reference>
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Xml" />
  50. <Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  51. <SpecificVersion>False</SpecificVersion>
  52. <HintPath>..\Library\UnityAssemblies\UnityEngine.dll</HintPath>
  53. </Reference>
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="BehaviorTree\Root.cs" />
  57. <Compile Include="BehaviorTree\Selector.cs" />
  58. <Compile Include="BehaviorTree\Sequence.cs" />
  59. <Compile Include="BehaviorTree\True.cs" />
  60. <Compile Include="Component\BenchmarkComponentE.cs" />
  61. <Compile Include="Event\InitSceneStartEvent_InitGame.cs" />
  62. <Compile Include="Message\R2C_ServerLogHandler.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="UI\UILogin\Factory\UILoginFactory.cs" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <ProjectReference Include="..\Unity.csproj">
  68. <Project>{cf118143-7e37-744f-be45-3f55345fec40}</Project>
  69. <Name>Unity</Name>
  70. </ProjectReference>
  71. <ProjectReference Include="..\Unity.Plugins.csproj">
  72. <Project>{d1fdb199-0fb7-099d-3771-c6a942e4e326}</Project>
  73. <Name>Unity.Plugins</Name>
  74. </ProjectReference>
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Folder Include="Factory\" />
  78. <Folder Include="Handler\" />
  79. <Folder Include="Helper\" />
  80. <Folder Include="Logic\" />
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <PropertyGroup>
  84. <PostBuildEvent>"$(SolutionDir)\CSharp60Support\Roslyn\pdb2mdb.exe" $(TargetFileName)
  85. echo f | xcopy /y $(TargetDir)$(TargetFileName) $(SolutionDir)Assets\Res\Code\$(TargetFileName).bytes
  86. echo f | xcopy /y $(TargetDir)$(TargetFileName).mdb $(SolutionDir)Assets\Res\Code\$(TargetFileName).mdb.bytes</PostBuildEvent>
  87. </PropertyGroup>
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>