From 93f55116470c0f8e1bb8ec617a784dba17bda6d0 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Sun, 29 Sep 2024 14:43:47 +0000 Subject: [PATCH] Generated 2021-12-21 for wss. --- CHANGELOG | 3 + .../DescribeDeliveryAddressRequest.cs | 49 +++ .../DescribeDeliveryAddressResponse.cs | 328 ++++++++++++++++++ .../DescribePackageDeductionsRequest.cs | 124 +++++++ .../DescribePackageDeductionsResponse.cs | 298 ++++++++++++++++ ...ribeDeliveryAddressResponseUnmarshaller.cs | 73 ++++ ...bePackageDeductionsResponseUnmarshaller.cs | 64 ++++ .../aliyun-net-sdk-wss.vs2017.csproj | 42 +++ 8 files changed, 981 insertions(+) create mode 100644 aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressRequest.cs create mode 100644 aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressResponse.cs create mode 100644 aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsRequest.cs create mode 100644 aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsResponse.cs create mode 100644 aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribeDeliveryAddressResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribePackageDeductionsResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-wss/aliyun-net-sdk-wss.vs2017.csproj diff --git a/CHANGELOG b/CHANGELOG index 8aeb3c5da..0210d296b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2024-09-29 Version: 1.0.0 +- Generated 2021-12-21 for `wss`. + 2024-09-24 Version: 1.0.0 - Generated 2024-02-22 for `OssSddp`. diff --git a/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressRequest.cs b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressRequest.cs new file mode 100644 index 000000000..5d91d83f4 --- /dev/null +++ b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressRequest.cs @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; + +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Http; +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.Core.Utils; +using Aliyun.Acs.wss; +using Aliyun.Acs.wss.Transform; +using Aliyun.Acs.wss.Transform.V20211221; + +namespace Aliyun.Acs.wss.Model.V20211221 +{ + public class DescribeDeliveryAddressRequest : RpcAcsRequest + { + public DescribeDeliveryAddressRequest() + : base("wss", "2021-12-21", "DescribeDeliveryAddress") + { + Method = MethodType.POST; + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override DescribeDeliveryAddressResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return DescribeDeliveryAddressResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressResponse.cs b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressResponse.cs new file mode 100644 index 000000000..01a6a43be --- /dev/null +++ b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribeDeliveryAddressResponse.cs @@ -0,0 +1,328 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.wss.Model.V20211221 +{ + public class DescribeDeliveryAddressResponse : AcsResponse + { + + private int? totalCount; + + private string requestId; + + private List addresses; + + public int? TotalCount + { + get + { + return totalCount; + } + set + { + totalCount = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public List Addresses + { + get + { + return addresses; + } + set + { + addresses = value; + } + } + + public class DescribeDeliveryAddress_Address + { + + private string postalCode; + + private string contacts; + + private string mobile; + + private bool? defaultAddress; + + private string detail; + + private DescribeDeliveryAddress_Province province; + + private DescribeDeliveryAddress_City city; + + private DescribeDeliveryAddress_Area area; + + private DescribeDeliveryAddress_Town town; + + public string PostalCode + { + get + { + return postalCode; + } + set + { + postalCode = value; + } + } + + public string Contacts + { + get + { + return contacts; + } + set + { + contacts = value; + } + } + + public string Mobile + { + get + { + return mobile; + } + set + { + mobile = value; + } + } + + public bool? DefaultAddress + { + get + { + return defaultAddress; + } + set + { + defaultAddress = value; + } + } + + public string Detail + { + get + { + return detail; + } + set + { + detail = value; + } + } + + public DescribeDeliveryAddress_Province Province + { + get + { + return province; + } + set + { + province = value; + } + } + + public DescribeDeliveryAddress_City City + { + get + { + return city; + } + set + { + city = value; + } + } + + public DescribeDeliveryAddress_Area Area + { + get + { + return area; + } + set + { + area = value; + } + } + + public DescribeDeliveryAddress_Town Town + { + get + { + return town; + } + set + { + town = value; + } + } + + public class DescribeDeliveryAddress_Province + { + + private long? provinceId; + + private string provinceName; + + public long? ProvinceId + { + get + { + return provinceId; + } + set + { + provinceId = value; + } + } + + public string ProvinceName + { + get + { + return provinceName; + } + set + { + provinceName = value; + } + } + } + + public class DescribeDeliveryAddress_City + { + + private long? cityId; + + private string cityName; + + public long? CityId + { + get + { + return cityId; + } + set + { + cityId = value; + } + } + + public string CityName + { + get + { + return cityName; + } + set + { + cityName = value; + } + } + } + + public class DescribeDeliveryAddress_Area + { + + private string areaName; + + private long? areaId; + + public string AreaName + { + get + { + return areaName; + } + set + { + areaName = value; + } + } + + public long? AreaId + { + get + { + return areaId; + } + set + { + areaId = value; + } + } + } + + public class DescribeDeliveryAddress_Town + { + + private string townName; + + private long? townId; + + public string TownName + { + get + { + return townName; + } + set + { + townName = value; + } + } + + public long? TownId + { + get + { + return townId; + } + set + { + townId = value; + } + } + } + } + } +} diff --git a/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsRequest.cs b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsRequest.cs new file mode 100644 index 000000000..2ef8e8bb4 --- /dev/null +++ b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsRequest.cs @@ -0,0 +1,124 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; + +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Http; +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.Core.Utils; +using Aliyun.Acs.wss; +using Aliyun.Acs.wss.Transform; +using Aliyun.Acs.wss.Transform.V20211221; + +namespace Aliyun.Acs.wss.Model.V20211221 +{ + public class DescribePackageDeductionsRequest : RpcAcsRequest + { + public DescribePackageDeductionsRequest() + : base("wss", "2021-12-21", "DescribePackageDeductions") + { + Method = MethodType.POST; + } + + private int? pageNum; + + private string resourceType; + + private List packageIdss = new List(){ }; + + private List instanceIdss = new List(){ }; + + private int? pageSize; + + public int? PageNum + { + get + { + return pageNum; + } + set + { + pageNum = value; + DictionaryUtil.Add(QueryParameters, "PageNum", value.ToString()); + } + } + + public string ResourceType + { + get + { + return resourceType; + } + set + { + resourceType = value; + DictionaryUtil.Add(QueryParameters, "ResourceType", value); + } + } + + public List PackageIdss + { + get + { + return packageIdss; + } + + set + { + packageIdss = value; + } + } + + public List InstanceIdss + { + get + { + return instanceIdss; + } + + set + { + instanceIdss = value; + } + } + + public int? PageSize + { + get + { + return pageSize; + } + set + { + pageSize = value; + DictionaryUtil.Add(QueryParameters, "PageSize", value.ToString()); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override DescribePackageDeductionsResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return DescribePackageDeductionsResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsResponse.cs b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsResponse.cs new file mode 100644 index 000000000..a30491db5 --- /dev/null +++ b/aliyun-net-sdk-wss/Wss/Model/V20211221/DescribePackageDeductionsResponse.cs @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.wss.Model.V20211221 +{ + public class DescribePackageDeductionsResponse : AcsResponse + { + + private int? pageNum; + + private string requestId; + + private int? pageSize; + + private long? totalCount; + + private List deductions; + + public int? PageNum + { + get + { + return pageNum; + } + set + { + pageNum = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public int? PageSize + { + get + { + return pageSize; + } + set + { + pageSize = value; + } + } + + public long? TotalCount + { + get + { + return totalCount; + } + set + { + totalCount = value; + } + } + + public List Deductions + { + get + { + return deductions; + } + set + { + deductions = value; + } + } + + public class DescribePackageDeductions_Deduction + { + + private string desktopName; + + private string desktopId; + + private string regionId; + + private string desktopType; + + private string osType; + + private string staTime; + + private string endTime; + + private string resourceType; + + private long? usedTime; + + private float? usedCoreTime; + + private string instanceState; + + private long? memory; + + private int? cpu; + + private string gpu; + + public string DesktopName + { + get + { + return desktopName; + } + set + { + desktopName = value; + } + } + + public string DesktopId + { + get + { + return desktopId; + } + set + { + desktopId = value; + } + } + + public string RegionId + { + get + { + return regionId; + } + set + { + regionId = value; + } + } + + public string DesktopType + { + get + { + return desktopType; + } + set + { + desktopType = value; + } + } + + public string OsType + { + get + { + return osType; + } + set + { + osType = value; + } + } + + public string StaTime + { + get + { + return staTime; + } + set + { + staTime = value; + } + } + + public string EndTime + { + get + { + return endTime; + } + set + { + endTime = value; + } + } + + public string ResourceType + { + get + { + return resourceType; + } + set + { + resourceType = value; + } + } + + public long? UsedTime + { + get + { + return usedTime; + } + set + { + usedTime = value; + } + } + + public float? UsedCoreTime + { + get + { + return usedCoreTime; + } + set + { + usedCoreTime = value; + } + } + + public string InstanceState + { + get + { + return instanceState; + } + set + { + instanceState = value; + } + } + + public long? Memory + { + get + { + return memory; + } + set + { + memory = value; + } + } + + public int? Cpu + { + get + { + return cpu; + } + set + { + cpu = value; + } + } + + public string Gpu + { + get + { + return gpu; + } + set + { + gpu = value; + } + } + } + } +} diff --git a/aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribeDeliveryAddressResponseUnmarshaller.cs b/aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribeDeliveryAddressResponseUnmarshaller.cs new file mode 100644 index 000000000..cb5e8ac90 --- /dev/null +++ b/aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribeDeliveryAddressResponseUnmarshaller.cs @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System; +using System.Collections.Generic; + +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.wss.Model.V20211221; + +namespace Aliyun.Acs.wss.Transform.V20211221 +{ + public class DescribeDeliveryAddressResponseUnmarshaller + { + public static DescribeDeliveryAddressResponse Unmarshall(UnmarshallerContext _ctx) + { + DescribeDeliveryAddressResponse describeDeliveryAddressResponse = new DescribeDeliveryAddressResponse(); + + describeDeliveryAddressResponse.HttpResponse = _ctx.HttpResponse; + describeDeliveryAddressResponse.TotalCount = _ctx.IntegerValue("DescribeDeliveryAddress.TotalCount"); + describeDeliveryAddressResponse.RequestId = _ctx.StringValue("DescribeDeliveryAddress.RequestId"); + + List describeDeliveryAddressResponse_addresses = new List(); + for (int i = 0; i < _ctx.Length("DescribeDeliveryAddress.Addresses.Length"); i++) { + DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address address = new DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address(); + address.PostalCode = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].PostalCode"); + address.Contacts = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].Contacts"); + address.Mobile = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].Mobile"); + address.DefaultAddress = _ctx.BooleanValue("DescribeDeliveryAddress.Addresses["+ i +"].DefaultAddress"); + address.Detail = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].Detail"); + + DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_Province province = new DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_Province(); + province.ProvinceId = _ctx.LongValue("DescribeDeliveryAddress.Addresses["+ i +"].Province.ProvinceId"); + province.ProvinceName = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].Province.ProvinceName"); + address.Province = province; + + DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_City city = new DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_City(); + city.CityId = _ctx.LongValue("DescribeDeliveryAddress.Addresses["+ i +"].City.CityId"); + city.CityName = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].City.CityName"); + address.City = city; + + DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_Area area = new DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_Area(); + area.AreaName = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].Area.AreaName"); + area.AreaId = _ctx.LongValue("DescribeDeliveryAddress.Addresses["+ i +"].Area.AreaId"); + address.Area = area; + + DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_Town town = new DescribeDeliveryAddressResponse.DescribeDeliveryAddress_Address.DescribeDeliveryAddress_Town(); + town.TownName = _ctx.StringValue("DescribeDeliveryAddress.Addresses["+ i +"].Town.TownName"); + town.TownId = _ctx.LongValue("DescribeDeliveryAddress.Addresses["+ i +"].Town.TownId"); + address.Town = town; + + describeDeliveryAddressResponse_addresses.Add(address); + } + describeDeliveryAddressResponse.Addresses = describeDeliveryAddressResponse_addresses; + + return describeDeliveryAddressResponse; + } + } +} diff --git a/aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribePackageDeductionsResponseUnmarshaller.cs b/aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribePackageDeductionsResponseUnmarshaller.cs new file mode 100644 index 000000000..69829629d --- /dev/null +++ b/aliyun-net-sdk-wss/Wss/Transform/V20211221/DescribePackageDeductionsResponseUnmarshaller.cs @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System; +using System.Collections.Generic; + +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.wss.Model.V20211221; + +namespace Aliyun.Acs.wss.Transform.V20211221 +{ + public class DescribePackageDeductionsResponseUnmarshaller + { + public static DescribePackageDeductionsResponse Unmarshall(UnmarshallerContext _ctx) + { + DescribePackageDeductionsResponse describePackageDeductionsResponse = new DescribePackageDeductionsResponse(); + + describePackageDeductionsResponse.HttpResponse = _ctx.HttpResponse; + describePackageDeductionsResponse.PageNum = _ctx.IntegerValue("DescribePackageDeductions.PageNum"); + describePackageDeductionsResponse.RequestId = _ctx.StringValue("DescribePackageDeductions.RequestId"); + describePackageDeductionsResponse.PageSize = _ctx.IntegerValue("DescribePackageDeductions.PageSize"); + describePackageDeductionsResponse.TotalCount = _ctx.LongValue("DescribePackageDeductions.TotalCount"); + + List describePackageDeductionsResponse_deductions = new List(); + for (int i = 0; i < _ctx.Length("DescribePackageDeductions.Deductions.Length"); i++) { + DescribePackageDeductionsResponse.DescribePackageDeductions_Deduction deduction = new DescribePackageDeductionsResponse.DescribePackageDeductions_Deduction(); + deduction.DesktopName = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].DesktopName"); + deduction.DesktopId = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].DesktopId"); + deduction.RegionId = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].RegionId"); + deduction.DesktopType = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].DesktopType"); + deduction.OsType = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].OsType"); + deduction.StaTime = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].StaTime"); + deduction.EndTime = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].EndTime"); + deduction.ResourceType = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].ResourceType"); + deduction.UsedTime = _ctx.LongValue("DescribePackageDeductions.Deductions["+ i +"].UsedTime"); + deduction.UsedCoreTime = _ctx.FloatValue("DescribePackageDeductions.Deductions["+ i +"].UsedCoreTime"); + deduction.InstanceState = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].InstanceState"); + deduction.Memory = _ctx.LongValue("DescribePackageDeductions.Deductions["+ i +"].Memory"); + deduction.Cpu = _ctx.IntegerValue("DescribePackageDeductions.Deductions["+ i +"].Cpu"); + deduction.Gpu = _ctx.StringValue("DescribePackageDeductions.Deductions["+ i +"].Gpu"); + + describePackageDeductionsResponse_deductions.Add(deduction); + } + describePackageDeductionsResponse.Deductions = describePackageDeductionsResponse_deductions; + + return describePackageDeductionsResponse; + } + } +} diff --git a/aliyun-net-sdk-wss/aliyun-net-sdk-wss.vs2017.csproj b/aliyun-net-sdk-wss/aliyun-net-sdk-wss.vs2017.csproj new file mode 100644 index 000000000..06066856c --- /dev/null +++ b/aliyun-net-sdk-wss/aliyun-net-sdk-wss.vs2017.csproj @@ -0,0 +1,42 @@ + + + + netstandard2.0;net45 + Aliyun.Acs.wss + 1.0.0 + Alibaba Cloud + ©2009-2019 Alibaba Cloud + false + https://raw.githubusercontent.com/aliyun/aliyun-openapi-net-sdk/master/LICENSE + https://github.com/aliyun/aliyun-openapi-net-sdk + https://www.alibabacloud.com/favicon.ico + Alibaba Cloud SDK for .NET + + alibaba aliyun SDK wss + aliyun-net-sdk-wss + + + + + + + all + runtime; build; native; contentfiles; analyzers + + + + + + + + + + + + + + + + + + \ No newline at end of file