是否可以从nuget powershell设置项目的输出路径属性?

时间:2011-06-10 22:19:43

标签: visual-studio-2010 powershell nuget

我想从nuget powershell控制台设置Visual Studio项目属性“Output Path”。怎么可能呢?

我发现a blog post描述了如何设置一些项目属性,但不包括输出路径。

此外,Output Path属性取决于当前的构建配置(Debug / Release)。如何为任何配置设置输出路径(当时不活动)?

1 个答案:

答案 0 :(得分:5)

您想要设置(Get-Project).ConfigurationManager.ActiveConfiguration.Properties.Item("OutputPath").Value例如:

(Get-Project).ConfigurationManager.ActiveConfiguration.Properties.Item("OutputPath").Value = "bin\NewDebugPath"