CP.Admin.csproj 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
  4. <Import Project="..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props')" />
  5. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  6. <PropertyGroup>
  7. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  9. <ProductVersion>
  10. </ProductVersion>
  11. <SchemaVersion>2.0</SchemaVersion>
  12. <ProjectGuid>{4EECC84F-8EBC-423A-BB37-E00E24D7037F}</ProjectGuid>
  13. <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  14. <OutputType>Library</OutputType>
  15. <AppDesignerFolder>Properties</AppDesignerFolder>
  16. <RootNamespace>CP.Admin</RootNamespace>
  17. <AssemblyName>CP.Admin</AssemblyName>
  18. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  19. <MvcBuildViews>false</MvcBuildViews>
  20. <UseIISExpress>true</UseIISExpress>
  21. <Use64BitIISExpress />
  22. <IISExpressSSLPort />
  23. <IISExpressAnonymousAuthentication />
  24. <IISExpressWindowsAuthentication />
  25. <IISExpressUseClassicPipelineMode />
  26. <UseGlobalApplicationHostFile />
  27. <WebGreaseLibPath>..\packages\WebGrease.1.5.2\lib</WebGreaseLibPath>
  28. <NuGetPackageImportStamp>
  29. </NuGetPackageImportStamp>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  32. <DebugSymbols>true</DebugSymbols>
  33. <DebugType>full</DebugType>
  34. <Optimize>false</Optimize>
  35. <OutputPath>bin\</OutputPath>
  36. <DefineConstants>DEBUG;TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  41. <DebugSymbols>true</DebugSymbols>
  42. <DebugType>pdbonly</DebugType>
  43. <Optimize>true</Optimize>
  44. <OutputPath>bin\</OutputPath>
  45. <DefineConstants>TRACE</DefineConstants>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  51. <HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
  52. </Reference>
  53. <Reference Include="MC.ORM, Version=1.0.0.27457, Culture=neutral, PublicKeyToken=null">
  54. <HintPath>..\dll\MC.ORM.dll</HintPath>
  55. </Reference>
  56. <Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  57. <HintPath>..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
  58. </Reference>
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="NIU.Core">
  61. <HintPath>..\dll\NIU.Core.dll</HintPath>
  62. </Reference>
  63. <Reference Include="NIU.Forum.Common">
  64. <HintPath>..\dll\NIU.Forum.Common.dll</HintPath>
  65. </Reference>
  66. <Reference Include="System" />
  67. <Reference Include="System.Data" />
  68. <Reference Include="System.Drawing" />
  69. <Reference Include="System.Web.DynamicData" />
  70. <Reference Include="System.Web.Entity" />
  71. <Reference Include="System.Web.ApplicationServices" />
  72. <Reference Include="System.ComponentModel.DataAnnotations" />
  73. <Reference Include="System.Core" />
  74. <Reference Include="System.Data.DataSetExtensions" />
  75. <Reference Include="System.Xml.Linq" />
  76. <Reference Include="System.Web" />
  77. <Reference Include="System.Web.Extensions" />
  78. <Reference Include="System.Web.Abstractions" />
  79. <Reference Include="System.Web.Routing" />
  80. <Reference Include="System.Xml" />
  81. <Reference Include="System.Configuration" />
  82. <Reference Include="System.Web.Services" />
  83. <Reference Include="System.EnterpriseServices" />
  84. <Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  85. <Private>True</Private>
  86. <HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
  87. </Reference>
  88. <Reference Include="System.Net.Http">
  89. </Reference>
  90. <Reference Include="System.Net.Http.WebRequest">
  91. </Reference>
  92. <Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  93. <Private>True</Private>
  94. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
  95. </Reference>
  96. <Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  97. <Private>True</Private>
  98. <HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
  99. </Reference>
  100. <Reference Include="System.Web.Optimization">
  101. <HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll</HintPath>
  102. </Reference>
  103. <Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  104. <Private>True</Private>
  105. <HintPath>..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
  106. </Reference>
  107. <Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  108. <Private>True</Private>
  109. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
  110. </Reference>
  111. <Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  112. <Private>True</Private>
  113. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
  114. </Reference>
  115. <Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  116. <Private>True</Private>
  117. <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
  118. </Reference>
  119. <Reference Include="WebGrease">
  120. <Private>True</Private>
  121. <HintPath>..\packages\WebGrease.1.5.2\lib\WebGrease.dll</HintPath>
  122. </Reference>
  123. <Reference Include="Antlr3.Runtime">
  124. <Private>True</Private>
  125. <HintPath>..\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll</HintPath>
  126. </Reference>
  127. </ItemGroup>
  128. <ItemGroup>
  129. <Reference Include="Newtonsoft.Json">
  130. <HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
  131. </Reference>
  132. <Reference Include="Microsoft.ApplicationInsights">
  133. <HintPath>..\packages\Microsoft.ApplicationInsights.2.2.0\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
  134. </Reference>
  135. <Reference Include="Microsoft.AI.Agent.Intercept">
  136. <HintPath>..\packages\Microsoft.ApplicationInsights.Agent.Intercept.2.0.6\lib\net45\Microsoft.AI.Agent.Intercept.dll</HintPath>
  137. </Reference>
  138. <Reference Include="Microsoft.AI.DependencyCollector">
  139. <HintPath>..\packages\Microsoft.ApplicationInsights.DependencyCollector.2.2.0\lib\net45\Microsoft.AI.DependencyCollector.dll</HintPath>
  140. </Reference>
  141. <Reference Include="Microsoft.AI.PerfCounterCollector">
  142. <HintPath>..\packages\Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0\lib\net45\Microsoft.AI.PerfCounterCollector.dll</HintPath>
  143. </Reference>
  144. <Reference Include="Microsoft.AI.ServerTelemetryChannel">
  145. <HintPath>..\packages\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0\lib\net45\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>
  146. </Reference>
  147. <Reference Include="Microsoft.AI.WindowsServer">
  148. <HintPath>..\packages\Microsoft.ApplicationInsights.WindowsServer.2.2.0\lib\net45\Microsoft.AI.WindowsServer.dll</HintPath>
  149. </Reference>
  150. <Reference Include="Microsoft.AI.Web">
  151. <HintPath>..\packages\Microsoft.ApplicationInsights.Web.2.2.0\lib\net45\Microsoft.AI.Web.dll</HintPath>
  152. </Reference>
  153. </ItemGroup>
  154. <ItemGroup>
  155. <Compile Include="App_Start\BundleConfig.cs" />
  156. <Compile Include="App_Start\FilterConfig.cs" />
  157. <Compile Include="App_Start\RouteConfig.cs" />
  158. <Compile Include="Content\UEditor\net\App_Code\Config.cs" />
  159. <Compile Include="Content\UEditor\net\App_Code\ConfigHandler.cs" />
  160. <Compile Include="Content\UEditor\net\App_Code\CrawlerHandler.cs" />
  161. <Compile Include="Content\UEditor\net\App_Code\Handler.cs" />
  162. <Compile Include="Content\UEditor\net\App_Code\ListFileHandler.cs" />
  163. <Compile Include="Content\UEditor\net\App_Code\NotSupportedHandler.cs" />
  164. <Compile Include="Content\UEditor\net\App_Code\PathFormater.cs" />
  165. <Compile Include="Content\UEditor\net\App_Code\UploadHandler.cs" />
  166. <Compile Include="Controllers\AdminBaseController.cs" />
  167. <Compile Include="Controllers\AreaController.cs" />
  168. <Compile Include="Controllers\CzLinkController.cs" />
  169. <Compile Include="Controllers\FcqlcNumController.cs" />
  170. <Compile Include="Controllers\TcdltNumController.cs" />
  171. <Compile Include="Controllers\FcsdNumController.cs" />
  172. <Compile Include="Controllers\FcssqNumController.cs" />
  173. <Compile Include="Controllers\HomeController.cs" />
  174. <Compile Include="Controllers\KjhTdkController.cs" />
  175. <Compile Include="Controllers\KsjihController.cs" />
  176. <Compile Include="Controllers\LoginController.cs" />
  177. <Compile Include="Controllers\NoticeController.cs" />
  178. <Compile Include="Controllers\SysLogController.cs" />
  179. <Compile Include="Controllers\Tcp3NumController.cs" />
  180. <Compile Include="Controllers\TcqxcNumController.cs" />
  181. <Compile Include="Controllers\UserController.cs" />
  182. <Compile Include="Controllers\UtilController.cs" />
  183. <Compile Include="Global.asax.cs">
  184. <DependentUpon>Global.asax</DependentUpon>
  185. </Compile>
  186. <Compile Include="Helper\My97DatePicker.cs" />
  187. <Compile Include="Models\CzViewHelp.cs" />
  188. <Compile Include="Models\Pager.cs" />
  189. <Compile Include="Models\TcdltInfoModel.cs" />
  190. <Compile Include="Models\Tcp3InfoModel.cs" />
  191. <Compile Include="Models\TcqxcInfoModel.cs" />
  192. <Compile Include="Properties\AssemblyInfo.cs" />
  193. </ItemGroup>
  194. <ItemGroup>
  195. <Content Include="Config\LotteryCode.xml" />
  196. <Content Include="Content\bootstrap-theme.css" />
  197. <Content Include="Content\bootstrap-theme.min.css" />
  198. <Content Include="Content\bootstrap.css" />
  199. <Content Include="Content\bootstrap.min.css" />
  200. <Content Include="Content\My97DatePicker\calendar.js" />
  201. <Content Include="Content\My97DatePicker\lang\en.js" />
  202. <Content Include="Content\My97DatePicker\lang\zh-cn.js" />
  203. <Content Include="Content\My97DatePicker\lang\zh-tw.js" />
  204. <Content Include="Content\My97DatePicker\skin\datePicker.gif" />
  205. <Content Include="Content\My97DatePicker\skin\default\datepicker.css" />
  206. <Content Include="Content\My97DatePicker\skin\default\img.gif" />
  207. <Content Include="Content\My97DatePicker\skin\WdatePicker.css" />
  208. <Content Include="Content\My97DatePicker\skin\whyGreen\bg.jpg" />
  209. <Content Include="Content\My97DatePicker\skin\whyGreen\datepicker.css" />
  210. <Content Include="Content\My97DatePicker\skin\whyGreen\img.gif" />
  211. <Content Include="Content\My97DatePicker\WdatePicker.js" />
  212. <Content Include="Content\My97DatePicker\开发包\lang\en.js" />
  213. <Content Include="Content\My97DatePicker\开发包\lang\zh-cn.js" />
  214. <Content Include="Content\My97DatePicker\开发包\lang\zh-tw.js" />
  215. <Content Include="Content\My97DatePicker\开发包\readme.txt" />
  216. <Content Include="Content\My97DatePicker\开发包\skin\datePicker.gif" />
  217. <Content Include="Content\My97DatePicker\开发包\skin\default\datepicker.css" />
  218. <Content Include="Content\My97DatePicker\开发包\skin\default\img.gif" />
  219. <Content Include="Content\My97DatePicker\开发包\skin\WdatePicker.css" />
  220. <Content Include="Content\My97DatePicker\开发包\skin\whyGreen\bg.jpg" />
  221. <Content Include="Content\My97DatePicker\开发包\skin\whyGreen\datepicker.css" />
  222. <Content Include="Content\My97DatePicker\开发包\skin\whyGreen\img.gif" />
  223. <Content Include="Content\simditor\css\simditor.css" />
  224. <Content Include="Content\simditor\js\hotkeys.js" />
  225. <Content Include="Content\simditor\js\hotkeys.min.js" />
  226. <Content Include="Content\simditor\js\module.js" />
  227. <Content Include="Content\simditor\js\module.min.js" />
  228. <Content Include="Content\simditor\js\simditor.js" />
  229. <Content Include="Content\simditor\js\simditor.min.js" />
  230. <Content Include="Content\simditor\js\uploader.js" />
  231. <Content Include="Content\simditor\js\uploader.min.js" />
  232. <Content Include="Content\UEditor\dialogs\anchor\anchor.html" />
  233. <Content Include="Content\UEditor\dialogs\attachment\attachment.css" />
  234. <Content Include="Content\UEditor\dialogs\attachment\attachment.html" />
  235. <Content Include="Content\UEditor\dialogs\attachment\attachment.js" />
  236. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_chm.gif" />
  237. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_default.png" />
  238. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_doc.gif" />
  239. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_exe.gif" />
  240. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_jpg.gif" />
  241. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_mp3.gif" />
  242. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_mv.gif" />
  243. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_pdf.gif" />
  244. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_ppt.gif" />
  245. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_psd.gif" />
  246. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_rar.gif" />
  247. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_txt.gif" />
  248. <Content Include="Content\UEditor\dialogs\attachment\fileTypeImages\icon_xls.gif" />
  249. <Content Include="Content\UEditor\dialogs\attachment\images\alignicon.gif" />
  250. <Content Include="Content\UEditor\dialogs\attachment\images\alignicon.png" />
  251. <Content Include="Content\UEditor\dialogs\attachment\images\bg.png" />
  252. <Content Include="Content\UEditor\dialogs\attachment\images\file-icons.gif" />
  253. <Content Include="Content\UEditor\dialogs\attachment\images\file-icons.png" />
  254. <Content Include="Content\UEditor\dialogs\attachment\images\icons.gif" />
  255. <Content Include="Content\UEditor\dialogs\attachment\images\icons.png" />
  256. <Content Include="Content\UEditor\dialogs\attachment\images\image.png" />
  257. <Content Include="Content\UEditor\dialogs\attachment\images\progress.png" />
  258. <Content Include="Content\UEditor\dialogs\attachment\images\success.gif" />
  259. <Content Include="Content\UEditor\dialogs\attachment\images\success.png" />
  260. <Content Include="Content\UEditor\dialogs\background\background.css" />
  261. <Content Include="Content\UEditor\dialogs\background\background.html" />
  262. <Content Include="Content\UEditor\dialogs\background\background.js" />
  263. <Content Include="Content\UEditor\dialogs\background\images\bg.png" />
  264. <Content Include="Content\UEditor\dialogs\background\images\success.png" />
  265. <Content Include="Content\UEditor\dialogs\charts\chart.config.js" />
  266. <Content Include="Content\UEditor\dialogs\charts\charts.css" />
  267. <Content Include="Content\UEditor\dialogs\charts\charts.html" />
  268. <Content Include="Content\UEditor\dialogs\charts\charts.js" />
  269. <Content Include="Content\UEditor\dialogs\charts\images\charts0.png" />
  270. <Content Include="Content\UEditor\dialogs\charts\images\charts1.png" />
  271. <Content Include="Content\UEditor\dialogs\charts\images\charts2.png" />
  272. <Content Include="Content\UEditor\dialogs\charts\images\charts3.png" />
  273. <Content Include="Content\UEditor\dialogs\charts\images\charts4.png" />
  274. <Content Include="Content\UEditor\dialogs\charts\images\charts5.png" />
  275. <Content Include="Content\UEditor\dialogs\emotion\emotion.css" />
  276. <Content Include="Content\UEditor\dialogs\emotion\emotion.html" />
  277. <Content Include="Content\UEditor\dialogs\emotion\emotion.js" />
  278. <Content Include="Content\UEditor\dialogs\emotion\images\0.gif" />
  279. <Content Include="Content\UEditor\dialogs\emotion\images\bface.gif" />
  280. <Content Include="Content\UEditor\dialogs\emotion\images\cface.gif" />
  281. <Content Include="Content\UEditor\dialogs\emotion\images\fface.gif" />
  282. <Content Include="Content\UEditor\dialogs\emotion\images\jxface2.gif" />
  283. <Content Include="Content\UEditor\dialogs\emotion\images\neweditor-tab-bg.png" />
  284. <Content Include="Content\UEditor\dialogs\emotion\images\tface.gif" />
  285. <Content Include="Content\UEditor\dialogs\emotion\images\wface.gif" />
  286. <Content Include="Content\UEditor\dialogs\emotion\images\yface.gif" />
  287. <Content Include="Content\UEditor\dialogs\gmap\gmap.html" />
  288. <Content Include="Content\UEditor\dialogs\help\help.css" />
  289. <Content Include="Content\UEditor\dialogs\help\help.html" />
  290. <Content Include="Content\UEditor\dialogs\help\help.js" />
  291. <Content Include="Content\UEditor\dialogs\image\image.css" />
  292. <Content Include="Content\UEditor\dialogs\image\image.html" />
  293. <Content Include="Content\UEditor\dialogs\image\image.js" />
  294. <Content Include="Content\UEditor\dialogs\image\images\alignicon.jpg" />
  295. <Content Include="Content\UEditor\dialogs\image\images\bg.png" />
  296. <Content Include="Content\UEditor\dialogs\image\images\icons.gif" />
  297. <Content Include="Content\UEditor\dialogs\image\images\icons.png" />
  298. <Content Include="Content\UEditor\dialogs\image\images\image.png" />
  299. <Content Include="Content\UEditor\dialogs\image\images\progress.png" />
  300. <Content Include="Content\UEditor\dialogs\image\images\success.gif" />
  301. <Content Include="Content\UEditor\dialogs\image\images\success.png" />
  302. <Content Include="Content\UEditor\dialogs\insertframe\insertframe.html" />
  303. <Content Include="Content\UEditor\dialogs\internal.js" />
  304. <Content Include="Content\UEditor\dialogs\link\link.html" />
  305. <Content Include="Content\UEditor\dialogs\map\map.html" />
  306. <Content Include="Content\UEditor\dialogs\map\show.html" />
  307. <Content Include="Content\UEditor\dialogs\music\music.css" />
  308. <Content Include="Content\UEditor\dialogs\music\music.html" />
  309. <Content Include="Content\UEditor\dialogs\music\music.js" />
  310. <Content Include="Content\UEditor\dialogs\preview\preview.html" />
  311. <Content Include="Content\UEditor\dialogs\scrawl\images\addimg.png" />
  312. <Content Include="Content\UEditor\dialogs\scrawl\images\brush.png" />
  313. <Content Include="Content\UEditor\dialogs\scrawl\images\delimg.png" />
  314. <Content Include="Content\UEditor\dialogs\scrawl\images\delimgH.png" />
  315. <Content Include="Content\UEditor\dialogs\scrawl\images\empty.png" />
  316. <Content Include="Content\UEditor\dialogs\scrawl\images\emptyH.png" />
  317. <Content Include="Content\UEditor\dialogs\scrawl\images\eraser.png" />
  318. <Content Include="Content\UEditor\dialogs\scrawl\images\redo.png" />
  319. <Content Include="Content\UEditor\dialogs\scrawl\images\redoH.png" />
  320. <Content Include="Content\UEditor\dialogs\scrawl\images\scale.png" />
  321. <Content Include="Content\UEditor\dialogs\scrawl\images\scaleH.png" />
  322. <Content Include="Content\UEditor\dialogs\scrawl\images\size.png" />
  323. <Content Include="Content\UEditor\dialogs\scrawl\images\undo.png" />
  324. <Content Include="Content\UEditor\dialogs\scrawl\images\undoH.png" />
  325. <Content Include="Content\UEditor\dialogs\scrawl\scrawl.css" />
  326. <Content Include="Content\UEditor\dialogs\scrawl\scrawl.html" />
  327. <Content Include="Content\UEditor\dialogs\scrawl\scrawl.js" />
  328. <Content Include="Content\UEditor\dialogs\searchreplace\searchreplace.html" />
  329. <Content Include="Content\UEditor\dialogs\searchreplace\searchreplace.js" />
  330. <Content Include="Content\UEditor\dialogs\snapscreen\snapscreen.html" />
  331. <Content Include="Content\UEditor\dialogs\spechars\spechars.html" />
  332. <Content Include="Content\UEditor\dialogs\spechars\spechars.js" />
  333. <Content Include="Content\UEditor\dialogs\table\dragicon.png" />
  334. <Content Include="Content\UEditor\dialogs\table\edittable.css" />
  335. <Content Include="Content\UEditor\dialogs\table\edittable.html" />
  336. <Content Include="Content\UEditor\dialogs\table\edittable.js" />
  337. <Content Include="Content\UEditor\dialogs\table\edittd.html" />
  338. <Content Include="Content\UEditor\dialogs\table\edittip.html" />
  339. <Content Include="Content\UEditor\dialogs\template\config.js" />
  340. <Content Include="Content\UEditor\dialogs\template\images\bg.gif" />
  341. <Content Include="Content\UEditor\dialogs\template\images\pre0.png" />
  342. <Content Include="Content\UEditor\dialogs\template\images\pre1.png" />
  343. <Content Include="Content\UEditor\dialogs\template\images\pre2.png" />
  344. <Content Include="Content\UEditor\dialogs\template\images\pre3.png" />
  345. <Content Include="Content\UEditor\dialogs\template\images\pre4.png" />
  346. <Content Include="Content\UEditor\dialogs\template\template.css" />
  347. <Content Include="Content\UEditor\dialogs\template\template.html" />
  348. <Content Include="Content\UEditor\dialogs\template\template.js" />
  349. <Content Include="Content\UEditor\dialogs\video\images\bg.png" />
  350. <Content Include="Content\UEditor\dialogs\video\images\center_focus.jpg" />
  351. <Content Include="Content\UEditor\dialogs\video\images\file-icons.gif" />
  352. <Content Include="Content\UEditor\dialogs\video\images\file-icons.png" />
  353. <Content Include="Content\UEditor\dialogs\video\images\icons.gif" />
  354. <Content Include="Content\UEditor\dialogs\video\images\icons.png" />
  355. <Content Include="Content\UEditor\dialogs\video\images\image.png" />
  356. <Content Include="Content\UEditor\dialogs\video\images\left_focus.jpg" />
  357. <Content Include="Content\UEditor\dialogs\video\images\none_focus.jpg" />
  358. <Content Include="Content\UEditor\dialogs\video\images\progress.png" />
  359. <Content Include="Content\UEditor\dialogs\video\images\right_focus.jpg" />
  360. <Content Include="Content\UEditor\dialogs\video\images\success.gif" />
  361. <Content Include="Content\UEditor\dialogs\video\images\success.png" />
  362. <Content Include="Content\UEditor\dialogs\video\video.css" />
  363. <Content Include="Content\UEditor\dialogs\video\video.html" />
  364. <Content Include="Content\UEditor\dialogs\video\video.js" />
  365. <Content Include="Content\UEditor\dialogs\webapp\webapp.html" />
  366. <Content Include="Content\UEditor\dialogs\wordimage\fClipboard_ueditor.swf" />
  367. <Content Include="Content\UEditor\dialogs\wordimage\imageUploader.swf" />
  368. <Content Include="Content\UEditor\dialogs\wordimage\tangram.js" />
  369. <Content Include="Content\UEditor\dialogs\wordimage\wordimage.html" />
  370. <Content Include="Content\UEditor\dialogs\wordimage\wordimage.js" />
  371. <Content Include="Content\UEditor\lang\zh-cn\images\copy.png" />
  372. <Content Include="Content\UEditor\lang\zh-cn\images\localimage.png" />
  373. <Content Include="Content\UEditor\lang\zh-cn\images\music.png" />
  374. <Content Include="Content\UEditor\lang\zh-cn\images\upload.png" />
  375. <Content Include="Content\UEditor\lang\zh-cn\zh-cn.js" />
  376. <Content Include="Content\UEditor\net\net.sln" />
  377. <Content Include="Content\UEditor\net\upload\image\20160115\6358845149910013588890891.jpg" />
  378. <Content Include="Content\UEditor\themes\default\css\ueditor.css" />
  379. <Content Include="Content\UEditor\themes\default\css\ueditor.min.css" />
  380. <Content Include="Content\UEditor\themes\default\dialogbase.css" />
  381. <Content Include="Content\UEditor\themes\default\images\anchor.gif" />
  382. <Content Include="Content\UEditor\themes\default\images\arrow.png" />
  383. <Content Include="Content\UEditor\themes\default\images\arrow_down.png" />
  384. <Content Include="Content\UEditor\themes\default\images\arrow_up.png" />
  385. <Content Include="Content\UEditor\themes\default\images\button-bg.gif" />
  386. <Content Include="Content\UEditor\themes\default\images\cancelbutton.gif" />
  387. <Content Include="Content\UEditor\themes\default\images\charts.png" />
  388. <Content Include="Content\UEditor\themes\default\images\cursor_h.gif" />
  389. <Content Include="Content\UEditor\themes\default\images\cursor_h.png" />
  390. <Content Include="Content\UEditor\themes\default\images\cursor_v.gif" />
  391. <Content Include="Content\UEditor\themes\default\images\cursor_v.png" />
  392. <Content Include="Content\UEditor\themes\default\images\dialog-title-bg.png" />
  393. <Content Include="Content\UEditor\themes\default\images\filescan.png" />
  394. <Content Include="Content\UEditor\themes\default\images\highlighted.gif" />
  395. <Content Include="Content\UEditor\themes\default\images\icons-all.gif" />
  396. <Content Include="Content\UEditor\themes\default\images\icons.gif" />
  397. <Content Include="Content\UEditor\themes\default\images\icons.png" />
  398. <Content Include="Content\UEditor\themes\default\images\loaderror.png" />
  399. <Content Include="Content\UEditor\themes\default\images\loading.gif" />
  400. <Content Include="Content\UEditor\themes\default\images\lock.gif" />
  401. <Content Include="Content\UEditor\themes\default\images\neweditor-tab-bg.png" />
  402. <Content Include="Content\UEditor\themes\default\images\pagebreak.gif" />
  403. <Content Include="Content\UEditor\themes\default\images\scale.png" />
  404. <Content Include="Content\UEditor\themes\default\images\sortable.png" />
  405. <Content Include="Content\UEditor\themes\default\images\spacer.gif" />
  406. <Content Include="Content\UEditor\themes\default\images\sparator_v.png" />
  407. <Content Include="Content\UEditor\themes\default\images\table-cell-align.png" />
  408. <Content Include="Content\UEditor\themes\default\images\tangram-colorpicker.png" />
  409. <Content Include="Content\UEditor\themes\default\images\toolbar_bg.png" />
  410. <Content Include="Content\UEditor\themes\default\images\unhighlighted.gif" />
  411. <Content Include="Content\UEditor\themes\default\images\upload.png" />
  412. <Content Include="Content\UEditor\themes\default\images\videologo.gif" />
  413. <Content Include="Content\UEditor\themes\default\images\word.gif" />
  414. <Content Include="Content\UEditor\themes\default\images\wordpaste.png" />
  415. <Content Include="Content\UEditor\themes\iframe.css" />
  416. <Content Include="Content\UEditor\third-party\codemirror\codemirror.css" />
  417. <Content Include="Content\UEditor\third-party\codemirror\codemirror.js" />
  418. <Content Include="Content\UEditor\third-party\highcharts\adapters\mootools-adapter.js" />
  419. <Content Include="Content\UEditor\third-party\highcharts\adapters\mootools-adapter.src.js" />
  420. <Content Include="Content\UEditor\third-party\highcharts\adapters\prototype-adapter.js" />
  421. <Content Include="Content\UEditor\third-party\highcharts\adapters\prototype-adapter.src.js" />
  422. <Content Include="Content\UEditor\third-party\highcharts\adapters\standalone-framework.js" />
  423. <Content Include="Content\UEditor\third-party\highcharts\adapters\standalone-framework.src.js" />
  424. <Content Include="Content\UEditor\third-party\highcharts\highcharts-more.js" />
  425. <Content Include="Content\UEditor\third-party\highcharts\highcharts-more.src.js" />
  426. <Content Include="Content\UEditor\third-party\highcharts\highcharts.js" />
  427. <Content Include="Content\UEditor\third-party\highcharts\highcharts.src.js" />
  428. <Content Include="Content\UEditor\third-party\highcharts\modules\annotations.js" />
  429. <Content Include="Content\UEditor\third-party\highcharts\modules\annotations.src.js" />
  430. <Content Include="Content\UEditor\third-party\highcharts\modules\canvas-tools.js" />
  431. <Content Include="Content\UEditor\third-party\highcharts\modules\canvas-tools.src.js" />
  432. <Content Include="Content\UEditor\third-party\highcharts\modules\data.js" />
  433. <Content Include="Content\UEditor\third-party\highcharts\modules\data.src.js" />
  434. <Content Include="Content\UEditor\third-party\highcharts\modules\drilldown.js" />
  435. <Content Include="Content\UEditor\third-party\highcharts\modules\drilldown.src.js" />
  436. <Content Include="Content\UEditor\third-party\highcharts\modules\exporting.js" />
  437. <Content Include="Content\UEditor\third-party\highcharts\modules\exporting.src.js" />
  438. <Content Include="Content\UEditor\third-party\highcharts\modules\funnel.js" />
  439. <Content Include="Content\UEditor\third-party\highcharts\modules\funnel.src.js" />
  440. <Content Include="Content\UEditor\third-party\highcharts\modules\heatmap.js" />
  441. <Content Include="Content\UEditor\third-party\highcharts\modules\heatmap.src.js" />
  442. <Content Include="Content\UEditor\third-party\highcharts\modules\map.js" />
  443. <Content Include="Content\UEditor\third-party\highcharts\modules\map.src.js" />
  444. <Content Include="Content\UEditor\third-party\highcharts\modules\no-data-to-display.js" />
  445. <Content Include="Content\UEditor\third-party\highcharts\modules\no-data-to-display.src.js" />
  446. <Content Include="Content\UEditor\third-party\highcharts\themes\dark-blue.js" />
  447. <Content Include="Content\UEditor\third-party\highcharts\themes\dark-green.js" />
  448. <Content Include="Content\UEditor\third-party\highcharts\themes\gray.js" />
  449. <Content Include="Content\UEditor\third-party\highcharts\themes\grid.js" />
  450. <Content Include="Content\UEditor\third-party\highcharts\themes\skies.js" />
  451. <Content Include="Content\UEditor\third-party\jquery-1.10.2.js" />
  452. <Content Include="Content\UEditor\third-party\jquery-1.10.2.min.js" />
  453. <Content Include="Content\UEditor\third-party\SyntaxHighlighter\shCore.js" />
  454. <Content Include="Content\UEditor\third-party\SyntaxHighlighter\shCoreDefault.css" />
  455. <Content Include="Content\UEditor\third-party\video-js\font\vjs.svg" />
  456. <Content Include="Content\UEditor\third-party\video-js\video-js.css" />
  457. <Content Include="Content\UEditor\third-party\video-js\video-js.min.css" />
  458. <Content Include="Content\UEditor\third-party\video-js\video-js.swf" />
  459. <Content Include="Content\UEditor\third-party\video-js\video.dev.js" />
  460. <Content Include="Content\UEditor\third-party\video-js\video.js" />
  461. <Content Include="Content\UEditor\third-party\webuploader\Uploader.swf" />
  462. <Content Include="Content\UEditor\third-party\webuploader\webuploader.css" />
  463. <Content Include="Content\UEditor\third-party\webuploader\webuploader.custom.js" />
  464. <Content Include="Content\UEditor\third-party\webuploader\webuploader.custom.min.js" />
  465. <Content Include="Content\UEditor\third-party\webuploader\webuploader.flashonly.js" />
  466. <Content Include="Content\UEditor\third-party\webuploader\webuploader.flashonly.min.js" />
  467. <Content Include="Content\UEditor\third-party\webuploader\webuploader.html5only.js" />
  468. <Content Include="Content\UEditor\third-party\webuploader\webuploader.html5only.min.js" />
  469. <Content Include="Content\UEditor\third-party\webuploader\webuploader.js" />
  470. <Content Include="Content\UEditor\third-party\webuploader\webuploader.min.js" />
  471. <Content Include="Content\UEditor\third-party\webuploader\webuploader.withoutimage.js" />
  472. <Content Include="Content\UEditor\third-party\webuploader\webuploader.withoutimage.min.js" />
  473. <Content Include="Content\UEditor\third-party\zeroclipboard\ZeroClipboard.js" />
  474. <Content Include="Content\UEditor\third-party\zeroclipboard\ZeroClipboard.min.js" />
  475. <Content Include="Content\UEditor\third-party\zeroclipboard\ZeroClipboard.swf" />
  476. <Content Include="Content\UEditor\ueditor.all.js" />
  477. <Content Include="Content\UEditor\ueditor.all.min.js" />
  478. <Content Include="Content\UEditor\ueditor.config.js" />
  479. <Content Include="Content\UEditor\ueditor.parse.js" />
  480. <Content Include="Content\UEditor\ueditor.parse.min.js" />
  481. <Content Include="favicon.ico" />
  482. <Content Include="fonts\glyphicons-halflings-regular.svg" />
  483. <Content Include="Global.asax" />
  484. <Content Include="Content\Site.css" />
  485. <Content Include="Scripts\bootstrap.js" />
  486. <Content Include="Scripts\bootstrap.min.js" />
  487. <Content Include="ApplicationInsights.config">
  488. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  489. </Content>
  490. <Content Include="Content\simditor\css\editor.scss" />
  491. <Content Include="Content\simditor\css\fonticon.scss" />
  492. <Content Include="Content\simditor\css\simditor.scss" />
  493. <Content Include="Content\UEditor\net\config.json" />
  494. <Content Include="Content\UEditor\net\controller.ashx" />
  495. <Content Include="Content\UEditor\net\README.md" />
  496. <Content Include="Content\UEditor\net\Web.config" />
  497. <Content Include="Content\UEditor\third-party\jquery-1.10.2.min.map" />
  498. <Content Include="Content\UEditor\third-party\video-js\font\vjs.eot" />
  499. <Content Include="Content\UEditor\third-party\video-js\font\vjs.ttf" />
  500. <Content Include="Content\UEditor\third-party\video-js\font\vjs.woff" />
  501. <Content Include="Config\log4net.config" />
  502. <Content Include="log4net.config" />
  503. <None Include="Properties\PublishProfiles\FolderProfile.pubxml" />
  504. <None Include="Scripts\jquery-1.10.2.intellisense.js" />
  505. <Content Include="Scripts\jquery-1.10.2.js" />
  506. <Content Include="Scripts\jquery-1.10.2.min.js" />
  507. <None Include="Scripts\jquery.validate-vsdoc.js" />
  508. <Content Include="Scripts\jquery.validate.js" />
  509. <Content Include="Scripts\jquery.validate.min.js" />
  510. <Content Include="Scripts\jquery.validate.unobtrusive.js" />
  511. <Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
  512. <Content Include="Scripts\modernizr-2.6.2.js" />
  513. <Content Include="Scripts\respond.js" />
  514. <Content Include="Scripts\respond.min.js" />
  515. <Content Include="Static\avatar\css\main.css" />
  516. <Content Include="Static\avatar\js\avatar.js" />
  517. <Content Include="Static\avatar\js\cropper\cropper.min.css" />
  518. <Content Include="Static\avatar\js\cropper\cropper.min.js" />
  519. <Content Include="Static\avatar\js\webAvatar.js" />
  520. <Content Include="Static\avatar\js\webuploader\Uploader.swf" />
  521. <Content Include="Static\avatar\js\webuploader\webuploader.css" />
  522. <Content Include="Static\avatar\js\webuploader\webuploader.min.js" />
  523. <Content Include="Static\checkbox\css.css" />
  524. <Content Include="Static\checkbox\js.js" />
  525. <Content Include="Static\checkImg\checkImg.css" />
  526. <Content Include="Static\checkImg\checkimg.js" />
  527. <Content Include="Static\css\base.css" />
  528. <Content Include="Static\css\base2.css" />
  529. <Content Include="Static\css\basic_info.css" />
  530. <Content Include="Static\css\bootstrap.min.css" />
  531. <Content Include="Static\css\font-awesome.min.css" />
  532. <Content Include="Static\css\index.css" />
  533. <Content Include="Static\css\login.css" />
  534. <Content Include="Static\css\login\login.css" />
  535. <Content Include="Static\css\myInput.css" />
  536. <Content Include="Static\css\platform.css" />
  537. <Content Include="Static\css\process.css" />
  538. <Content Include="Static\css\process_h5.css" />
  539. <Content Include="Static\css\providers.css" />
  540. <Content Include="Static\css\providers1.css" />
  541. <Content Include="Static\css\style.css" />
  542. <Content Include="Static\css\workbench.css" />
  543. <Content Include="Static\custom\easyui-lang-zh_CN.js" />
  544. <Content Include="Static\custom\easyui.css" />
  545. <Content Include="Static\custom\jquery.easyui.min.js" />
  546. <Content Include="Static\custom\jquery.min.js" />
  547. <Content Include="Static\custom\uimaker\accordion.css" />
  548. <Content Include="Static\custom\uimaker\calendar.css" />
  549. <Content Include="Static\custom\uimaker\combobox.css" />
  550. <Content Include="Static\custom\uimaker\css\base.css" />
  551. <Content Include="Static\custom\uimaker\css\login\login.css" />
  552. <Content Include="Static\custom\uimaker\datagrid.css" />
  553. <Content Include="Static\custom\uimaker\datalist.css" />
  554. <Content Include="Static\custom\uimaker\datebox.css" />
  555. <Content Include="Static\custom\uimaker\dialog.css" />
  556. <Content Include="Static\custom\uimaker\easyui.css" />
  557. <Content Include="Static\custom\uimaker\filebox.css" />
  558. <Content Include="Static\custom\uimaker\fonticon.css" />
  559. <Content Include="Static\custom\uimaker\icon.css" />
  560. <Content Include="Static\custom\uimaker\icons\back.png" />
  561. <Content Include="Static\custom\uimaker\icons\blank.gif" />
  562. <Content Include="Static\custom\uimaker\icons\cancel.png" />
  563. <Content Include="Static\custom\uimaker\icons\clear.png" />
  564. <Content Include="Static\custom\uimaker\icons\cut.png" />
  565. <Content Include="Static\custom\uimaker\icons\edit_add.png" />
  566. <Content Include="Static\custom\uimaker\icons\edit_remove.png" />
  567. <Content Include="Static\custom\uimaker\icons\filesave.png" />
  568. <Content Include="Static\custom\uimaker\icons\filter.png" />
  569. <Content Include="Static\custom\uimaker\icons\help.png" />
  570. <Content Include="Static\custom\uimaker\icons\large_chart.png" />
  571. <Content Include="Static\custom\uimaker\icons\large_clipart.png" />
  572. <Content Include="Static\custom\uimaker\icons\large_picture.png" />
  573. <Content Include="Static\custom\uimaker\icons\large_shapes.png" />
  574. <Content Include="Static\custom\uimaker\icons\large_smartart.png" />
  575. <Content Include="Static\custom\uimaker\icons\list.png" />
  576. <Content Include="Static\custom\uimaker\icons\lock.png" />
  577. <Content Include="Static\custom\uimaker\icons\man.png" />
  578. <Content Include="Static\custom\uimaker\icons\mini_add.png" />
  579. <Content Include="Static\custom\uimaker\icons\mini_edit.png" />
  580. <Content Include="Static\custom\uimaker\icons\mini_refresh.png" />
  581. <Content Include="Static\custom\uimaker\icons\more.png" />
  582. <Content Include="Static\custom\uimaker\icons\no.png" />
  583. <Content Include="Static\custom\uimaker\icons\ok.png" />
  584. <Content Include="Static\custom\uimaker\icons\pencil.png" />
  585. <Content Include="Static\custom\uimaker\icons\print.png" />
  586. <Content Include="Static\custom\uimaker\icons\redo.png" />
  587. <Content Include="Static\custom\uimaker\icons\reload.png" />
  588. <Content Include="Static\custom\uimaker\icons\search.png" />
  589. <Content Include="Static\custom\uimaker\icons\sum.png" />
  590. <Content Include="Static\custom\uimaker\icons\tip.png" />
  591. <Content Include="Static\custom\uimaker\icons\undo.png" />
  592. <Content Include="Static\custom\uimaker\images\accordion_arrows.png" />
  593. <Content Include="Static\custom\uimaker\images\blank.gif" />
  594. <Content Include="Static\custom\uimaker\images\calendar_arrows.png" />
  595. <Content Include="Static\custom\uimaker\images\combo_arrow.png" />
  596. <Content Include="Static\custom\uimaker\images\datagrid_icons.png" />
  597. <Content Include="Static\custom\uimaker\images\datebox_arrow.png" />
  598. <Content Include="Static\custom\uimaker\images\layout_arrows.png" />
  599. <Content Include="Static\custom\uimaker\images\linkbutton_bg.png" />
  600. <Content Include="Static\custom\uimaker\images\loading.gif" />
  601. <Content Include="Static\custom\uimaker\images\menu_arrows.png" />
  602. <Content Include="Static\custom\uimaker\images\messager_icons.png" />
  603. <Content Include="Static\custom\uimaker\images\new\datebox_arrow.png" />
  604. <Content Include="Static\custom\uimaker\images\new\dialog_close.png" />
  605. <Content Include="Static\custom\uimaker\images\new\grid.png" />
  606. <Content Include="Static\custom\uimaker\images\new\pagination_icons_disabeld.png" />
  607. <Content Include="Static\custom\uimaker\images\new\pagination_icons_hover.png" />
  608. <Content Include="Static\custom\uimaker\images\new\panel_tools_hover.png" />
  609. <Content Include="Static\custom\uimaker\images\new\spinner_arrows.png" />
  610. <Content Include="Static\custom\uimaker\images\new\tabs_close.png" />
  611. <Content Include="Static\custom\uimaker\images\new\tabs_close_hover.png" />
  612. <Content Include="Static\custom\uimaker\images\new\tab_dropdown.png" />
  613. <Content Include="Static\custom\uimaker\images\new\tab_dropdown_hover.png" />
  614. <Content Include="Static\custom\uimaker\images\new\下拉菜单.png" />
  615. <Content Include="Static\custom\uimaker\images\new\面板.png" />
  616. <Content Include="Static\custom\uimaker\images\new\面板_如果左边图标可以直接用白色时候就只用这个.png" />
  617. <Content Include="Static\custom\uimaker\images\pagination_icons.png" />
  618. <Content Include="Static\custom\uimaker\images\panel_tools.png" />
  619. <Content Include="Static\custom\uimaker\images\searchbox_button.png" />
  620. <Content Include="Static\custom\uimaker\images\slider_handle.png" />
  621. <Content Include="Static\custom\uimaker\images\spinner_arrows.png" />
  622. <Content Include="Static\custom\uimaker\images\tabs_icons.png" />
  623. <Content Include="Static\custom\uimaker\images\tree_icons.png" />
  624. <Content Include="Static\custom\uimaker\images\validatebox_warning.png" />
  625. <Content Include="Static\custom\uimaker\imgs\login\loginbg.png" />
  626. <Content Include="Static\custom\uimaker\imgs\login\login_box.png" />
  627. <Content Include="Static\custom\uimaker\imgs\login\login_box_w.png" />
  628. <Content Include="Static\custom\uimaker\imgs\login\login_logo.png" />
  629. <Content Include="Static\custom\uimaker\imgs\login\login_logo_w.png" />
  630. <Content Include="Static\custom\uimaker\imgs\login\login_top_left.png" />
  631. <Content Include="Static\custom\uimaker\imgs\login\login_top_right.png" />
  632. <Content Include="Static\custom\uimaker\js\jquery.min.js" />
  633. <Content Include="Static\custom\uimaker\layout.css" />
  634. <Content Include="Static\custom\uimaker\linkbutton.css" />
  635. <Content Include="Static\custom\uimaker\menu.css" />
  636. <Content Include="Static\custom\uimaker\menubutton.css" />
  637. <Content Include="Static\custom\uimaker\messager.css" />
  638. <Content Include="Static\custom\uimaker\pagination.css" />
  639. <Content Include="Static\custom\uimaker\panel.css" />
  640. <Content Include="Static\custom\uimaker\progressbar.css" />
  641. <Content Include="Static\custom\uimaker\searchbox.css" />
  642. <Content Include="Static\custom\uimaker\slider.css" />
  643. <Content Include="Static\custom\uimaker\spinner.css" />
  644. <Content Include="Static\custom\uimaker\switchbutton.css" />
  645. <Content Include="Static\custom\uimaker\tab.css" />
  646. <Content Include="Static\custom\uimaker\textbox.css" />
  647. <Content Include="Static\custom\uimaker\tooltip.css" />
  648. <Content Include="Static\custom\uimaker\tree.css" />
  649. <Content Include="Static\custom\uimaker\view\login\login.html" />
  650. <Content Include="Static\custom\uimaker\view\login\login_white.html" />
  651. <Content Include="Static\custom\uimaker\window.css" />
  652. <Content Include="Static\fonts\demo.css" />
  653. <Content Include="Static\fonts\demo.html" />
  654. <Content Include="Static\fonts\fontawesome-webfont.svg" />
  655. <Content Include="Static\fonts\iconfont.css" />
  656. <Content Include="Static\fonts\iconfont.svg" />
  657. <Content Include="Static\font\iconfont.css" />
  658. <Content Include="Static\images\buttons.png" />
  659. <Content Include="Static\images\guide\arrow.png" />
  660. <Content Include="Static\images\hhy01bg.png" />
  661. <Content Include="Static\images\hhy02bg.png" />
  662. <Content Include="Static\images\hhy03bg.png" />
  663. <Content Include="Static\images\icon\iconxz.png" />
  664. <Content Include="Static\images\liucheng.png" />
  665. <Content Include="Static\images\loginbg.png" />
  666. <Content Include="Static\images\login_bg_tubiao.png" />
  667. <Content Include="Static\images\login_box.png" />
  668. <Content Include="Static\images\login_box_w.png" />
  669. <Content Include="Static\images\login_logo.png" />
  670. <Content Include="Static\images\login_logo_w.png" />
  671. <Content Include="Static\images\login_top_left.png" />
  672. <Content Include="Static\images\login_top_right.png" />
  673. <Content Include="Static\images\main\left_list.png" />
  674. <Content Include="Static\images\main\main_logo.png" />
  675. <Content Include="Static\images\main\navbg.png" />
  676. <Content Include="Static\images\main\sider-toggle.png" />
  677. <Content Include="Static\images\main\tabs_close_hover.png" />
  678. <Content Include="Static\images\main\tabs_close_pf.png" />
  679. <Content Include="Static\images\main\topbg.png" />
  680. <Content Include="Static\images\main\top_bottombg.png" />
  681. <Content Include="Static\images\main\top_userbg.png" />
  682. <Content Include="Static\images\main\user.png" />
  683. <Content Include="Static\images\main\xg_left.png" />
  684. <Content Include="Static\images\main\xg_right.png" />
  685. <Content Include="Static\images\main_logo.png" />
  686. <Content Include="Static\images\new.png" />
  687. <Content Include="Static\images\tab_btn.png" />
  688. <Content Include="Static\images\timeline\arrow.png" />
  689. <Content Include="Static\images\timeline\blank.png" />
  690. <Content Include="Static\images\timeline\dot.png" />
  691. <Content Include="Static\images\timeline\down.png" />
  692. <Content Include="Static\images\user.png" />
  693. <Content Include="Static\img\login_password.png" />
  694. <Content Include="Static\img\login_person.png" />
  695. <Content Include="Static\jedate\jquery-1.7.2.js" />
  696. <Content Include="Static\jedate\jquery.jedate.js" />
  697. <Content Include="Static\jedate\jquery.jedate.min.js" />
  698. <Content Include="Static\jedate\skin\jedate.css" />
  699. <Content Include="Static\jedate\test\jeDate-test.css" />
  700. <Content Include="Static\jedate\test\jeDate-test.html" />
  701. <Content Include="Static\jedate\test\jedate-test.js" />
  702. <Content Include="Static\JPEGCam\shutter.mp3" />
  703. <Content Include="Static\JPEGCam\webcam.js" />
  704. <Content Include="Static\JPEGCam\webcam.swf" />
  705. <Content Include="Static\js\bootstrap.min.js" />
  706. <Content Include="Static\js\common.js" />
  707. <Content Include="Static\js\DateTimeOverFlowFormat.js" />
  708. <Content Include="Static\js\echarts-all.js" />
  709. <Content Include="Static\js\jquery.form.js" />
  710. <Content Include="Static\js\main.js" />
  711. <Content Include="Static\js\pagejs\home.js" />
  712. <Content Include="Static\js\rewrite.js" />
  713. <Content Include="Static\js\serializeObj.js" />
  714. <Content Include="Static\js\umeditor\dialogs\emotion\emotion.css" />
  715. <Content Include="Static\js\umeditor\dialogs\emotion\emotion.js" />
  716. <Content Include="Static\js\umeditor\dialogs\emotion\images\0.gif" />
  717. <Content Include="Static\js\umeditor\dialogs\emotion\images\bface.gif" />
  718. <Content Include="Static\js\umeditor\dialogs\emotion\images\cface.gif" />
  719. <Content Include="Static\js\umeditor\dialogs\emotion\images\fface.gif" />
  720. <Content Include="Static\js\umeditor\dialogs\emotion\images\jxface2.gif" />
  721. <Content Include="Static\js\umeditor\dialogs\emotion\images\neweditor-tab-bg.png" />
  722. <Content Include="Static\js\umeditor\dialogs\emotion\images\tface.gif" />
  723. <Content Include="Static\js\umeditor\dialogs\emotion\images\wface.gif" />
  724. <Content Include="Static\js\umeditor\dialogs\emotion\images\yface.gif" />
  725. <Content Include="Static\js\umeditor\dialogs\formula\formula.css" />
  726. <Content Include="Static\js\umeditor\dialogs\formula\formula.html" />
  727. <Content Include="Static\js\umeditor\dialogs\formula\formula.js" />
  728. <Content Include="Static\js\umeditor\dialogs\formula\images\formula.png" />
  729. <Content Include="Static\js\umeditor\dialogs\image\image.css" />
  730. <Content Include="Static\js\umeditor\dialogs\image\image.js" />
  731. <Content Include="Static\js\umeditor\dialogs\image\images\close.png" />
  732. <Content Include="Static\js\umeditor\dialogs\image\images\upload1.png" />
  733. <Content Include="Static\js\umeditor\dialogs\image\images\upload2.png" />
  734. <Content Include="Static\js\umeditor\dialogs\link\link.js" />
  735. <Content Include="Static\js\umeditor\dialogs\map\map.html" />
  736. <Content Include="Static\js\umeditor\dialogs\map\map.js" />
  737. <Content Include="Static\js\umeditor\dialogs\video\images\center_focus.jpg" />
  738. <Content Include="Static\js\umeditor\dialogs\video\images\left_focus.jpg" />
  739. <Content Include="Static\js\umeditor\dialogs\video\images\none_focus.jpg" />
  740. <Content Include="Static\js\umeditor\dialogs\video\images\right_focus.jpg" />
  741. <Content Include="Static\js\umeditor\dialogs\video\video.css" />
  742. <Content Include="Static\js\umeditor\dialogs\video\video.js" />
  743. <Content Include="Static\js\umeditor\index.html" />
  744. <Content Include="Static\js\umeditor\jsp\commons-fileupload-1.2.2.jar" />
  745. <Content Include="Static\js\umeditor\jsp\ueditor-mini.jar" />
  746. <Content Include="Static\js\umeditor\jsp\Uploader.java" />
  747. <Content Include="Static\js\umeditor\lang\en\en.js" />
  748. <Content Include="Static\js\umeditor\lang\en\images\addimage.png" />
  749. <Content Include="Static\js\umeditor\lang\en\images\alldeletebtnhoverskin.png" />
  750. <Content Include="Static\js\umeditor\lang\en\images\alldeletebtnupskin.png" />
  751. <Content Include="Static\js\umeditor\lang\en\images\background.png" />
  752. <Content Include="Static\js\umeditor\lang\en\images\button.png" />
  753. <Content Include="Static\js\umeditor\lang\en\images\copy.png" />
  754. <Content Include="Static\js\umeditor\lang\en\images\deletedisable.png" />
  755. <Content Include="Static\js\umeditor\lang\en\images\deleteenable.png" />
  756. <Content Include="Static\js\umeditor\lang\en\images\imglabel.png" />
  757. <Content Include="Static\js\umeditor\lang\en\images\listbackground.png" />
  758. <Content Include="Static\js\umeditor\lang\en\images\localimage.png" />
  759. <Content Include="Static\js\umeditor\lang\en\images\music.png" />
  760. <Content Include="Static\js\umeditor\lang\en\images\rotateleftdisable.png" />
  761. <Content Include="Static\js\umeditor\lang\en\images\rotateleftenable.png" />
  762. <Content Include="Static\js\umeditor\lang\en\images\rotaterightdisable.png" />
  763. <Content Include="Static\js\umeditor\lang\en\images\rotaterightenable.png" />
  764. <Content Include="Static\js\umeditor\lang\en\images\upload.png" />
  765. <Content Include="Static\js\umeditor\lang\zh-cn\images\copy.png" />
  766. <Content Include="Static\js\umeditor\lang\zh-cn\images\imglabel.png" />
  767. <Content Include="Static\js\umeditor\lang\zh-cn\images\localimage.png" />
  768. <Content Include="Static\js\umeditor\lang\zh-cn\images\music.png" />
  769. <Content Include="Static\js\umeditor\lang\zh-cn\images\upload.png" />
  770. <Content Include="Static\js\umeditor\lang\zh-cn\zh-cn.js" />
  771. <Content Include="Static\js\umeditor\themes\default\css\umeditor.css" />
  772. <Content Include="Static\js\umeditor\themes\default\css\umeditor.min.css" />
  773. <Content Include="Static\js\umeditor\themes\default\images\caret.png" />
  774. <Content Include="Static\js\umeditor\themes\default\images\close.png" />
  775. <Content Include="Static\js\umeditor\themes\default\images\icons.gif" />
  776. <Content Include="Static\js\umeditor\themes\default\images\icons.png" />
  777. <Content Include="Static\js\umeditor\themes\default\images\ok.gif" />
  778. <Content Include="Static\js\umeditor\themes\default\images\pop-bg.png" />
  779. <Content Include="Static\js\umeditor\themes\default\images\spacer.gif" />
  780. <Content Include="Static\js\umeditor\themes\default\images\videologo.gif" />
  781. <Content Include="Static\js\umeditor\third-party\jquery.min.js" />
  782. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\STIXFontLicense2010.txt" />
  783. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneral-webfont.svg" />
  784. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbol-webfont.svg" />
  785. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbolita-webfont.svg" />
  786. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralitalic-webfont.svg" />
  787. <Content Include="Static\js\umeditor\third-party\mathquill\font\Symbola.svg" />
  788. <Content Include="Static\js\umeditor\third-party\mathquill\mathquill.css" />
  789. <Content Include="Static\js\umeditor\third-party\mathquill\mathquill.js" />
  790. <Content Include="Static\js\umeditor\third-party\mathquill\mathquill.min.js" />
  791. <Content Include="Static\js\umeditor\umeditor.config.js" />
  792. <Content Include="Static\js\umeditor\umeditor.js" />
  793. <Content Include="Static\js\umeditor\umeditor.min.js" />
  794. <Content Include="Static\js\validate\additional-methods.min.js" />
  795. <Content Include="Static\js\validate\jquery.validate.min.js" />
  796. <Content Include="Static\js\validate\messages_zh.min.js" />
  797. <Content Include="Static\layer\extend\layer.ext.js" />
  798. <Content Include="Static\layer\laydate\laydate.js" />
  799. <Content Include="Static\layer\laydate\need\laydate.css" />
  800. <Content Include="Static\layer\laydate\skins\default\icon.png" />
  801. <Content Include="Static\layer\laydate\skins\default\laydate.css" />
  802. <Content Include="Static\layer\layer.min.js" />
  803. <Content Include="Static\layer\skin\default\icon-ext.png" />
  804. <Content Include="Static\layer\skin\default\icon.png" />
  805. <Content Include="Static\layer\skin\default\icon_ext.png" />
  806. <Content Include="Static\layer\skin\default\loading-0.gif" />
  807. <Content Include="Static\layer\skin\default\loading-1.gif" />
  808. <Content Include="Static\layer\skin\default\loading-2.gif" />
  809. <Content Include="Static\layer\skin\default\textbg.png" />
  810. <Content Include="Static\layer\skin\default\xubox_ico0.png" />
  811. <Content Include="Static\layer\skin\default\xubox_loading0.gif" />
  812. <Content Include="Static\layer\skin\default\xubox_loading1.gif" />
  813. <Content Include="Static\layer\skin\default\xubox_loading2.gif" />
  814. <Content Include="Static\layer\skin\default\xubox_loading3.gif" />
  815. <Content Include="Static\layer\skin\default\xubox_title0.png" />
  816. <Content Include="Static\layer\skin\layer.css" />
  817. <Content Include="Static\layer\skin\layer.ext.css" />
  818. <Content Include="Static\layer\skin\moon\default.png" />
  819. <Content Include="Static\layer\skin\moon\style.css" />
  820. <Content Include="Static\quickMenu\contextmenu.js" />
  821. <Content Include="Static\quickMenu\quickMenu.css" />
  822. <Content Include="Static\uploadify\Change Log.txt" />
  823. <Content Include="Static\uploadify\jquery.uploadify.js" />
  824. <Content Include="Static\uploadify\jquery.uploadify.min.js" />
  825. <Content Include="Static\uploadify\license.txt" />
  826. <Content Include="Static\uploadify\uploadify-cancel.png" />
  827. <Content Include="Static\uploadify\uploadify.css" />
  828. <Content Include="Static\uploadify\uploadify.swf" />
  829. <Content Include="Static\uploadify\__MACOSX\._Change Log.txt" />
  830. <Content Include="Static\uploadify\__MACOSX\._uploadify.swf" />
  831. <Content Include="Web.config" />
  832. <Content Include="Web.Debug.config">
  833. <DependentUpon>Web.config</DependentUpon>
  834. </Content>
  835. <Content Include="Web.Release.config">
  836. <DependentUpon>Web.config</DependentUpon>
  837. </Content>
  838. <Content Include="Views\Web.config" />
  839. <Content Include="Views\_ViewStart.cshtml" />
  840. <Content Include="Views\Shared\Error.cshtml" />
  841. <Content Include="Views\Shared\_Layout.cshtml" />
  842. <Content Include="Views\Home\Index.cshtml" />
  843. <Content Include="Static\fonts\fontawesome-webfont.eot" />
  844. <Content Include="Static\fonts\fontawesome-webfont.ttf" />
  845. <Content Include="Static\fonts\fontawesome-webfont.woff" />
  846. <Content Include="Static\fonts\fontawesome-webfont.woff2" />
  847. <Content Include="Static\fonts\FontAwesome.otf" />
  848. <Content Include="Static\fonts\iconfont.eot" />
  849. <Content Include="Static\fonts\iconfont.ttf" />
  850. <Content Include="Static\fonts\iconfont.woff" />
  851. <Content Include="Static\images\pages - 快捷方式.lnk" />
  852. <Content Include="Static\js\umeditor\jsp\getContent.jsp" />
  853. <Content Include="Static\js\umeditor\jsp\imageUp.jsp" />
  854. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneral-webfont.eot" />
  855. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneral-webfont.ttf" />
  856. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneral-webfont.woff" />
  857. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbol-webfont.eot" />
  858. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbol-webfont.ttf" />
  859. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbol-webfont.woff" />
  860. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbolita-webfont.eot" />
  861. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbolita-webfont.ttf" />
  862. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralbolita-webfont.woff" />
  863. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralitalic-webfont.eot" />
  864. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralitalic-webfont.ttf" />
  865. <Content Include="Static\js\umeditor\third-party\mathquill\font\stixgeneral-bundle\stixgeneralitalic-webfont.woff" />
  866. <Content Include="Static\js\umeditor\third-party\mathquill\font\Symbola.eot" />
  867. <Content Include="Static\js\umeditor\third-party\mathquill\font\Symbola.otf" />
  868. <Content Include="Static\js\umeditor\third-party\mathquill\font\Symbola.ttf" />
  869. <Content Include="Static\js\umeditor\third-party\mathquill\font\Symbola.woff" />
  870. <Content Include="Views\Login\Index.cshtml" />
  871. <Content Include="Views\Area\Index.cshtml" />
  872. <Content Include="Views\Area\Edit.cshtml" />
  873. <Content Include="Views\Area\CzList.cshtml" />
  874. <Content Include="Views\Area\New.cshtml" />
  875. <Content Include="Views\KjhTdk\Index.cshtml" />
  876. <Content Include="Views\KjhTdk\Edit.cshtml" />
  877. <Content Include="Views\CzLink\Index.cshtml" />
  878. <Content Include="Views\CzLink\Edit.cshtml" />
  879. <Content Include="Views\Notice\Index.cshtml" />
  880. <Content Include="Views\Notice\Edit.cshtml" />
  881. <Content Include="Views\Ksjih\Index.cshtml" />
  882. <Content Include="Views\Ksjih\Edit.cshtml" />
  883. <Content Include="Views\Home\_PwdEdit.cshtml" />
  884. <Content Include="Views\FcsdNum\Index.cshtml" />
  885. <Content Include="Views\FcsdNum\Edit.cshtml" />
  886. <Content Include="Views\FcqlcNum\Index.cshtml" />
  887. <Content Include="Views\FcssqNum\Index.cshtml" />
  888. <Content Include="Views\Tcp3Num\Edit.cshtml" />
  889. <Content Include="Views\Tcp3Num\Index.cshtml" />
  890. <Content Include="Views\TcdltNum\Edit.cshtml" />
  891. <Content Include="Views\TcdltNum\Index.cshtml" />
  892. <Content Include="Views\FcqlcNum\Edit.cshtml" />
  893. <Content Include="Views\FcssqNum\Edit.cshtml" />
  894. <Content Include="Views\TcqxcNum\Edit.cshtml" />
  895. <Content Include="Views\TcqxcNum\Index.cshtml" />
  896. <Content Include="Views\SysLog\Index.cshtml" />
  897. <Content Include="Views\User\Edit.cshtml" />
  898. <Content Include="Views\User\Index.cshtml" />
  899. </ItemGroup>
  900. <ItemGroup>
  901. <Folder Include="App_Data\" />
  902. <Folder Include="Content\UEditor\net\Bin\" />
  903. <Folder Include="Content\UEditor\third-party\snapscreen\" />
  904. <Folder Include="Views\AdminBase\" />
  905. <Folder Include="Views\Default\" />
  906. <Folder Include="Views\Util\" />
  907. </ItemGroup>
  908. <ItemGroup>
  909. <Content Include="fonts\glyphicons-halflings-regular.woff" />
  910. </ItemGroup>
  911. <ItemGroup>
  912. <Content Include="fonts\glyphicons-halflings-regular.ttf" />
  913. </ItemGroup>
  914. <ItemGroup>
  915. <Content Include="fonts\glyphicons-halflings-regular.eot" />
  916. </ItemGroup>
  917. <ItemGroup>
  918. <None Include="packages.config" />
  919. <Content Include="Scripts\jquery-1.10.2.min.map" />
  920. </ItemGroup>
  921. <ItemGroup>
  922. <ProjectReference Include="..\CP.Business\CP.Business.csproj">
  923. <Project>{a298d632-143b-4505-bab5-024baf1cc92d}</Project>
  924. <Name>CP.Business</Name>
  925. </ProjectReference>
  926. <ProjectReference Include="..\CP.Common\CP.Common.csproj">
  927. <Project>{cd102a12-e404-4a7c-8788-75e8307b2a9f}</Project>
  928. <Name>CP.Common</Name>
  929. </ProjectReference>
  930. <ProjectReference Include="..\CP.Model\CP.Model.csproj">
  931. <Project>{a7012355-e3b8-4758-9677-5ca5e4c7180d}</Project>
  932. <Name>CP.Model</Name>
  933. </ProjectReference>
  934. </ItemGroup>
  935. <PropertyGroup>
  936. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  937. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  938. </PropertyGroup>
  939. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  940. <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  941. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  942. <Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
  943. <AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
  944. </Target>
  945. <ProjectExtensions>
  946. <VisualStudio>
  947. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  948. <WebProjectProperties>
  949. <UseIIS>True</UseIIS>
  950. <AutoAssignPort>True</AutoAssignPort>
  951. <DevelopmentServerPort>3629</DevelopmentServerPort>
  952. <DevelopmentServerVPath>/</DevelopmentServerVPath>
  953. <IISUrl>http://localhost:3629/</IISUrl>
  954. <NTLMAuthentication>False</NTLMAuthentication>
  955. <UseCustomServer>False</UseCustomServer>
  956. <CustomServerUrl>
  957. </CustomServerUrl>
  958. <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  959. </WebProjectProperties>
  960. </FlavorProperties>
  961. </VisualStudio>
  962. </ProjectExtensions>
  963. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  964. <PropertyGroup>
  965. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  966. </PropertyGroup>
  967. <Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props'))" />
  968. <Error Condition="!Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
  969. </Target>
  970. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  971. Other similar extension points exist, see Microsoft.Common.targets.
  972. <Target Name="BeforeBuild">
  973. </Target>
  974. <Target Name="AfterBuild">
  975. </Target> -->
  976. </Project>