Unity.Hotfix.csproj 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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>{40533600-4E69-4F7D-A924-E1A3B4127255}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Hotfix</RootNamespace>
  11. <AssemblyName>Hotfix</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>true</Optimize>
  21. <OutputPath>..\Temp\UnityVS_bin\Debug\</OutputPath>
  22. <DefineConstants>TRACE;DEBUG;ILRuntime</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>..\Temp\UnityVS_bin\Release\</OutputPath>
  32. <DefineConstants>TRACE;ILRuntime</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Threading, Version=1.0.2856.102, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\Assets\CSharp vNext Support\AsyncTools\Plugins\System.Threading.dll</HintPath>
  43. </Reference>
  44. <Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
  45. <HintPath>C:\Apps\Unity\Editor\Data\Managed\UnityEngine.dll</HintPath>
  46. </Reference>
  47. <Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
  48. <HintPath>C:\Apps\Unity\Editor\Data\UnityExtensions\Unity\GUISystem\UnityEngine.UI.dll</HintPath>
  49. </Reference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Base\Event\EventIdType.cs" />
  53. <Compile Include="Base\Event\IEvent.cs" />
  54. <Compile Include="Base\Helper\ArrayHelper.cs" />
  55. <Compile Include="Base\Helper\AssetBundleHelper.cs" />
  56. <Compile Include="Base\Helper\ExceptionHelper.cs" />
  57. <Compile Include="Base\Helper\JsonHelper.cs" />
  58. <Compile Include="Base\Helper\Log.cs" />
  59. <Compile Include="Base\Object\IStart.cs" />
  60. <Compile Include="Module\FrameSync\OperaComponent.cs" />
  61. <Compile Include="Entity\Config\UnitConfig.cs" />
  62. <Compile Include="Module\FrameSync\TestHotfixSubscribMonoEvent_LogString.cs" />
  63. <Compile Include="Module\FrameSync\Actor_CreateUnitsHandler.cs" />
  64. <Compile Include="Module\FrameSync\Actor_TestHandler.cs" />
  65. <Compile Include="Module\FrameSync\Frame_ClickMapHandler.cs" />
  66. <Compile Include="Module\FrameSync\G2C_TestHotfixHandler.cs" />
  67. <Compile Include="Module\Config\ACategory.cs" />
  68. <Compile Include="Module\Config\IConfig.cs" />
  69. <Compile Include="Module\Config\ConfigComponent.cs" />
  70. <Compile Include="Module\Config\ConfigHelper.cs" />
  71. <Compile Include="Module\Message\IActorMessage.cs" />
  72. <Compile Include="Module\Message\HotfixMessageDispatcher.cs" />
  73. <Compile Include="Module\Message\IMessage.cs" />
  74. <Compile Include="Module\Message\AMHandler.cs" />
  75. <Compile Include="Module\Message\IMHandler.cs" />
  76. <Compile Include="Base\Object\Component.cs" />
  77. <Compile Include="Base\Object\ComponentFactory.cs" />
  78. <Compile Include="Base\Object\Disposer.cs" />
  79. <Compile Include="Base\Object\Entity.cs" />
  80. <Compile Include="Base\Object\EntityType.cs" />
  81. <Compile Include="Base\Object\IAwake.cs" />
  82. <Compile Include="Base\Object\ILateUpdate.cs" />
  83. <Compile Include="Base\Object\ILoad.cs" />
  84. <Compile Include="Base\Object\ISerializeToEntity.cs" />
  85. <Compile Include="Base\Object\IUpdate.cs" />
  86. <Compile Include="Base\Object\Object.cs" />
  87. <Compile Include="Base\Object\EventSystem.cs" />
  88. <Compile Include="Base\Object\ObjectPool.cs" />
  89. <Compile Include="Module\Message\SessionWrapComponent.cs" />
  90. <Compile Include="Module\Message\SessionWrap.cs" />
  91. <Compile Include="Module\UI\IUIFactory.cs" />
  92. <Compile Include="Module\Message\MessageDispatherComponent.cs" />
  93. <Compile Include="Module\Message\OpcodeTypeComponent.cs" />
  94. <Compile Include="Module\UI\UIComponent.cs" />
  95. <Compile Include="Entity\Game.cs" />
  96. <Compile Include="Entity\Scene.cs" />
  97. <Compile Include="Module\Message\HotfixMessage.cs" />
  98. <Compile Include="Module\UI\UI.cs" />
  99. <Compile Include="Init.cs" />
  100. <Compile Include="Module\Message\HotfixOpcode.cs" />
  101. <Compile Include="Module\UI\UIType.cs" />
  102. <Compile Include="Properties\AssemblyInfo.cs" />
  103. <Compile Include="UI\UILobby\Component\UILobbyComponent.cs" />
  104. <Compile Include="UI\UILobby\Factory\UILobbyFactory.cs" />
  105. <Compile Include="UI\UILogin\Component\UILoginComponent.cs" />
  106. <Compile Include="UI\UILogin\Event\InitSceneStart_CreateLoginUI.cs" />
  107. <Compile Include="UI\UILogin\Factory\UILoginFactory.cs" />
  108. </ItemGroup>
  109. <ItemGroup />
  110. <ItemGroup>
  111. <ProjectReference Include="..\Unity.csproj">
  112. <Project>{cf118143-7e37-744f-be45-3f55345fec40}</Project>
  113. <Name>Unity</Name>
  114. </ProjectReference>
  115. <ProjectReference Include="..\Unity.Plugins.csproj">
  116. <Project>{d1fdb199-0fb7-099d-3771-c6a942e4e326}</Project>
  117. <Name>Unity.Plugins</Name>
  118. </ProjectReference>
  119. </ItemGroup>
  120. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  121. <PropertyGroup>
  122. <PostBuildEvent>"$(ProjectDir)\..\Tools\pdb2mdb.exe" $(TargetFileName)</PostBuildEvent>
  123. </PropertyGroup>
  124. <Target Name="BeforeBuild">
  125. </Target>
  126. <Target Name="AfterBuild">
  127. <Copy SourceFiles="$(OutDir)$(TargetName).dll" DestinationFiles="$(ProjectDir)/../Assets/Res/Code/$(TargetName).dll.bytes" />
  128. <Copy SourceFiles="$(OutDir)$(TargetName).pdb" DestinationFiles="$(ProjectDir)/../Assets/Res/Code/$(TargetName).pdb.bytes" />
  129. <Copy SourceFiles="$(OutDir)$(TargetName).dll.mdb" DestinationFiles="$(ProjectDir)/../Assets/Res/Code/$(TargetName).mdb.bytes" />
  130. </Target>
  131. </Project>