AipGateway.FileJob.Scheduler.csproj 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>{FBB9A43E-1CE2-44ED-A39F-91EF79F4ED9E}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>AipGateway.FileJob.Scheduler</RootNamespace>
  10. <AssemblyName>AipGateway.FileJob.Scheduler</AssemblyName>
  11. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <StartupObject />
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <ApplicationIcon>application.ico</ApplicationIcon>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.Core" />
  46. <Reference Include="System.Xml.Linq" />
  47. <Reference Include="System.Data.DataSetExtensions" />
  48. <Reference Include="Microsoft.CSharp" />
  49. <Reference Include="System.Data" />
  50. <Reference Include="System.Net.Http" />
  51. <Reference Include="System.ServiceProcess" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="Helper.cs" />
  56. <Compile Include="Service.cs">
  57. <SubType>Component</SubType>
  58. </Compile>
  59. <Compile Include="Service.Designer.cs">
  60. <DependentUpon>Service.cs</DependentUpon>
  61. </Compile>
  62. <Compile Include="Program.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="ServiceManager.cs" />
  65. <Compile Include="ServiceManagerNative.cs" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <None Include="App.config" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <PackageReference Include="System.Configuration.ConfigurationManager">
  72. <Version>8.0.0</Version>
  73. </PackageReference>
  74. </ItemGroup>
  75. <ItemGroup>
  76. <Content Include="application.ico" />
  77. </ItemGroup>
  78. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  79. </Project>