|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
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> |
25 | 26 |
|
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> |
29 | 30 |
|
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> |
33 | 34 |
|
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> |
41 | 38 |
|
42 | 39 | </Project> |
0 commit comments