forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add gulp tasks to build deb packages
Build, install and run: gulp vscode-linux-packages sudo dpkg -i out-linux/vscode-amd64.deb code . Installing the package does the following: - Puts VSCode dir at /usr/share/code - Puts code.sh launcher in /usr/bin - Defines a .desktop file to properly integrate with the launcher Fixes microsoft#2679
- Loading branch information
Showing
7 changed files
with
114 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Desktop Entry] | ||
Name=Visual Studio Code | ||
Comment=Code Editing. Redefined. | ||
GenericName=Text Editor | ||
Exec=/usr/bin/code %U | ||
Icon=code | ||
Type=Application | ||
StartupNotify=true | ||
Categories=Utility;TextEditor;Development;IDE; | ||
MimeType=text/plain; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Package: visual-studio-code | ||
Version: @@VERSION@@ | ||
Section: devel | ||
Priority: optional | ||
Architecture: @@ARCHITECTURE@@ | ||
Maintainer: Microsoft Corporation <vscode-linux@microsoft.com> | ||
Homepage: https://github.com/Microsoft/vscode | ||
Installed-Size: @@INSTALLEDSIZE@@ | ||
Description: Code Editing. Redefined. | ||
Build and debug modern web and cloud applications. |