123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <AssemblyName>IMCS_CCS</AssemblyName>
- <RootNamespace>IMCS_CCS</RootNamespace>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.NETCore.Targets" Version="3.0.0" PrivateAssets="all" />
- <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
- <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.0" />
- <PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.22" />
- <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
- <PackageReference Include="Quartz" Version="3.8.1" />
- <PackageReference Include="StackExchange.Redis" Version="2.7.33" />
- <PackageReference Include="NLog.Web.AspNetCore" Version="5.3.8" />
- <PackageReference Include="Flurl.Http" Version="4.0.2" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
- <PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="8.0.1" />
- <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.4.1" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="FTP">
- <HintPath>bin\Debug\netcoreapp3.1\FTP.dll</HintPath>
- </Reference>
- <Reference Include="HslCommunication">
- <HintPath>bin\Debug\netcoreapp3.1\HslCommunication.dll</HintPath>
- </Reference>
- <Reference Include="Opc.Ua.Client">
- <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\Opc.Ua.Client.dll</HintPath>
- </Reference>
- <Reference Include="Opc.Ua.Core">
- <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\Opc.Ua.Core.dll</HintPath>
- </Reference>
- <Reference Include="S7.Net">
- <HintPath>bin\Debug\netcoreapp3.1\S7.Net.dll</HintPath>
- </Reference>
- <Reference Include="Siemens.OpcUA">
- <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\Siemens.OpcUA.dll</HintPath>
- </Reference>
- <Reference Include="SinumerikOpcUaAPI">
- <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\SinumerikOpcUaAPI.dll</HintPath>
- </Reference>
- <Reference Include="StackExchange.Redis">
- <HintPath>bin\Debug\netcoreapp3.1\StackExchange.Redis.dll</HintPath>
- </Reference>
- <Reference Include="UAClientHelperAPI">
- <HintPath>C:\Users\admin\source\repos\ccs_http_server\opcua\dll\UAClientHelperAPI.dll</HintPath>
- </Reference>
- <Reference Include="WinSCPnet">
- <HintPath>bin\Debug\netcoreapp3.1\WinSCPnet.dll</HintPath>
- </Reference>
- </ItemGroup>
-
- <ItemGroup>
- <Content Update="wwwroot\db\Projects.json">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- <Content Update="wwwroot\db\Tasks.json">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Update="IMCS.CCS.xml">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Device\body\" />
- <Folder Include="Extend\" />
- </ItemGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DocumentationFile>IMCS.CCS.xml</DocumentationFile>
- <NoWarn>1701;1702;1591</NoWarn>
- </PropertyGroup>
- <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>
- </Project>
|