Unity.Hotfix.csproj 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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.1</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>false</Optimize>
  21. <OutputPath>..\Temp\UnityVS_bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</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>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</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="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="System.Data" />
  47. <Reference Include="System.Xml" />
  48. <Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>..\Library\UnityAssemblies\UnityEngine.dll</HintPath>
  51. </Reference>
  52. <Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>..\Library\UnityAssemblies\UnityEngine.UI.dll</HintPath>
  55. </Reference>
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="Helper\JsonHelper.cs" />
  59. <Compile Include="Init.cs" />
  60. <Compile Include="LitJson\IJsonWrapper.cs" />
  61. <Compile Include="LitJson\JsonData.cs" />
  62. <Compile Include="LitJson\JsonException.cs" />
  63. <Compile Include="LitJson\JsonMapper.cs" />
  64. <Compile Include="LitJson\JsonMockWrapper.cs" />
  65. <Compile Include="LitJson\JsonReader.cs" />
  66. <Compile Include="LitJson\JsonWriter.cs" />
  67. <Compile Include="LitJson\Lexer.cs" />
  68. <Compile Include="LitJson\ParserToken.cs" />
  69. <Compile Include="AssetBundleHelper.cs" />
  70. <Compile Include="Component\ConfigComponent.cs" />
  71. <Compile Include="Component\EventComponent.cs" />
  72. <Compile Include="Component\GameObjectComponent.cs" />
  73. <Compile Include="Component\KVComponent.cs" />
  74. <Compile Include="Component\RobotComponent.cs" />
  75. <Compile Include="Component\TimeComponent.cs" />
  76. <Compile Include="Component\TimerComponent.cs" />
  77. <Compile Include="Component\UIComponent.cs" />
  78. <Compile Include="Object\IAwake.cs" />
  79. <Compile Include="Object\ILoad.cs" />
  80. <Compile Include="Object\IUpdate.cs" />
  81. <Compile Include="UI\UILobby\Component\UILobbyComponent.cs" />
  82. <Compile Include="Component\UnitComponent.cs" />
  83. <Compile Include="Handler\R2C_ServerLogHandler.cs" />
  84. <Compile Include="Entity\Hotfix.cs" />
  85. <Compile Include="Entity\Scene.cs" />
  86. <Compile Include="Entity\UI.cs" />
  87. <Compile Include="Entity\Unit.cs" />
  88. <Compile Include="Event\AEventAttribute.cs" />
  89. <Compile Include="Event\Env.cs" />
  90. <Compile Include="Event\EnvKey.cs" />
  91. <Compile Include="Event\EventAttribute.cs" />
  92. <Compile Include="Event\EventIdType.cs" />
  93. <Compile Include="Event\IEvent.cs" />
  94. <Compile Include="Object\Component.cs" />
  95. <Compile Include="Object\Disposer.cs" />
  96. <Compile Include="Object\Entity.cs" />
  97. <Compile Include="Object\ObjectEventAttribute.cs" />
  98. <Compile Include="Object\ObjectEvents.cs" />
  99. <Compile Include="Object\EntityType.cs" />
  100. <Compile Include="Object\Object.cs" />
  101. <Compile Include="Other\EntityEventId.cs" />
  102. <Compile Include="Other\IUIFactory.cs" />
  103. <Compile Include="Other\LayerNames.cs" />
  104. <Compile Include="Other\UIFactoryAttribute.cs" />
  105. <Compile Include="Other\UIType.cs" />
  106. <Compile Include="UI\UILobby\Event\InitSceneStart_CreateLobbyUI.cs" />
  107. <Compile Include="Properties\AssemblyInfo.cs" />
  108. <Compile Include="UI\UILobby\Factory\UILobbyFactory.cs" />
  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. <ItemGroup />
  121. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  122. <PropertyGroup>
  123. <PostBuildEvent>echo FA | xcopy $(TargetName).dll $(SolutionDir)Assets\Res\Code\$(TargetName).dll.bytes
  124. echo FA | xcopy $(TargetName).pdb $(SolutionDir)Assets\Res\Code\$(TargetName).pdb.bytes</PostBuildEvent>
  125. </PropertyGroup>
  126. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  127. Other similar extension points exist, see Microsoft.Common.targets.
  128. <Target Name="BeforeBuild">
  129. </Target>
  130. <Target Name="AfterBuild">
  131. </Target>
  132. -->
  133. </Project>