CCS.csproj 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <AssemblyName>IMCS_CCS</AssemblyName>
  5. <RootNamespace>IMCS_CCS</RootNamespace>
  6. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Microsoft.NETCore.Targets" Version="3.0.0" PrivateAssets="all" />
  10. <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
  11. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.0" />
  12. <PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.22" />
  13. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  14. <PackageReference Include="Quartz" Version="3.8.1" />
  15. <PackageReference Include="StackExchange.Redis" Version="2.7.33" />
  16. <PackageReference Include="NLog.Web.AspNetCore" Version="5.3.8" />
  17. <PackageReference Include="Flurl.Http" Version="4.0.2" />
  18. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
  19. <PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="8.0.1" />
  20. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.4.1" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Reference Include="FTP">
  24. <HintPath>bin\Debug\netcoreapp3.1\FTP.dll</HintPath>
  25. </Reference>
  26. <Reference Include="HslCommunication">
  27. <HintPath>bin\Debug\netcoreapp3.1\HslCommunication.dll</HintPath>
  28. </Reference>
  29. <Reference Include="Opc.Ua.Client">
  30. <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\Opc.Ua.Client.dll</HintPath>
  31. </Reference>
  32. <Reference Include="Opc.Ua.Core">
  33. <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\Opc.Ua.Core.dll</HintPath>
  34. </Reference>
  35. <Reference Include="S7.Net">
  36. <HintPath>bin\Debug\netcoreapp3.1\S7.Net.dll</HintPath>
  37. </Reference>
  38. <Reference Include="Siemens.OpcUA">
  39. <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\Siemens.OpcUA.dll</HintPath>
  40. </Reference>
  41. <Reference Include="SinumerikOpcUaAPI">
  42. <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\SinumerikOpcUaAPI.dll</HintPath>
  43. </Reference>
  44. <Reference Include="StackExchange.Redis">
  45. <HintPath>bin\Debug\netcoreapp3.1\StackExchange.Redis.dll</HintPath>
  46. </Reference>
  47. <Reference Include="UAClientHelperAPI">
  48. <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\UAClientHelperAPI.dll</HintPath>
  49. </Reference>
  50. <Reference Include="WinSCPnet">
  51. <HintPath>bin\Debug\netcoreapp3.1\WinSCPnet.dll</HintPath>
  52. </Reference>
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Content Update="wwwroot\db\Projects.json">
  56. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  57. </Content>
  58. <Content Update="wwwroot\db\Tasks.json">
  59. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  60. </Content>
  61. </ItemGroup>
  62. <ItemGroup>
  63. <None Update="IMCS.CCS.xml">
  64. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  65. </None>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Folder Include="Device\body\" />
  69. <Folder Include="Extend\" />
  70. </ItemGroup>
  71. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  72. <DocumentationFile>IMCS.CCS.xml</DocumentationFile>
  73. <NoWarn>1701;1702;1591</NoWarn>
  74. </PropertyGroup>
  75. <ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" properties_4launchsettings_1json__JsonSchema="" wwwroot_4db_4projects_1json__JsonSchema="https://asyncapi.com/schema-store/2.4.0.json" wwwroot_4db_4tasks_1json__JsonSchema="https://asyncapi.com/schema-store/2.4.0.json" /></VisualStudio></ProjectExtensions>
  76. </Project>