I'm trying to build the vsix for my project vscode-atlasmap locally from this branch https://github.com/apupier/vscode-atlasmap/tree/36-useWebiewAPI
When I launch the debug instance, it is working fine. If i build the vsix, install it and then try to use the "Open AtlasMap" I have an error message "command 'atlasmap.start' not found"
I got a message that the extension has been successfully installed.
The mentioned command is listed in the "Contributions":
What could be the issue? What is different from "Debug configuration" and a built vsix?
regards,
Make sure that all of your dependencies are installed via
node install
before packaging. Note that vsce will only install those mentioned in your package.json.
When I had this problem, I moved extend, request, and underscore from devDependencies to dependences. Then I ran
node install
and then
vsce package
again.
To retry, make sure you uninstall the old version of your package, and that you remove the package from wherever it is installed (for me in .vscode/extensions),
Related
Simple question; title says it all
I downloaded an open source demonstration project. The documentation says it uses CocoaPods.
None of the targets will build (no such module "Canvas"—Canvas is the framework class I want to review). Searching, the most common solution recommended is "just run pods install again".
Does this mean I have to install CocoaPods to build a project that uses CocoaPods?
If you have never installed CocoaPods on this machine before, get it installed, this post will help you https://stackoverflow.com/a/43292864/1244597
Then whenever you download a project that uses pod dependencies, open terminal and type these 2 commands:
$ cd PATH_TO_PROJECT
$ pod install
UPDATE I downloaded the Canvas open source project, you do not need to install CocoaPods for this project because the pod library is already available within the project directory, you just run the Example project by double clicking this file:
/Canvas/Example/Canvas.xcworkspace
I'm running the following command on a build server:
Nuget.exe install MyPkgName -Source C:\temp\somefolder -OutputDirectory C:\temp\someotherfolder
I'm running it as part of unpacking build artifacts (nuget packages) in TeamCity as part of a packaging process on a build server. So the same packages have been unpacked before on this server, but the workspace is cleaned everytime, yet it fails with:
All packages listed in C:\temp\packages.config are already installed.
There is no packages.config in that location, and I can't understand where nuget is storing the information that the package is installed.
Was a regex issue in the powershell script where it didnt get the package name correctly, my bad.
I'm trying to install the Coffeescript bundle into TextMate via terminal.
I cd to the correct directory but when I try the git command I get:
"Launch of "git" failed: the PowerPC architecture is no longer supported." I imagine that's because I upgraded to Lion. But this seems ridiculous that I can't git anymore.
And manual install doesn't work because the bundle is a group of folders, not a single file like all the other bundles in the Bundles section of the application.
Any suggestions?
Thanks,
Charlie Magee
You don't need Git to install a TextMate bundle:
download the .zip from github
extract it
rename the folder to coffeescript.tmbundle
double-click on it to install it automatically
done
Your Git problem is probably because your git is a PowerPC executable or an universal executable. You should re-install it.
A few things are missing from your question: When/how did you install git? Do you use it often? Does it work elsewhere? What was the previous version of your OS?
I am trying to install the picasa web android sample in Eclipse so I am
following all the steps, until I get to the step where I have to install
the Mercurial plugin for Eclipse.
So in eclipse I try to add the plugin from http://cbes.javaforge.com/update
as stated on the hg site but then I get the following error and eclipse cannot
complete the install because of the following dependency:
Cannot complete the install because some dependencies are not satisfiable
com.intland.hgbinary.win32.feature.group [1.9.3.v201110131844] cannot be installed in this environment because its filter is not applicable.
How do I fix this?
Are you trying to install it in Linux? If so you need to deselect the Windows mercurial binaries from the install screen.
I recently installed Visual Studio on a new computer and as a result I now have Nuget 1.5.2. This version doesn't seem to work with my old solution. When I add a new project and try adding references via Nuget, it says they are already installed and does nothing, even though that reference doesn't exist in the new project.
Does anyone know why this might be happening or alternatively where I can download the old Nuget (1.4.2)?
Thanks!
The NuGet Command Line is available as a NuGet package.
Just like with any other NuGet package, you can get a specific version by using the -Version switch in the Package Manager Console.
To get v1.4.2 of the NuGet command line tool, you should execute the following PowerShell script from the Package Manager Console:
Install-Package Nuget.CommandLine -Version 1.4.20615.182