WindowsService.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" 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>{5FFE9239-1D64-41FA-8C68-43000383E5CA}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>WindowsService</RootNamespace>
  11. <AssemblyName>WindowsService</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <PlatformTarget>AnyCPU</PlatformTarget>
  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="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System" />
  40. <Reference Include="System.Configuration" />
  41. <Reference Include="System.Configuration.Install" />
  42. <Reference Include="System.Core" />
  43. <Reference Include="System.Management" />
  44. <Reference Include="System.Net.Http" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.ServiceProcess" />
  50. <Reference Include="System.Xml" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="DataProvider.cs" />
  54. <Compile Include="ProjectInstaller.cs">
  55. <SubType>Component</SubType>
  56. </Compile>
  57. <Compile Include="ProjectInstaller.Designer.cs">
  58. <DependentUpon>ProjectInstaller.cs</DependentUpon>
  59. </Compile>
  60. <Compile Include="Service1.cs">
  61. <SubType>Component</SubType>
  62. </Compile>
  63. <Compile Include="Service1.Designer.cs">
  64. <DependentUpon>Service1.cs</DependentUpon>
  65. </Compile>
  66. <Compile Include="Program.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Include="App.config" />
  71. <None Include="packages.config" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\ConsoleDataSync\ConsoleDataSync.csproj">
  75. <Project>{e3d347ca-5fb3-44e0-b6b1-431d616a59c0}</Project>
  76. <Name>ConsoleDataSync</Name>
  77. </ProjectReference>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <EmbeddedResource Include="ProjectInstaller.resx">
  81. <DependentUpon>ProjectInstaller.cs</DependentUpon>
  82. </EmbeddedResource>
  83. </ItemGroup>
  84. <ItemGroup>
  85. <WCFMetadata Include="Service References\" />
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>