我想从nuget powershell控制台设置Visual Studio项目属性“Output Path”。怎么可能呢?
我发现a blog post描述了如何设置一些项目属性,但不包括输出路径。
此外,Output Path属性取决于当前的构建配置(Debug / Release)。如何为任何配置设置输出路径(当时不活动)?
答案 0 :(得分:5)
您想要设置(Get-Project).ConfigurationManager.ActiveConfiguration.Properties.Item("OutputPath").Value
例如:
(Get-Project).ConfigurationManager.ActiveConfiguration.Properties.Item("OutputPath").Value = "bin\NewDebugPath"