Unity.Hotfix.csproj 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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>false</Optimize>
  21. <OutputPath>..\Temp\UnityVS_bin\Debug\</OutputPath>
  22. <DefineConstants>TRACE;DEBUG</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>false</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="Assembly-CSharp">
  39. <HintPath>..\Library\ScriptAssemblies\Assembly-CSharp.dll</HintPath>
  40. </Reference>
  41. <Reference Include="Assembly-CSharp-firstpass">
  42. <HintPath>..\Library\ScriptAssemblies\Assembly-CSharp-firstpass.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. <Reference Include="System.Core" />
  46. <Reference Include="System.Threading, Version=1.0.2856.102, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>..\Assets\CSharp vNext Support\AsyncTools\Plugins\System.Threading.dll</HintPath>
  49. </Reference>
  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. <Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  55. <SpecificVersion>False</SpecificVersion>
  56. <HintPath>..\Library\UnityAssemblies\UnityEngine.UI.dll</HintPath>
  57. </Reference>
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="Base\Event\IEvent.cs" />
  61. <Compile Include="Base\Helper\ArrayHelper.cs" />
  62. <Compile Include="Base\Helper\AssetBundleHelper.cs" />
  63. <Compile Include="Base\Helper\ExceptionHelper.cs" />
  64. <Compile Include="Base\Message\AMHandler.cs" />
  65. <Compile Include="Base\Message\IMHandler.cs" />
  66. <Compile Include="Base\Object\Component.cs" />
  67. <Compile Include="Base\Object\ComponentDB.cs" />
  68. <Compile Include="Base\Object\ComponentFactory.cs" />
  69. <Compile Include="Base\Object\Disposer.cs" />
  70. <Compile Include="Base\Object\Entity.cs" />
  71. <Compile Include="Base\Object\EntityFactory.cs" />
  72. <Compile Include="Base\Object\EntityType.cs" />
  73. <Compile Include="Base\Object\IAwake.cs" />
  74. <Compile Include="Base\Object\ILateUpdate.cs" />
  75. <Compile Include="Base\Object\ILoad.cs" />
  76. <Compile Include="Base\Object\IUpdate.cs" />
  77. <Compile Include="Base\Object\Object.cs" />
  78. <Compile Include="Base\Object\ObjectEvents.cs" />
  79. <Compile Include="Base\Object\ObjectPool.cs" />
  80. <Compile Include="Base\Other\IUIFactory.cs" />
  81. <Compile Include="Component\GameObjectComponent.cs" />
  82. <Compile Include="Component\KVComponent.cs" />
  83. <Compile Include="Component\MessageDispatherComponent.cs" />
  84. <Compile Include="Component\TimeComponent.cs" />
  85. <Compile Include="Component\TimerComponent.cs" />
  86. <Compile Include="Component\UIComponent.cs" />
  87. <Compile Include="Entity\Hotfix.cs" />
  88. <Compile Include="Entity\Scene.cs" />
  89. <Compile Include="Entity\UI.cs" />
  90. <Compile Include="Event\SessionRecvMessage_Dispatch.cs" />
  91. <Compile Include="Init.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. <Compile Include="UI\UILobby\Component\UILobbyComponent.cs" />
  94. <Compile Include="UI\UILobby\Factory\UILobbyFactory.cs" />
  95. <Compile Include="UI\UILogin\Component\UILoginComponent.cs" />
  96. <Compile Include="UI\UILogin\Event\InitSceneStart_CreateLoginUI.cs" />
  97. <Compile Include="UI\UILogin\Factory\UILoginFactory.cs" />
  98. </ItemGroup>
  99. <ItemGroup>
  100. <Folder Include="Handler\" />
  101. </ItemGroup>
  102. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  103. <PropertyGroup>
  104. <PostBuildEvent>"$(ProjectDir)\..\Tools\pdb2mdb.exe" $(TargetFileName)</PostBuildEvent>
  105. </PropertyGroup>
  106. <Target Name="BeforeBuild">
  107. </Target>
  108. <Target Name="AfterBuild">
  109. <Copy SourceFiles="$(OutDir)$(TargetName).dll" DestinationFiles="$(ProjectDir)/../Assets/Res/Code/$(TargetName).dll.bytes" />
  110. <Copy SourceFiles="$(OutDir)$(TargetName).pdb" DestinationFiles="$(ProjectDir)/../Assets/Res/Code/$(TargetName).pdb.bytes" />
  111. <Copy SourceFiles="$(OutDir)$(TargetName).dll.mdb" DestinationFiles="$(ProjectDir)/../Assets/Res/Code/$(TargetName).mdb.bytes" />
  112. </Target>
  113. </Project>