mirror of
https://github.com/microsoft/WSL.git
synced 2025-12-10 17:47:59 -06:00
* Implement WSLA GPU support * Spelling * Fix remaining typos * More typos * Merge * Remove extra logline * Save state * Reduce enum name * Format * Merge * Fix merge * Prepare for PR * Update nuspec * Pipeline update
22 lines
1.0 KiB
XML
22 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
|
<metadata>
|
|
<id>Microsoft.WSL.Api</id>
|
|
<version>${WSL_NUGET_PACKAGE_VERSION}</version>
|
|
<authors>Microsoft</authors>
|
|
<projectUrl>https://github.com/microsoft/WSL</projectUrl>
|
|
<description>WSL API Interface</description>
|
|
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
|
|
<tags>WSL</tags>
|
|
<language>en-us</language>
|
|
<license type="expression">MIT</license>
|
|
</metadata>
|
|
<files>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\src\windows\wslaclient\WSLAApi.h" target="include"/>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\bin\x64\Release\wslaclient.lib" target="lib\x64"/>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\bin\x64\Release\wslaclient.dll" target="lib\x64"/>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\bin\arm64\Release\wslaclient.lib" target="lib\arm64"/>
|
|
<file src="${CMAKE_SOURCE_DIR_NATIVE}\bin\arm64\Release\wslaclient.dll" target="lib\arm64"/>
|
|
</files>
|
|
</package>
|