winotch
No description available.
파일 탐색기
- ci.yml
- architecture.md
- AssemblyInfo.cs
- WinotchTray.ico
- AccountPictureService.cs
- App.xaml
- App.xaml.cs
- AppBarReservationService.cs
- AssemblyInfo.cs
- AudioDeviceService.cs
- AudioService.cs
- AudioSessionService.cs
- BatteryVisual.cs
- BrightnessService.cs
- CalendarAgenda.cs
- CalendarModels.cs
- CalendarRefreshService.cs
- CalendarSubscriptionUrl.cs
- CalendarTimeZoneResolver.cs
- CalendarToastTracker.cs
- CameraMirrorModels.cs
- CameraMirrorService.cs
- CameraMirrorWindow.xaml
- CameraMirrorWindow.xaml.cs
- ClipboardContentReader.cs
- ClipboardHistoryEntry.cs
- ClipboardHistoryFormatting.cs
- ClipboardHistoryMonitor.cs
- ClipboardHistoryPanel.xaml
- ClipboardHistoryPanel.xaml.cs
- ClipboardHistoryStore.cs
- ClipboardPrivacyPolicy.cs
- ClipboardThumbnail.cs
- ClipboardUpdateQueue.cs
- ControlCenterModels.cs
- CoreAudioInterfaces.cs
- CoreAudioInterop.cs
- DdcBrightness.cs
- DiagnosticsReport.cs
- DisplayRefreshRateService.cs
- FocusTimerModels.cs
- FocusTimerState.cs
- FocusTimerStore.cs
- ForegroundWindowService.cs
- IcsContent.cs
- IcsDateTimeParser.cs
- IcsParser.cs
- IcsRecurrence.cs
- JoinLinkDetector.cs
- MainWindow.Calendar.cs
- MainWindow.xaml
- MainWindow.xaml.cs
- MediaService.cs
- MonitorTargeting.cs
- NotificationChangeTracker.cs
- NotificationService.cs
- NotificationSilenceService.cs
- PolicyConfigInterop.cs
- PriorityStatus.cs
- SettingsService.cs
- SettingsWindow.xaml
- SettingsWindow.xaml.cs
- ShellAnimationTiming.cs
- ShellAnimator.cs
- ShellMetrics.cs
- ShellMode.cs
- StartupService.cs
- SystemStats.cs
- SystemStatsService.cs
- SystemStatus.cs
- TrayIconService.cs
- WifiProfileFallback.cs
- WifiService.cs
- WindowChromeInterop.cs
- Winotch.csproj
- WmiBrightness.cs
- CalendarAgendaTests.cs
- CalendarRefreshServiceTests.cs
- CameraMirrorTests.cs
- ClipboardHistoryTests.cs
- ControlCenterTests.cs
- DiagnosticsReportTests.cs
- FocusTimerTests.cs
- IcsParserTests.cs
- LifecycleTests.cs
- MonitorTargetingTests.cs
- SettingsPolishTests.cs
- SettingsServiceTests.cs
- StatusShellTests.cs
- SystemStatsTests.cs
- Winotch.Tests.csproj
- .gitignore
- AGENTS.md
- DESIGN.md
- LICENSE
- README.md
- Winotch.slnx
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
dotnet build
설명 보기 ▼
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 publish
설명 보기 ▼
dotnet publish
Publish a .NET application and its dependencies to a directory for deployment to a hosting system.
dotnet publish {{[-c|--configuration]}} Release {{path/to/project_file}}
Compile a .NET project in release mode:
dotnet publish {{[-sc|--self-contained]}} true {{[-r|--runtime]}} {{runtime_identifier}} {{path/to/project_file}}
Publish the .NET Core runtime with your application for the specified runtime:
dotnet publish {{[-r|--runtime]}} {{runtime_identifier}} -p:PublishSingleFile=true {{path/to/project_file}}
Package the application into a platform-specific single-file executable:
dotnet run
설명 보기 ▼
dotnet run
Run a .NET application without explicit compile or launch commands.
dotnet run
Run the project in the current directory:
dotnet run --project {{path/to/file.csproj}}
Run a specific project:
dotnet run -- {{arg1=foo arg2=bar ...}}
Run the project with specific arguments:
dotnet test
설명 보기 ▼
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:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
http
설명 보기 ▼
http
HTTPie: 테스트, 디버깅 및 일반적으로 API 및 HTTP 서버와 상호작용하도록 설계된 HTTP 클라이언트.
관련 항목: `xh`.
더 많은 정보: <https://httpie.io/docs/cli/usage>.
http {{https://example.com}}
간단한 GET 요청을 수행 (응답 헤더 및 콘텐츠 표시):
http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}
특정 출력 내용을 인쇄 (`H`: 요청 헤더, `B`: 요청 본문, `h`: 응답 헤더, `b`: 응답 본문, `m`: 응답 메타데이터):
http {{GET|POST|HEAD|PUT|PATCH|DELETE|...}} --proxy {{http|https}}:{{http://localhost:8080|socks5://localhost:9050|...}} {{https://example.com}}
요청을 보낼 때 HTTP 메소드를 지정하고 프록시를 사용하여 요청을 가로채기:
https
설명 보기 ▼
https
이 명령은 `http`의 별칭입니다.
tldr http
자세한 내용은 원본 명령을 참고하세요:
netsh wlan
설명 보기 ▼
netsh wlan
Manage wireless networks.
netsh wlan show networks
Show all available wireless networks:
netsh wlan connect name={{ssid}}
Connect to a wireless network with a specific SSID:
netsh wlan disconnect
Disconnect from the current wireless network:
