我正在尝试使用发布向导从visual studio进行Web部署。 我收到以下错误:
Error 101 Specified condition "$(AspNetMerge)" evaluates to "" instead of a boolean.
我错过了一些配置吗?
答案 0 :(得分:0)
我不熟悉AspNetMerge,但它看起来像用于组合ASP.NET程序集。无论看起来AspNetMerge MSBuild属性还没有定义。您可以尝试将以下内容添加到项目文件(.csproj)文件的底部:
<PropertyGroup>
<AspNetMerge>true</AspNetMerge>
</PropertyGroup>
显然,您应该将值设置为true或false,具体取决于您是否要合并。