IoTSharp.Edge.ModBus.csproj 1.6 KB
Newer Older
1 2 3
<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
麦壳饼's avatar
麦壳饼 已提交
4
    <TargetFramework>netcoreapp3.0</TargetFramework>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
    <AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
  </PropertyGroup>

  <ItemGroup>
    <Compile Remove="LogFiles\**" />
    <Content Remove="LogFiles\**" />
    <EmbeddedResource Remove="LogFiles\**" />
    <None Remove="LogFiles\**" />
  </ItemGroup>
 

  <ItemGroup>
    <Content Include="ise_modbus.service">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>

  <ItemGroup>
麦壳饼's avatar
麦壳饼 已提交
23
    <PackageReference Include="CrystalQuartz.AspNetCore" Version="6.8.1" />
24
    <PackageReference Include="HslCommunication" Version="6.2.5" />
麦壳饼's avatar
麦壳饼 已提交
25
  
26
    <PackageReference Include="Quartz" Version="3.0.7" />
麦壳饼's avatar
麦壳饼 已提交
27 28 29
    <PackageReference Include="QuartzHostedServiceEx" Version="0.0.7" />
    <PackageReference Include="System.ServiceModel.Duplex" Version="4.6.0" />
    <PackageReference Include="System.ServiceModel.Http" Version="4.6.0" />
30
    <PackageReference Include="System.ServiceModel.NetTcp" Version="4.7.0" />
麦壳饼's avatar
麦壳饼 已提交
31
    <PackageReference Include="System.ServiceModel.Security" Version="4.6.0" />
32
    <PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.0" />
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    <PackageReference Include="System.IO.Compression" Version="4.3.0" />
    <PackageReference Include="System.Memory" Version="4.5.3" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\IoTSharp.EdgeSdk.MQTT\IoTSharp.EdgeSdk.MQTT.csproj" />
  </ItemGroup>

  <ItemGroup>
    <Content Update="app.config">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>

</Project>