CCS.csproj 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <AssemblyName>IMCS_CCS</AssemblyName>
  5. <RootNamespace>IMCS_CCS</RootNamespace>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
  9. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="5.0.1" />
  10. <PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.22" />
  11. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  12. <PackageReference Include="Quartz" Version="3.3.2" />
  13. <PackageReference Include="StackExchange.Redis" Version="2.2.62" />
  14. <PackageReference Include="NLog.Web.AspNetCore" Version="4.12.0" />
  15. <PackageReference Include="Flurl.Http" Version="3.2.0" />
  16. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
  17. <PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="7.0.2" />
  18. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.11.0" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Reference Include="FTP">
  22. <HintPath>bin\Debug\netcoreapp3.1\FTP.dll</HintPath>
  23. </Reference>
  24. <Reference Include="HslCommunication">
  25. <HintPath>bin\Debug\netcoreapp3.1\HslCommunication.dll</HintPath>
  26. </Reference>
  27. <Reference Include="Opc.Ua.Client">
  28. <HintPath>bin\Debug\netcoreapp3.1\Opc.Ua.Client.dll</HintPath>
  29. </Reference>
  30. <Reference Include="Opc.Ua.Core">
  31. <HintPath>bin\Debug\netcoreapp3.1\Opc.Ua.Core.dll</HintPath>
  32. </Reference>
  33. <Reference Include="S7.Net">
  34. <HintPath>bin\Debug\netcoreapp3.1\S7.Net.dll</HintPath>
  35. </Reference>
  36. <Reference Include="Siemens.OpcUA">
  37. <HintPath>bin\Debug\netcoreapp3.1\Siemens.OpcUA.dll</HintPath>
  38. </Reference>
  39. <Reference Include="StackExchange.Redis">
  40. <HintPath>bin\Debug\netcoreapp3.1\StackExchange.Redis.dll</HintPath>
  41. </Reference>
  42. <Reference Include="WinSCPnet">
  43. <HintPath>bin\Debug\netcoreapp3.1\WinSCPnet.dll</HintPath>
  44. </Reference>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Content Update="wwwroot\db\Projects.json">
  48. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  49. </Content>
  50. <Content Update="wwwroot\db\Tasks.json">
  51. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  52. </Content>
  53. </ItemGroup>
  54. <ItemGroup>
  55. <None Update="IMCS.CCS.xml">
  56. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  57. </None>
  58. </ItemGroup>
  59. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  60. <DocumentationFile>IMCS.CCS.xml</DocumentationFile>
  61. <NoWarn>1701;1702;1591</NoWarn>
  62. </PropertyGroup>
  63. <ProjectExtensions><VisualStudio><UserProperties 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>
  64. </Project>