nuget.exe the application could not be started

http://stackoverflow.com/questions/5730412/error-when-running-the-nuget-exe-command

Ok, so this turned out to be a really weird error which I still don‘t know why it happened. But I do know the solution. What I had done was put the nuget.exe file in c:\windows\system32. I did that so I didn‘t have to update the %PATH% environment variable, or that was my thought at least. The part about not updating the environment variable worked fine, but for some reason NuGet wouldn‘t run from that folder for me. When putting the nuget.exe file in a separate folder under c:\Program files (x86)and adding that folder to the %PATH%, it started working just fine.

Weird error.

很奇怪的错误,nuget.exe不能放在system32下面。直接换到C:\Windows下就可以

时间: 2024-11-12 13:21:11

nuget.exe the application could not be started的相关文章

nuget.exe push won't use API Key

I had the same issue today on v3.4.3.855.I set the api key using the required command, then when I ran the push I got this warning: WARNING: No API Key was provided and no API Key could be found for 'https://www.nuget.org/api/v2/package' and was aske

unable to locate nuget.exe

今日使用vs 从github fork 一份代码到本地之后,提示项目 unable to locate nuget.exe. 原因:代码托管时未提交 nuget.exe 或其他原因丢失 解决方法:在解决方案目录下 .nuget 文件夹里面找到 Nuget.targets文件打开: 找到 <DownloadNuGetExe Condition=" '$(DownloadNuGetExe)' == '' ">false</DownloadNuGetExe> 改成 &

Windows 8.1 explorer.exe 出错 “Application Hang”

不知道为什么explorer常常会卡一下 看系统日志发现有来源于“Application Hang”的错误 部分常规信息: 程序 explorer.exe 版本 6.3.9600.17415 停止与 Windows 交互并关闭.要查看是否有关于该问题的详细信息,请检查操作中心控制面板中的问题历史记录. 网上发现老外也有类似情况 http://www.eightforums.com/general-support/63158-windows-8-1-explorer-exe-suddenly-cr

How to update WPF browser application manifest and xbap file with ‘mage.exe’

老外参考文章1 老外参考文章2 I created a WPF browser application MyApp then published it by ClickOnce in VS2008. Published folder like this: PublishedFolder\MyApp.xbap PublishedFolder\setup.exe PublishedFolder\Application Files\MyApp_0_0_0_1\ MyApp.xbap Published

初识NuGet - 概念, 安装和使用

1. NuGet是什么? NuGet is a Visual Studio 2010 extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects that use the .NET Framework. This topic lists documentation that will help you use NuGet packages and cre

使用NUget发布自己的dll

一:Nuget控制台有几个常用命令 Get-Package 获取当前项目已经安装的类库 Install-Package 安装指定类库,命令格式如下:Install-Package 类库ID,示例:PM> Install-Package cyqdata (这里需要注意的是类库的ID是唯一的,指向命令后会自动搜索指定类库源里指定ID类库,若找到则自动下载并添加引用,找不到则会出现找不到类库的提示) Uninstall-Package 卸载指定类库,命令格式如下:Uninstall-Package 类

在内部架设NuGet服务器

在公司内部有很多基础框架或者基础组件,甚至对于使用SOA架构的公司来说,会有大量的业务组件的契约程序集,对于这些框架或组件的引用管理有的人使用源代码管理工具,但是NuGet相比源代码管理工具更方便: 1) 安装和卸载:不需要手动添加和移除引用,不需要手动改写配置文件甚至是一些初始化服务的代码.版本升级也只需要执行一条命令. 2) 打包:多文件打包,支持依赖管理等,使用的人没有繁琐的配置. 对于官方的包,可以在http://www.nuget.org/ 找到,自己也可以提交包上去.但是如果不希望把

NuGet学习笔记2——使用图形化界面打包自己的类库

NuGet相对于我们最重要的功能是能够搭建自己的NuGet服务器,实现公司内部类库的轻松共享更新.在安装好NuGet扩展后,我们已经能够通过NuGet轻松下载自己需要的类库,下面来说一说如何将自己的项目类库进行打包发布 使用图形界面打包自己的类库 NuGet可以使用NuGet.exe在命令行下进行类库打包,也可以使用图形化界面进行打包,估计很多朋友都和我一样对不熟悉的命令行有些感冒,所以在此仅讲述下使用图形化界面进行类库打包 1.首先下载 包包管理器 NuGetPackageExplorer,顾

使用NUget发布自己的dll(转)

一:Nuget控制台有几个常用命令 Get-Package 获取当前项目已经安装的类库 Install-Package 安装指定类库,命令格式如下:Install-Package 类库ID,示例:PM> Install-Package cyqdata (这里需要注意的是类库的ID是唯一的,指向命令后会自动搜索指定类库源里指定ID类库,若找到则自动下载并添加引用,找不到则会出现找不到类库的提示) Uninstall-Package 卸载指定类库,命令格式如下:Uninstall-Package 类