2013-02-04 65 views
0

我创建的命令行上NuGet包如下:用的NuGet的NuGet包OutputPath错误2.2.3

nuget pack MyProject.csproj -Properties "Configuration=Release;Platform=AnyCPU;OutputPath=." -Build 

这与NuGet.exe 2.1.3成功的作品,但是当我更新的NuGet .EXE 2.2.3与NuGet.exe更新-self,运行此命令现在出现以下错误打破:

The output path property is not set for project 'MyProject.csproj'. Please check to make sure that you have specified a valid combination of Configuration and Platform for this project. Configuration='Debug' Platform='AnyCPU'. You may be seeing this message because you are trying to build a project without a solution file, and have specified a non-default Configuration or Platform that doesn't exist for this project. 
Done building project "MyProject.csproj" 
Failed to build 'MyProject.csproj' 

MyProject的不活一个更大的解决方案中,但对任何其他项目不依赖于该解决方案。

我该如何得到这个工作?

回答