-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCoAPNet.Server.csproj
More file actions
39 lines (34 loc) · 1.77 KB
/
CoAPNet.Server.csproj
File metadata and controls
39 lines (34 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<DebugType Condition="$(Configuration)=='AppVeyor'">full</DebugType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<LangVersion>latest</LangVersion>
<PackageId>NZSmartie.CoAPNet.Server</PackageId>
<Version>0.3.8</Version>
<PackageVersion>0.3.8</PackageVersion>
<Authors>Roman Vaughan</Authors>
<Company>NZSmartie</Company>
<Description>Server and handler implementation for NZSmartie.CoAPNet</Description>
<PackageProjectUrl>https://github.com/NZSmartie/CoAP.Net</PackageProjectUrl>
<RepositoryUrl>https://github.com/NZSmartie/CoAP.Net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>CoAP IoT sensors devices hardware network protocol</PackageTags>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>See https://github.com/NZSmartie/CoAP.Net/tree/master/Changelog.md</PackageReleaseNotes>
<Configurations>Debug;Release;AppVeyor</Configurations>
<PackageLicenseUrl>https://raw.githubusercontent.com/NZSmartie/CoAP.Net/master/LICENSE</PackageLicenseUrl>
<Copyright>Copyright © Roman Vaughan 2017</Copyright>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CoAPNet.Server.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CoAPNet\CoAPNet.csproj" />
</ItemGroup>
</Project>