2016-06-16 1 views
1

새 기능을 추가하기 위해 소스에서 vscode를 빌드했습니다. 안타깝게도 확장 프로그램을 설치할 수없는 것 같습니다. 나는 꿀꺽 꿀꺽 작업을 사용하여 이라구 패키지를 구축하고, 그것은 '설치 확장'메뉴와 몇 가지 다른 실종소스에서 VSCode를 빌드 한 후 확장 기능을 설치하십시오.

Here's what I see when I try to type 'Extensions' in the command palette

를 설치했습니다.

내가 지금의로 실행하고 버전 : 코드 - OSS - 버전 버전 1.2.1 - 내가 구축해야 다른 있나요 fe7f407b95b7f78405846188259504b34ef72761

커밋/내부에서 확장을 설치할 수 있도록 설치 편집자?

답변

2

찾았습니다. https://github.com/Microsoft/vscode/issues/1557 보면서 나는 product.json을 편집 시도하고 확장 할 수 있도록하는 다음과 같은 추가 :

"extensionsGallery": { 
    "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", 
    "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", 
    "itemUrl": "https://marketplace.visualstudio.com/items" 
} 

이 효과적으로 vscode의 시장에서 확장을 설치 수를

관련 문제