Skip to content

Commit 45bf76c

Browse files
committed
Drop .Net Standard 1.3 support
1 parent a572eff commit 45bf76c

6 files changed

Lines changed: 100 additions & 101 deletions

File tree

appveyor.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ image: Visual Studio 2017
44
configuration: Release
55

66
environment:
7-
package_version: '0.8.10'
7+
package_version: '0.9.0'
88

99
git_access_token:
1010
secure: kFNrVQrkAApceG8qiKcsgXAFx50qkY4Lfl2OLczSxwhEYbHh78AdPqyBn3P/JEjo

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ skip_tags: true
33
image: Visual Studio 2017
44

55
environment:
6-
package_version: '0.8.10'
6+
package_version: '0.9.0'
77

88
COVERALLS_REPO_TOKEN:
99
secure: o3Oj2doUP9AbvI5Phn28o+JHMk9W9P39yiyq1b3d96g0FoJ1loUm7PJ7GytUzxyO

src/CoAPNet.Dtls/CoAPNet.Dtls.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1313
<IncludeSource>True</IncludeSource>
1414
<IncludeSymbols>True</IncludeSymbols>
15+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1516
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
1617
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
1718
<RepositoryType>git</RepositoryType>
Lines changed: 32 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,39 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
5-
<DebugType Condition="$(Configuration)=='AppVeyor'">full</DebugType>
6-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
7-
<LangVersion>latest</LangVersion>
8-
<PackageId>NZSmartie.CoAPNet.Server</PackageId>
9-
<Version>0.3.8</Version>
10-
<PackageVersion>0.3.8</PackageVersion>
11-
<Authors>Roman Vaughan</Authors>
12-
<Company>NZSmartie</Company>
13-
<Description>Server and handler implementation for NZSmartie.CoAPNet</Description>
14-
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
15-
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
16-
<RepositoryType>git</RepositoryType>
17-
<PackageTags>CoAP IoT sensors devices hardware network protocol</PackageTags>
18-
<IncludeSource>True</IncludeSource>
19-
<IncludeSymbols>True</IncludeSymbols>
20-
<PackageReleaseNotes>See https://github.com/NZSmartie/CoAP.Net/tree/master/Changelog.md</PackageReleaseNotes>
21-
<Configurations>Debug;Release;AppVeyor</Configurations>
22-
<PackageLicenseUrl>https://raw.githubusercontent.com/NZSmartie/CoAP.Net/master/LICENSE</PackageLicenseUrl>
23-
<Copyright>Copyright © Roman Vaughan 2017</Copyright>
24-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
<DebugType Condition="$(Configuration)=='AppVeyor'">full</DebugType>
6+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
7+
<LangVersion>latest</LangVersion>
8+
<PackageId>NZSmartie.CoAPNet.Server</PackageId>
9+
<Version>0.3.8</Version>
10+
<PackageVersion>0.3.8</PackageVersion>
11+
<Authors>Roman Vaughan</Authors>
12+
<Company>NZSmartie</Company>
13+
<Description>Server and handler implementation for NZSmartie.CoAPNet</Description>
14+
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
15+
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
16+
<RepositoryType>git</RepositoryType>
17+
<PackageTags>CoAP IoT sensors devices hardware network protocol</PackageTags>
18+
<IncludeSource>True</IncludeSource>
19+
<IncludeSymbols>True</IncludeSymbols>
20+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
21+
<PackageReleaseNotes>See https://github.com/NZSmartie/CoAP.Net/tree/master/Changelog.md</PackageReleaseNotes>
22+
<Configurations>Debug;Release;AppVeyor</Configurations>
23+
<PackageLicenseUrl>https://raw.githubusercontent.com/NZSmartie/CoAP.Net/master/LICENSE</PackageLicenseUrl>
24+
<Copyright>Copyright © Roman Vaughan 2017</Copyright>
25+
</PropertyGroup>
2526

26-
<PropertyGroup>
27-
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CoAPNet.Server.xml</DocumentationFile>
28-
</PropertyGroup>
27+
<PropertyGroup>
28+
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CoAPNet.Server.xml</DocumentationFile>
29+
</PropertyGroup>
2930

30-
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
31-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.1.2" />
32-
</ItemGroup>
31+
<ItemGroup>
32+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
33+
</ItemGroup>
3334

34-
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
35-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
36-
</ItemGroup>
37-
38-
<ItemGroup>
39-
<ProjectReference Include="..\CoAPNet\CoAPNet.csproj" />
40-
</ItemGroup>
35+
<ItemGroup>
36+
<ProjectReference Include="..\CoAPNet\CoAPNet.csproj" />
37+
</ItemGroup>
4138

4239
</Project>

src/CoAPNet.Udp/CoAPNet.Udp.csproj

Lines changed: 31 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,38 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
5-
<PackageId>NZSmartie.CoAPNet.Udp</PackageId>
6-
<LangVersion>latest</LangVersion>
7-
<Version>0.3.8</Version>
8-
<PackageVersion>0.3.8</PackageVersion>
9-
<Authors>Roman Vaughan</Authors>
10-
<Company>NZSmartie</Company>
11-
<Description>UDP Socket implementation for NZSmartie.CoAPNet</Description>
12-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
13-
<IncludeSource>True</IncludeSource>
14-
<IncludeSymbols>True</IncludeSymbols>
15-
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
16-
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
17-
<RepositoryType>git</RepositoryType>
18-
<PackageTags>CoAP IoT sensors devices hardware network protocol udp socket</PackageTags>
19-
<PackageReleaseNotes>See https://github.com/NZSmartie/CoAP.Net/tree/master/Changelog.md</PackageReleaseNotes>
20-
<Configurations>Debug;Release;AppVeyor</Configurations>
21-
<Copyright>Copyright © Roman Vaughan 2017</Copyright>
22-
<PackageLicenseUrl>https://raw.githubusercontent.com/NZSmartie/CoAP.Net/master/LICENSE</PackageLicenseUrl>
23-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
<PackageId>NZSmartie.CoAPNet.Udp</PackageId>
6+
<LangVersion>latest</LangVersion>
7+
<Version>0.3.8</Version>
8+
<PackageVersion>0.3.8</PackageVersion>
9+
<Authors>Roman Vaughan</Authors>
10+
<Company>NZSmartie</Company>
11+
<Description>UDP Socket implementation for NZSmartie.CoAPNet</Description>
12+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
13+
<IncludeSource>True</IncludeSource>
14+
<IncludeSymbols>True</IncludeSymbols>
15+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
16+
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
17+
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
18+
<RepositoryType>git</RepositoryType>
19+
<PackageTags>CoAP IoT sensors devices hardware network protocol udp socket</PackageTags>
20+
<PackageReleaseNotes>See https://github.com/NZSmartie/CoAP.Net/tree/master/Changelog.md</PackageReleaseNotes>
21+
<Configurations>Debug;Release;AppVeyor</Configurations>
22+
<Copyright>Copyright © Roman Vaughan 2017</Copyright>
23+
<PackageLicenseUrl>https://raw.githubusercontent.com/NZSmartie/CoAP.Net/master/LICENSE</PackageLicenseUrl>
24+
</PropertyGroup>
2425

25-
<PropertyGroup>
26-
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CoAPNet.Udp.xml</DocumentationFile>
27-
</PropertyGroup>
26+
<PropertyGroup>
27+
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CoAPNet.Udp.xml</DocumentationFile>
28+
</PropertyGroup>
2829

29-
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
30-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.1.2" />
31-
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
32-
</ItemGroup>
30+
<ItemGroup>
31+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
32+
</ItemGroup>
3333

34-
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
35-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
36-
</ItemGroup>
37-
38-
<ItemGroup>
39-
<ProjectReference Include="..\CoAPNet\CoAPNet.csproj" />
40-
</ItemGroup>
34+
<ItemGroup>
35+
<ProjectReference Include="..\CoAPNet\CoAPNet.csproj" />
36+
</ItemGroup>
4137

4238
</Project>

src/CoAPNet/CoAPNet.csproj

Lines changed: 34 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,36 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
4-
<DebugType Condition="$(Configuration)=='AppVeyor'">full</DebugType>
5-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
6-
<LangVersion>latest</LangVersion>
7-
<PackageId>NZSmartie.CoAPNet</PackageId>
8-
<Version>0.3.8.0</Version>
9-
<PackageVersion>0.3.8</PackageVersion>
10-
<Authors>Roman Vaughan</Authors>
11-
<Company>NZSmartie</Company>
12-
<Product>CoAPNet</Product>
13-
<Description>Provides client/server CoAP protocol support for .Net using arbitary transports.</Description>
14-
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
15-
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
16-
<RepositoryType>git</RepositoryType>
17-
<PackageTags>CoAP IoT sensors devices hardware network protocol</PackageTags>
18-
<IncludeSource>True</IncludeSource>
19-
<IncludeSymbols>True</IncludeSymbols>
20-
<PackageReleaseNotes>See https://github.com/NZSmartie/CoAP.Net/tree/master/Changelog.md</PackageReleaseNotes>
21-
<Configurations>Debug;Release;AppVeyor</Configurations>
22-
<PackageLicenseUrl>https://raw.githubusercontent.com/NZSmartie/CoAP.Net/master/LICENSE</PackageLicenseUrl>
23-
<Copyright>Copyright © Roman Vaughan 2017</Copyright>
24-
</PropertyGroup>
25-
<PropertyGroup>
26-
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CoAPNet.xml</DocumentationFile>
27-
</PropertyGroup>
28-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
29-
<NoWarn>1701;1702;1705;1574</NoWarn>
30-
</PropertyGroup>
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
<DebugType Condition="$(Configuration)=='AppVeyor'">full</DebugType>
6+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
7+
<LangVersion>latest</LangVersion>
8+
<PackageId>NZSmartie.CoAPNet</PackageId>
9+
<Version>0.3.8.0</Version>
10+
<PackageVersion>0.3.8</PackageVersion>
11+
<Authors>Roman Vaughan</Authors>
12+
<Company>NZSmartie</Company>
13+
<Product>CoAPNet</Product>
14+
<Description>Provides client/server CoAP protocol support for .Net using arbitary transports.</Description>
15+
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
16+
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
17+
<RepositoryType>git</RepositoryType>
18+
<PackageTags>CoAP IoT sensors devices hardware network protocol</PackageTags>
19+
<IncludeSource>True</IncludeSource>
20+
<IncludeSymbols>True</IncludeSymbols>
21+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
22+
<PackageReleaseNotes>See https://github.com/NZSmartie/CoAP.Net/tree/master/Changelog.md</PackageReleaseNotes>
23+
<Configurations>Debug;Release;AppVeyor</Configurations>
24+
<PackageLicenseUrl>https://raw.githubusercontent.com/NZSmartie/CoAP.Net/master/LICENSE</PackageLicenseUrl>
25+
<Copyright>Copyright © Roman Vaughan 2017</Copyright>
26+
</PropertyGroup>
27+
28+
<PropertyGroup>
29+
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CoAPNet.xml</DocumentationFile>
30+
</PropertyGroup>
31+
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
33+
<NoWarn>1701;1702;1705;1574</NoWarn>
34+
</PropertyGroup>
35+
3136
</Project>

0 commit comments

Comments
 (0)