Visual Studio 2010 Web应用程序属性具有要在目标服务器设置上使用的IIS网站/应用程序名称。在我的Visual Studio 2013中,缺少此设置。
在将.deploy.cmd与.SetParamaters.xml一起使用时,我需要此设置用于持续集成部署。我手动修改.csproj文件,在每个配置的下面代码中包含DeployIisAppPath:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DeployIisAppPath>WebsiteName</DeployIisAppPath>
</PropertyGroup>
在哪里可以在Visual Studio 2013中添加此属性而无需手动修改.csproj文件?