mirror of
https://github.com/microsoft/WSL.git
synced 2025-07-02 23:13:21 +00:00

Many Microsoft employees have contributed to the Windows Subsystem for Linux, this commit is the result of their work since 2016. The entire history of the Windows Subsystem for Linux can't be shared here, but here's an overview of WSL's history after it moved to it own repository in 2021: Number of commits on the main branch: 2930 Number of contributors: 31 Head over https://github.com/microsoft/WSL/releases for a more detailed history of the features added to WSL since 2021.
21 lines
991 B
XML
21 lines
991 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
|
<metadata>
|
|
<id>Microsoft.WSL.PluginApi</id>
|
|
<version>${WSL_NUGET_PACKAGE_VERSION}</version>
|
|
<authors>Microsoft</authors>
|
|
<projectUrl>https://github.com/microsoft/WSL</projectUrl>
|
|
<description>WSL Plugin Interface</description>
|
|
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
|
|
<icon>images\icon.png</icon>
|
|
<readme>docs\README.MD</readme>
|
|
<tags>WSL</tags>
|
|
<language>en-us</language>
|
|
<license type="expression">MIT</license>
|
|
</metadata>
|
|
<files>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\src\windows\inc\WslPluginApi.h" target="build\native\include"/>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\Images\Square44x44Logo.altform-lightunplated_targetsize-256.png" target="images\icon.png"/>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\nuget\README.WslPluginApi.MD" target="docs\README.MD"/>
|
|
</files>
|
|
</package>
|