2023-10-25 15:58:28 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
|
|
|
<metadata>
|
2023-10-27 10:38:56 +03:00
|
|
|
<id>nanoFramework.WebServer.FileSystem</id>
|
|
|
|
<title>nanoFramework.WebServer.FileSystem</title>
|
2023-10-25 15:58:28 +03:00
|
|
|
<version>$version$</version>
|
|
|
|
<authors>Laurent Ellerbach,nanoframework</authors>
|
|
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
|
|
<license type="file">LICENSE.md</license>
|
|
|
|
<releaseNotes>
|
|
|
|
</releaseNotes>
|
|
|
|
<readme>docs\README.md</readme>
|
|
|
|
<developmentDependency>false</developmentDependency>
|
|
|
|
<projectUrl>https://github.com/nanoframework/nanoFramework.WebServer</projectUrl>
|
|
|
|
<icon>images\nf-logo.png</icon>
|
|
|
|
<repository type="git" url="https://github.com/nanoframework/nanoFramework.WebServer" commit="$commit$" />
|
|
|
|
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
|
|
|
|
<description>This is a simple multithread WebServer supporting simple controller and event based calls.
|
|
|
|
Perfect for .NET nanoFramework REST API based project. Support all type of Http Methods.
|
|
|
|
Perfect for simple embedded web pages, with Support of file on a storage (USB, SD Card, in Memory).
|
|
|
|
Supports both HTTPS and HTTP.
|
|
|
|
Use this version if you want to serve local files and have support for System.IO.FileSystem on your device.
|
|
|
|
Otherwise use 'nanoFramework.WebServer' nuget.</description>
|
|
|
|
<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" />
|
2024-07-24 03:44:49 +03:00
|
|
|
<dependency id="nanoFramework.System.IO.FileSystem" version="1.1.54" />
|
2023-10-25 15:58:28 +03:00
|
|
|
</dependencies>
|
|
|
|
</metadata>
|
|
|
|
<files>
|
2023-10-27 10:38:56 +03:00
|
|
|
<file src="nanoFramework.WebServer.FileSystem\bin\Release\nanoFramework.WebServer.*" target="lib" />
|
2023-10-25 15:58:28 +03:00
|
|
|
<file src="assets\readme.txt" target="" />
|
|
|
|
<file src="README.md" target="docs\" />
|
|
|
|
<file src="assets\nf-logo.png" target="images" />
|
|
|
|
<file src="LICENSE.md" target="" />
|
|
|
|
</files>
|
|
|
|
</package>
|