ProjectManagementSystem.WebApi.csproj 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{ED705467-FD55-4852-85A1-3C41B4682540}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ProjectManagementSystem.WebApi</RootNamespace>
  11. <AssemblyName>ProjectManagementSystem.WebApi</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  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>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="HslCommunication">
  36. <HintPath>..\PmsDLL\HslCommunication.dll</HintPath>
  37. </Reference>
  38. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>..\PmsDLL\Newtonsoft.Json.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Swashbuckle.Core">
  43. <HintPath>..\PmsDLL\Swashbuckle.Core.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Net.Http.Formatting, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  48. <SpecificVersion>False</SpecificVersion>
  49. <HintPath>..\PmsDLL\System.Net.Http.Formatting.dll</HintPath>
  50. </Reference>
  51. <Reference Include="System.Web.Cors, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  52. <SpecificVersion>False</SpecificVersion>
  53. <HintPath>..\PmsDLL\System.Web.Cors.dll</HintPath>
  54. </Reference>
  55. <Reference Include="System.Web.Http, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  56. <SpecificVersion>False</SpecificVersion>
  57. <HintPath>..\PmsDLL\System.Web.Http.dll</HintPath>
  58. </Reference>
  59. <Reference Include="System.Web.Http.Cors, Version=5.2.9.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  60. <SpecificVersion>False</SpecificVersion>
  61. <HintPath>..\PmsDLL\System.Web.Http.Cors.dll</HintPath>
  62. </Reference>
  63. <Reference Include="System.Web.Http.SelfHost">
  64. <HintPath>..\PmsDLL\System.Web.Http.SelfHost.dll</HintPath>
  65. </Reference>
  66. <Reference Include="System.Xml.Linq" />
  67. <Reference Include="System.Data.DataSetExtensions" />
  68. <Reference Include="Microsoft.CSharp" />
  69. <Reference Include="System.Data" />
  70. <Reference Include="System.Net.Http" />
  71. <Reference Include="System.Xml" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Compile Include="Auth\BasicAuthorizeAttribute.cs" />
  75. <Compile Include="Controller\CallbackController.cs" />
  76. <Compile Include="Controller\PmsController.cs" />
  77. <Compile Include="Controller\VerController.cs" />
  78. <Compile Include="Extensions\HttpRequestMessageExtensions.cs" />
  79. <Compile Include="Filters\GlobalActionFilterAttribute.cs" />
  80. <Compile Include="Filters\GlobalExceptionFilterAttribute.cs" />
  81. <Compile Include="Filters\ValidateModelAttribute.cs" />
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <Compile Include="Service\WebApiServerHost.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <Folder Include="Model\" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="app.config" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <ProjectReference Include="..\ProjectManagementSystem.Common\ProjectManagementSystem.Common.csproj">
  93. <Project>{98b2225b-93ba-4a5b-b96f-7b47d75015af}</Project>
  94. <Name>ProjectManagementSystem.Common</Name>
  95. </ProjectReference>
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. </Project>