SCADA_DAQ.Service.csproj 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFrameworks>net47</TargetFrameworks>
  5. <Nullable>disable</Nullable>
  6. <BulidIndex>0</BulidIndex>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Compile Include="..\SCADA_DAQ\Customer\Jobs\CustomerJob.cs" Link="Customer\Jobs\CustomerJob.cs" />
  10. <Compile Include="..\SCADA_DAQ\Customer\Jobs\CustomerJobConfig.cs" Link="Customer\Jobs\CustomerJobConfig.cs" />
  11. <Compile Include="..\SCADA_DAQ\Customer\Service\CustomerService.cs" Link="Customer\Service\CustomerService.cs" />
  12. <Compile Include="..\SCADA_DAQ\Customer\Service\CustomerServiceConfig.cs" Link="Customer\Service\CustomerServiceConfig.cs" />
  13. <Compile Include="..\SCADA_DAQ\Customer\Service\LoginSevice.cs" Link="Customer\Service\LoginSevice.cs" />
  14. <Compile Include="..\SCADA_DAQ\ServiceHost.cs" Link="ServiceHost.cs" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <PackageReference Include="log4net" Version="2.0.14" />
  18. <PackageReference Include="Topshelf" Version="4.3.0" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\SCADA_DAQ.DAL\SCADA_DAQ.DAL.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Folder Include="Customer\Jobs\" />
  25. <Folder Include="x86\" />
  26. <Folder Include="x64\" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <None Include="..\SCADA_DAQ\x64\SQLite.Interop.dll" Link="x64\SQLite.Interop.dll">
  30. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  31. </None>
  32. <None Include="..\SCADA_DAQ\x86\SQLite.Interop.dll" Link="x86\SQLite.Interop.dll">
  33. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  34. </None>
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Reference Include="Microsoft.CSharp" />
  38. <Reference Include="Opc.Ua.Client">
  39. <HintPath>..\Lib\Opc.Ua.Client.dll</HintPath>
  40. <Private>False</Private>
  41. </Reference>
  42. <Reference Include="Opc.Ua.Configuration">
  43. <HintPath>..\Lib\Opc.Ua.Configuration.dll</HintPath>
  44. <Private>False</Private>
  45. </Reference>
  46. <Reference Include="Opc.Ua.Core">
  47. <HintPath>..\Lib\Opc.Ua.Core.dll</HintPath>
  48. <Private>False</Private>
  49. </Reference>
  50. <Reference Include="Opc.Ua.Server">
  51. <HintPath>..\Lib\Opc.Ua.Server.dll</HintPath>
  52. <Private>False</Private>
  53. </Reference>
  54. <Reference Include="Quartz">
  55. <HintPath>..\Lib\Quartz.dll</HintPath>
  56. </Reference>
  57. <Reference Include="SCADA">
  58. <HintPath>..\Lib\SCADA.dll</HintPath>
  59. </Reference>
  60. <Reference Include="SCADA.CommonLib">
  61. <HintPath>..\Lib\SCADA.CommonLib.dll</HintPath>
  62. </Reference>
  63. <Reference Include="SCADA_DAQ.Plugin.Core">
  64. <HintPath>..\Lib\SCADA_DAQ.Plugin.Core.dll</HintPath>
  65. <Private>False</Private>
  66. </Reference>
  67. <Reference Include="SCADA_DAQ.Plugin.Machine">
  68. <HintPath>..\Lib\SCADA_DAQ.Plugin.Machine.dll</HintPath>
  69. <Private>False</Private>
  70. </Reference>
  71. <Reference Include="SCADA_DAQ.Plugin.RESTful">
  72. <HintPath>..\Lib\SCADA_DAQ.Plugin.RESTful.dll</HintPath>
  73. <Private>False</Private>
  74. </Reference>
  75. <Reference Include="System.Data.SQLite">
  76. <HintPath>..\Lib\System.Data.SQLite.dll</HintPath>
  77. </Reference>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Compile Update="LocalResource.Designer.cs">
  81. <DependentUpon>LocalResource.resx</DependentUpon>
  82. <DesignTime>True</DesignTime>
  83. <AutoGen>True</AutoGen>
  84. </Compile>
  85. </ItemGroup>
  86. <ItemGroup>
  87. <EmbeddedResource Update="LocalResource.resx">
  88. <LastGenOutput>LocalResource.Designer.cs</LastGenOutput>
  89. <Generator>ResXFileCodeGenerator</Generator>
  90. </EmbeddedResource>
  91. </ItemGroup>
  92. <ItemGroup>
  93. <None Update="ScadaDaqInstall.cmd">
  94. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  95. </None>
  96. <None Update="ScadaDaqStart.cmd">
  97. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  98. </None>
  99. <None Update="ScadaDaqStop.cmd">
  100. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  101. </None>
  102. <None Update="ScadaDaqUnInstall.cmd">
  103. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  104. </None>
  105. </ItemGroup>
  106. </Project>