보관함

cmd 대신 사용하는 powershell 의 prompt에서 git branch확인

Install-Module posh-git -Scope CurrentUser Install-Module oh-my-posh -Scope CurrentUser if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } notepad.exe $PROFILE

admin 권한으로

Set-ExecutionPolicy -Scope LocalMachine -ExecutionPolicy RemoteSigned -Force

VisualStudio Ctrl+MouseWheel Zoom 기능 막기

Solution 아래 여러 Project가 있는데 자동 배포 하려고 했더니 Error가 딱~~~

Error : More than one package matched with specified pattern: D:\a\r1\a\**\*.zip. Please restrain the search pattern.

DevOps > Pipelines > Releases > Project – CD > Edit > Tasks > Deploy Azure App Service > Package or folder를 수정

$(System.DefaultWorkingDirectory)**\*.zip -> $(System.DefaultWorkingDirectory)**\프로젝트명.zip

[…]