I am publishing and deploying the .net web application using jenkins MSbuild plugin.Everey thing is working fine except one issue.
Here the issue is not able to find the created website in IIS.
Please find the following MSBUILD command line parameters :
/p:Configuration=Release
/p:DeployOnBuild=True
/p:DeployTarget=Package
/p:_PackageTempDir=c:\QueRxDemo\publish
/p:VisualStudioVersion=10.0
commandline command generated by jenkin :
Path To MSBuild.exe: C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
Executing the command cmd.exe /C " C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=Release /p:DeployOnBuild=True /p:DeployTarget=Package /p:_PackageTempDir=c:\QueRxDemo\publish /p:VisualStudioVersion=10.0 "C:\Svn repos\V2.4\src\Web\Web.csproj" "
Please find the jekins console output :
Publish Pipeline Deploy phase Pre-Deploy CopyAllFilesToOneFolder Stage
Package:
Invoking Web Deploy to generate the package with the following settings:
$(LocalIisVersion) is 7
$(DestinationIisVersion) is 7
$(UseIis) is True
$(IisUrl) is
http://localhost/enhancement $(IncludeIisSettings) is False
$(_DeploymentUseIis) is False
$(DestinationUseIis) is False
GenerateMsdeployManifestFiles:
Generate source manifest file for Web Deploy package/publish ...
PackageUsingManifest:
Packaging into C:\Svn repos\V2.4\src\Web\obj\Release\Package\Web.zip.
Starting Web deployment task from source:manifest(C:\Svn repos\V2.4\src\Web\obj\Release\Package\Web.SourceManifest.xml) to Destination:package(C:\Svn repos\V2.4\src\Web\obj\Release\Package\Web.zip).
Successfully executed Web deployment task.
Package "Web.zip" is successfully created as single file at the following location:
file:///C:/Svn%20repos/V2.4/src/Web/obj/Release/Package To get the instructions on how to deploy the web package please visit the following
Thanks.