2022-05-03 21:51:03 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-11-06 16:45:51 +03:00
|
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
2020-10-25 10:33:31 +03:00
|
|
|
<metadata>
|
|
|
|
<id>nanoFramework.WebServer</id>
|
2022-01-11 21:53:24 +03:00
|
|
|
<title>nanoFramework.WebServer</title>
|
2020-11-06 16:15:40 +03:00
|
|
|
<version>$version$</version>
|
2022-02-18 03:02:36 +03:00
|
|
|
<authors>Laurent Ellerbach,nanoframework</authors>
|
2020-10-25 10:33:31 +03:00
|
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
2021-11-25 15:07:11 +03:00
|
|
|
<license type="file">LICENSE.md</license>
|
2021-01-19 12:10:28 +03:00
|
|
|
<releaseNotes>
|
|
|
|
</releaseNotes>
|
2021-11-25 15:07:11 +03:00
|
|
|
<readme>docs\README.md</readme>
|
|
|
|
<developmentDependency>false</developmentDependency>
|
|
|
|
<projectUrl>https://github.com/nanoframework/nanoFramework.WebServer</projectUrl>
|
|
|
|
<icon>images\nf-logo.png</icon>
|
2020-11-06 16:15:40 +03:00
|
|
|
<repository type="git" url="https://github.com/nanoframework/nanoFramework.WebServer" commit="$commit$" />
|
|
|
|
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
|
2022-02-24 09:05:32 +03:00
|
|
|
<description>This is a simple multithread WebServer supporting simple controller and event based calls.
|
2023-10-25 15:58:28 +03:00
|
|
|
Perfect for .NET nanoFramework REST API based project. Supports both HTTPS and HTTP.
|
|
|
|
If serving files from local storage is a requirement, please use instead the 'nanoFramework.WebServer.FileSystem' nuget.
|
|
|
|
</description>
|
2020-10-25 10:33:31 +03:00
|
|
|
<tags>http https webserver net netmf nf nanoframework</tags>
|
|
|
|
<dependencies>
|
2023-11-09 14:21:41 +03:00
|
|
|
<dependency id="nanoFramework.CoreLibrary" version="1.15.5" />
|
2024-09-26 20:19:14 +03:00
|
|
|
<dependency id="nanoFramework.System.Net.Http.Server" version="1.5.150" />
|
2020-10-25 10:33:31 +03:00
|
|
|
</dependencies>
|
|
|
|
</metadata>
|
|
|
|
<files>
|
2020-11-06 16:15:40 +03:00
|
|
|
<file src="nanoFramework.WebServer\bin\Release\nanoFramework.WebServer.*" target="lib" />
|
2020-12-22 13:09:36 +03:00
|
|
|
<file src="assets\readme.txt" target="" />
|
2021-11-25 15:07:11 +03:00
|
|
|
<file src="README.md" target="docs\" />
|
|
|
|
<file src="assets\nf-logo.png" target="images" />
|
2020-12-22 13:09:36 +03:00
|
|
|
<file src="LICENSE.md" target="" />
|
2020-10-25 10:33:31 +03:00
|
|
|
</files>
|
2021-05-05 03:49:58 +03:00
|
|
|
</package>
|