创建批处理文件以发布网站ASP.net

时间:2016-04-07 07:28:13

标签: asp.net batch-file visual-studio-2012 web web-deployment

我创建了一个批处理文件,但它没有发布。 这是我的剧本: -

set msbuildpath=C:\Windows\Microsoft.NET\Framework\v4.0.30319
"%msbuildpath%\msbuild" "MyWeb.sln" /t:ReBuild /p:Configuration=Release/p:DeployOnBuild=true /p:PublishProfile=D:\BlaBla\SourceCode\blabla\Properties\PublishProfiles\Pub_Test.pubxml
pause

这里有什么问题?

1 个答案:

答案 0 :(得分:2)

嗨,经过许多文章,最后我得到了我的解决方案。

C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild MyWeb.csproj /p:DeployOnBuild=true /p:PublishProfile=D:\BlaBla\SourceCode\blabla\Properties\PublishProfiles\Pub_Test.pubxml /p:Password=myPassWord /p:AllowUntrustedCertificate=true /p:VisualStudioVersion=11.0

这对我来说很棒。