Wslhub.Sdk
0.1.2
.NET Standard 1.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
Install-Package Wslhub.Sdk -Version 0.1.2
dotnet add package Wslhub.Sdk --version 0.1.2
<PackageReference Include="Wslhub.Sdk" Version="0.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Wslhub.Sdk --version 0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Wslhub.Sdk, 0.1.2"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install Wslhub.Sdk as a Cake Addin
#addin nuget:?package=Wslhub.Sdk&version=0.1.2
// Install Wslhub.Sdk as a Cake Tool
#tool nuget:?package=Wslhub.Sdk&version=0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
WSL SDK for .NET Standard/.NET Core
This project contains a WSL API wrapper for Windows developers who wants to integrate WSL features into existing Windows applications. You can enumerate, query, executing WSL commands via C# classes.
How to use
You will need the below items to use the WSL APIs.
- Add an application manifest which describes your application is compatible with the Windows 10 (GUID:
8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a
) and therequestedExecutionLevel
tag withasInvoker
level. - Place the code
Wsl.InitializeSecurityModel()
at the top of your application'sMain()
method.
Limitation
Due to the limitation of COM security model requirements of WSL APIs, you can not run this SDK within the Visual Studio Test Explorer or LINQPAD.
Code Example
using Wslhub.Sdk;
// Place the code `Wsl.InitializeSecurityModel()` at the top of your application's `Main()` method.
Wsl.InitializeSecurity();
// Assert WSL installation status
Wsl.AssertWslSupported();
// Enumerate distro list
var distros = Wsl.GetDistroListFromRegistry();
// Query distro informations
var queryResults = Wsl.GetDistroQueryResult();
// Run a command
var result = Wsl.RunWslCommand(distroName, "cat /etc/passwd");
Upcoming Features
- Aware default distro
- Executing WSL commands via C# API (supporting more longer CLOBs)
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 1.3
- Microsoft.Win32.Registry (>= 4.7.0)
- NETStandard.Library (>= 1.6.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.