wsl-containers-desktop

(★ 14)

No description available.

파일 탐색기

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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

copilot

설명 보기 ▼

GitHub Copilot과 상호작용하는 CLI 도궄.
더 많은 정보: <https://docs.github.com/en/copilot/concepts/agents/about-copilot-cli>.

copilot

인터렉티브 모드 시작:

copilot --allow-tool write

모든 파일 편집 허용:

copilot --continue

가장 최근 세션 이어서 실행:

🔍

dotnet build

설명 보기 ▼

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

설명 보기 ▼

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

설명 보기 ▼

크로스 플랫폼 .NET Core용 명령줄 도구.
`build`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://learn.microsoft.com/dotnet/core/tools>.

dotnet new {{template_short_name}}

새 .NET 프로젝트 초기화:

dotnet restore

NuGet 패키지 복원:

dotnet run

현재 디렉터리에서 .NET 프로젝트를 빌드하고 실행:

// repository documentation