SCC.Common.csproj 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{D32362DC-FF23-45A5-9EA9-18E3AC26E48B}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>SCC.Common</RootNamespace>
  12. <AssemblyName>SCC.Common</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="Common.Logging, Version=3.0.0.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
  35. <HintPath>..\packages\Common.Logging.3.0.0\lib\net40\Common.Logging.dll</HintPath>
  36. <Private>True</Private>
  37. </Reference>
  38. <Reference Include="Common.Logging.Core, Version=3.0.0.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
  39. <HintPath>..\packages\Common.Logging.Core.3.0.0\lib\net40\Common.Logging.Core.dll</HintPath>
  40. <Private>True</Private>
  41. </Reference>
  42. <Reference Include="log4net, Version=1.2.15.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  43. <HintPath>..\packages\log4net.2.0.5\lib\net40-full\log4net.dll</HintPath>
  44. <Private>True</Private>
  45. </Reference>
  46. <Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  47. <HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net40\Newtonsoft.Json.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Quartz, Version=2.3.3.0, Culture=neutral, PublicKeyToken=f6b8c98a402cc8a4, processorArchitecture=MSIL">
  50. <HintPath>..\packages\Quartz.2.3.3\lib\net40\Quartz.dll</HintPath>
  51. </Reference>
  52. <Reference Include="System" />
  53. <Reference Include="System.configuration" />
  54. <Reference Include="System.Core" />
  55. <Reference Include="System.Drawing" />
  56. <Reference Include="System.Web" />
  57. <Reference Include="System.Xml.Linq" />
  58. <Reference Include="System.Data.DataSetExtensions" />
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="System.Data" />
  61. <Reference Include="System.Xml" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="CommonHelper.cs" />
  65. <Compile Include="ConfigHelper.cs" />
  66. <Compile Include="EnumHelper.cs" />
  67. <Compile Include="HttpHelper.cs" />
  68. <Compile Include="IOC.cs" />
  69. <Compile Include="JsonExtensions.cs" />
  70. <Compile Include="LogHelper.cs" />
  71. <Compile Include="NetHelper.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <Compile Include="SqlHelper.cs" />
  74. <Compile Include="StringHelper.cs" />
  75. <Compile Include="SystemExtensions.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <None Include="job_scheduling_data_2_0.xsd">
  79. <SubType>Designer</SubType>
  80. </None>
  81. <None Include="packages.config" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <ProjectReference Include="..\SCC.Models\SCC.Models.csproj">
  85. <Project>{CB2988D4-4E7F-4F53-9CBA-4508B483F3CA}</Project>
  86. <Name>SCC.Models</Name>
  87. </ProjectReference>
  88. </ItemGroup>
  89. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  90. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>