change package reference for h-opc used in Modbus.Net

This commit is contained in:
luosheng
2023-02-17 08:23:16 +08:00
parent 816ea6a3aa
commit 008f895193
2 changed files with 24 additions and 4 deletions

View File

@@ -2,6 +2,10 @@
using Opc.Ua; using Opc.Ua;
using Opc.Ua.Client; using Opc.Ua.Client;
using Opc.Ua.Configuration; using Opc.Ua.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Hylasoft.Opc.Ua namespace Hylasoft.Opc.Ua
{ {

View File

@@ -1,10 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFrameworks>net6.0</TargetFrameworks>
<RootNamespace>h_opc</RootNamespace> <AssemblyName>h-opc-ua</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings> <RootNamespace>Hylasoft.Opc</RootNamespace>
<Nullable>enable</Nullable> <PackageId>h-opc-ua</PackageId>
<Version>0.9.3</Version>
<Product>Modbus.Net</Product>
<Authors>Chris L.(Luo Sheng)</Authors>
<Company>Hangzhou Delian Science Technology Co.,Ltd.</Company>
<PackageProjectUrl>https://github.com/parallelbgls/Modbus.Net/tree/master/Modbus.Net</PackageProjectUrl>
<RepositoryUrl>https://github.com/parallelbgls/Modbus.Net/</RepositoryUrl>
<Description>High extensible hardware communication implementation platform.</Description>
<Copyright>Copyright 2023 Hangzhou Delian Science Technology Co.,Ltd.</Copyright>
<PackageTags>hardware communicate protocol Delian</PackageTags>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>True</IncludeSymbols>
<IncludeSource>True</IncludeSource>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@@ -12,3 +27,4 @@
</ItemGroup> </ItemGroup>
</Project> </Project>