CCS.csproj 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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="S7.Net">
  28. <HintPath>bin\Debug\netcoreapp3.1\S7.Net.dll</HintPath>
  29. </Reference>
  30. <Reference Include="StackExchange.Redis">
  31. <HintPath>bin\Debug\netcoreapp3.1\StackExchange.Redis.dll</HintPath>
  32. </Reference>
  33. <Reference Include="WinSCPnet">
  34. <HintPath>bin\Debug\netcoreapp3.1\WinSCPnet.dll</HintPath>
  35. </Reference>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Content Update="wwwroot\db\Projects.json">
  39. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  40. </Content>
  41. <Content Update="wwwroot\db\Tasks.json">
  42. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  43. </Content>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <None Update="IMCS.CCS.xml">
  47. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  48. </None>
  49. </ItemGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  51. <DocumentationFile>IMCS.CCS.xml</DocumentationFile>
  52. <NoWarn>1701;1702;1591</NoWarn>
  53. </PropertyGroup>
  54. <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>
  55. </Project>