JobService.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>{EF0C3228-4409-4DB0-9C07-33B9A63DE590}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>JobService</RootNamespace>
  11. <AssemblyName>JobService</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="Common.Logging, Version=3.3.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
  34. <HintPath>..\packages\Common.Logging.3.3.1\lib\net40\Common.Logging.dll</HintPath>
  35. </Reference>
  36. <Reference Include="Common.Logging.Core, Version=3.3.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
  37. <HintPath>..\packages\Common.Logging.Core.3.3.1\lib\net40\Common.Logging.Core.dll</HintPath>
  38. </Reference>
  39. <Reference Include="Quartz, Version=2.4.1.0, Culture=neutral, PublicKeyToken=f6b8c98a402cc8a4, processorArchitecture=MSIL">
  40. <HintPath>..\packages\Quartz.2.4.1\lib\net40\Quartz.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Net.Http" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Entity\JobConfig.cs" />
  53. <Compile Include="JobMange.cs" />
  54. <Compile Include="Job\C11x5Job.cs" />
  55. <Compile Include="Job\DFCJob.cs" />
  56. <Compile Include="Job\K3Job.cs" />
  57. <Compile Include="Job\QGCJob.cs" />
  58. <Compile Include="Job\QTJob.cs" />
  59. <Compile Include="Properties\AssemblyInfo.cs" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <None Include="job_scheduling_data_2_0.xsd">
  63. <SubType>Designer</SubType>
  64. </None>
  65. <None Include="packages.config" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <ProjectReference Include="..\Business\Business.csproj">
  69. <Project>{1995EF35-2F2A-45D1-B129-370E82DB1277}</Project>
  70. <Name>Business</Name>
  71. </ProjectReference>
  72. <ProjectReference Include="..\Cache\Cache.csproj">
  73. <Project>{C8EA2A5A-C03C-44A0-83B4-42B917FF3627}</Project>
  74. <Name>Cache</Name>
  75. </ProjectReference>
  76. <ProjectReference Include="..\Common\Common.csproj">
  77. <Project>{D32362DC-FF23-45A5-9EA9-18E3AC26E48B}</Project>
  78. <Name>Common</Name>
  79. </ProjectReference>
  80. <ProjectReference Include="..\Models\Models.csproj">
  81. <Project>{CB2988D4-4E7F-4F53-9CBA-4508B483F3CA}</Project>
  82. <Name>Models</Name>
  83. </ProjectReference>
  84. </ItemGroup>
  85. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  86. </Project>