BackGroundService.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>{7D394678-78D2-49B4-9B54-7D7A83F80118}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BackGroundService</RootNamespace>
  11. <AssemblyName>BackGroundService</AssemblyName>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  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. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  34. <DebugSymbols>true</DebugSymbols>
  35. <OutputPath>bin\x64\Debug\</OutputPath>
  36. <DefineConstants>DEBUG;TRACE</DefineConstants>
  37. <DebugType>full</DebugType>
  38. <PlatformTarget>x64</PlatformTarget>
  39. <LangVersion>7.3</LangVersion>
  40. <ErrorReport>prompt</ErrorReport>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  43. <OutputPath>bin\x64\Release\</OutputPath>
  44. <DefineConstants>TRACE</DefineConstants>
  45. <Optimize>true</Optimize>
  46. <DebugType>pdbonly</DebugType>
  47. <PlatformTarget>x64</PlatformTarget>
  48. <LangVersion>7.3</LangVersion>
  49. <ErrorReport>prompt</ErrorReport>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Reference Include="System" />
  53. <Reference Include="System.Core" />
  54. <Reference Include="System.Xml.Linq" />
  55. <Reference Include="System.Data.DataSetExtensions" />
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Net.Http" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="BackgroundService.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <ProjectReference Include="..\AppSession\AppSession.csproj">
  67. <Project>{67abe38f-38c5-430e-a834-6a4b2a4d9434}</Project>
  68. <Name>AppSession</Name>
  69. </ProjectReference>
  70. <ProjectReference Include="..\DataService\DataService.csproj">
  71. <Project>{61d6f9a5-869d-486d-9340-57dbd6eec80d}</Project>
  72. <Name>DataService</Name>
  73. </ProjectReference>
  74. <ProjectReference Include="..\Model\Model.csproj">
  75. <Project>{a9222c43-a5ba-4010-b7c8-eba38c31f9fc}</Project>
  76. <Name>Model</Name>
  77. </ProjectReference>
  78. <ProjectReference Include="..\PlcCom\PlcCom.csproj">
  79. <Project>{c4417822-36e9-48df-a0cd-2122e397b615}</Project>
  80. <Name>PlcCom</Name>
  81. </ProjectReference>
  82. <ProjectReference Include="..\PlcUiControl\UiControl.csproj">
  83. <Project>{883bbee5-00fb-434e-8a1e-76291c478aef}</Project>
  84. <Name>UiControl</Name>
  85. </ProjectReference>
  86. <ProjectReference Include="..\StandardLibrary\StandardLibrary.csproj">
  87. <Project>{EF2D4242-FD78-4138-B140-56FDD9FFCB27}</Project>
  88. <Name>StandardLibrary</Name>
  89. </ProjectReference>
  90. </ItemGroup>
  91. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  92. </Project>