Pas.ScadaService.csproj 4.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>{29BBE607-0170-43DE-A58F-8BCCCC4C27EB}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>Pas.ScadaService</RootNamespace>
  10. <AssemblyName>Pas.ScadaService</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</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. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="FreeSql, Version=3.2.822.0, Culture=neutral, PublicKeyToken=a33928e5d4a4b39c, processorArchitecture=MSIL">
  37. <HintPath>..\packages\FreeSql.3.2.822\lib\net451\FreeSql.dll</HintPath>
  38. </Reference>
  39. <Reference Include="FreeSql.Provider.SqlServer, Version=3.2.822.0, Culture=neutral, PublicKeyToken=d313b98af285bd88, processorArchitecture=MSIL">
  40. <HintPath>..\packages\FreeSql.Provider.SqlServer.3.2.822\lib\net451\FreeSql.Provider.SqlServer.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Microsoft.VisualBasic" />
  43. <Reference Include="NewLife.Core, Version=10.10.2024.507, Culture=neutral, PublicKeyToken=8343210f0b524456, processorArchitecture=MSIL">
  44. <HintPath>..\packages\NewLife.Core.10.10.2024.507\lib\net461\NewLife.Core.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  47. <HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  48. </Reference>
  49. <Reference Include="OPC_Client">
  50. <HintPath>..\DLL\OPC_Client.dll</HintPath>
  51. </Reference>
  52. <Reference Include="Spring.EL, Version=1.0.5.0, Culture=neutral, processorArchitecture=MSIL">
  53. <HintPath>..\packages\Spring.EL.1.0.5\lib\net45\Spring.EL.dll</HintPath>
  54. </Reference>
  55. <Reference Include="System" />
  56. <Reference Include="System.Configuration" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Data.SqlClient, Version=4.6.1.5, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  59. <HintPath>..\packages\System.Data.SqlClient.4.8.5\lib\net461\System.Data.SqlClient.dll</HintPath>
  60. </Reference>
  61. <Reference Include="System.IO.Compression" />
  62. <Reference Include="System.Management" />
  63. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  64. <HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
  65. </Reference>
  66. <Reference Include="System.Web" />
  67. <Reference Include="System.Windows.Forms" />
  68. <Reference Include="System.Xml.Linq" />
  69. <Reference Include="System.Data.DataSetExtensions" />
  70. <Reference Include="Microsoft.CSharp" />
  71. <Reference Include="System.Data" />
  72. <Reference Include="System.Net.Http" />
  73. <Reference Include="System.Xml" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <Compile Include="Core\GopTimeCalc.cs" />
  77. <Compile Include="Core\ScadaService.cs" />
  78. <Compile Include="Model\ConditionDto.cs" />
  79. <Compile Include="Model\CustomerBase.cs" />
  80. <Compile Include="Model\CustomLive.cs" />
  81. <Compile Include="Model\ResultData.cs" />
  82. <Compile Include="Program.cs" />
  83. <Compile Include="Properties\AssemblyInfo.cs" />
  84. <Compile Include="StartUp.cs" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <None Include="App.config">
  88. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  89. </None>
  90. <None Include="config.json" />
  91. <None Include="packages.config" />
  92. <None Include="采集点位.csv">
  93. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  94. </None>
  95. </ItemGroup>
  96. <ItemGroup />
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. </Project>