wsl-containers-desktop

(★ 14)

No description available.

File Explorer

  • .gitignore
  • AGENTS.md
  • LICENSE
  • README.ja.md
  • README.md
  • WslContainersDesktop.slnx

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

copilot

View Details ▼

Interact with GitHub Copilot.

copilot

Start interactive mode:

copilot --allow-tool write

Allow all file editing:

copilot --continue

Resume the most recent session:

🔍

dotnet build

View Details ▼

Builds a .NET application and its dependencies.

dotnet build

Compile the project or solution in the current directory:

dotnet build {{path/to/project_or_solution}}

Compile a .NET project or solution in debug mode:

dotnet build {{[-c|--configuration]}} {{Release}}

Compile in release mode:

🔍

dotnet test

View Details ▼

Execute tests for a .NET application.
Note: View <https://learn.microsoft.com/dotnet/core/testing/selective-unit-tests> for supported filter expressions.

dotnet test

Execute tests for a .NET project/solution in the current directory:

dotnet test {{path/to/project_or_solution}}

Execute tests for a .NET project/solution in a specific location:

dotnet test --filter {{Name~TestMethod1}}

Execute tests matching the given filter expression:

🔍

dotnet

View Details ▼

Cross platform .NET tools for .NET Core.
Some subcommands such as `build` have their own usage documentation.

dotnet new {{template_short_name}}

Initialize a new .NET project:

dotnet restore

Restore NuGet packages:

dotnet run

Build and execute the .NET project in the current directory:

// repository documentation