mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
58 lines
2.7 KiB
XML
58 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
|
<metadata>
|
|
<id>winfsp</id>
|
|
<version>$version$</version>
|
|
<packageSourceUrl>https://github.com/winfsp/winfsp/tree/master/build/choco</packageSourceUrl>
|
|
<owners>Bill Zissimopoulos</owners>
|
|
|
|
<title>WinFsp</title>
|
|
<authors>Bill Zissimopoulos</authors>
|
|
<projectUrl>https://github.com/winfsp/winfsp</projectUrl>
|
|
<iconUrl>https://github.com/winfsp/winfsp/raw/master/art/winfsp-solid.png</iconUrl>
|
|
<copyright>Bill Zissimopoulos</copyright>
|
|
<licenseUrl>https://github.com/winfsp/winfsp/blob/master/License.txt</licenseUrl>
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
<projectSourceUrl>https://github.com/winfsp/winfsp</projectSourceUrl>
|
|
<docsUrl>https://github.com/winfsp/winfsp/tree/master/doc</docsUrl>
|
|
<mailingListUrl>https://groups.google.com/forum/#!forum/winfsp</mailingListUrl>
|
|
<bugTrackerUrl>https://github.com/winfsp/winfsp/issues</bugTrackerUrl>
|
|
<tags>driver filesystem fuse gplv3 windows-kernel admin</tags>
|
|
<summary>Windows File System Proxy - FUSE for Windows</summary>
|
|
<description>
|
|
WinFsp is a set of software components for Windows computers that allows the creation of user mode file systems. In this sense it is similar to FUSE (Filesystem in Userspace), which provides the same functionality on UNIX-like computers.
|
|
|
|
Some of the benefits of using WinFsp are listed below:
|
|
|
|
* Very well-tested and stable.
|
|
* Very fast.
|
|
* Strives for compatibility with NTFS.
|
|
* Easy to understand but comprehensive API.
|
|
* FUSE compatibility layer for native Windows and Cygwin.
|
|
* Signed drivers provided on every release.
|
|
* Available under the GPLv3 license with a special exception for Free/Libre and Open Source Software.
|
|
|
|
To verify installation:
|
|
|
|
* For 64-bit Windows: `net use m: \\memfs64\share` from the command prompt.
|
|
* For 32-bit Windows: `net use m: \\memfs32\share`
|
|
* For Cygwin: `net use m: '\\memfs64\share'`
|
|
* To delete the drive: `net use m: /delete`
|
|
</description>
|
|
<releaseNotes>https://github.com/winfsp/winfsp/blob/master/Changelog.md</releaseNotes>
|
|
|
|
<!--<dependencies>
|
|
<dependency id="chocolatey-uninstall.extension" />
|
|
</dependencies>-->
|
|
</metadata>
|
|
|
|
<files>
|
|
<file src="LICENSE.txt" target="tools" />
|
|
<file src="VERIFICATION.txt" target="tools" />
|
|
<file src="chocolateyInstall.ps1" target="tools" />
|
|
<file src="chocolateyUninstall.ps1" target="tools" />
|
|
<file src="chocolateyHelper.ps1" target="tools" />
|
|
<file src="winfsp-$MsiVersion$.msi" target="tools" />
|
|
</files>
|
|
</package>
|