Transforms Web.Config.Release
http://vishaljoshi.blogspot.com/2009/02/web-deployment-with-vs-2010-and-iis.html
Install IIS7 Deployment
download Web Platform Installer for IIS7, only way I managed was to install chrome, and then download it.
YAY microsoft, lock me out and make me install an UNSAFE browser just to do basic admin IT work.
http://technet.microsoft.com/en-us/library/dd569059.aspx
select custom
http://learn.iis.net/page.aspx/1022/how-to-configure-a-site-for-publishing-with-web-deploy/
Web Deploy 2.0 includes a new UI in IIS Manager to configure an IIS site for Web Deploy publishing. This UI serves two purposes:
- Sets up file system permissions to enable the Web Deploy publishing service to publish to the site
- Generates a publish settings file which can be used in tools like WebMatrix or Visual Studio 2010 to publish to the site without having to enter publishing settings manually
Let's say that we want to grant a local Windows user "JohnDoe" publishing access to the IIS site, contoso.com:
- Start IIS Manager by clicking Start > Run and typing "inetmgr.exe"
- Connect to the server you want to manage.
- Expand the Sites node and right click "contoso.com"
- Click Deploy > Configure for Web Deploy Publishing...
- The following UI will show - you can simply click "Setup" and the currently logged-in user will be granted Web Deploy publishing permissions.
Now try to publish from VS STUDIO 2010
If you get this error Could not load file or assembly bla bla bla one of its dependencies. An attempt was made to load a program with an incorrect format it might be a 32bit/64bit issue
Go to IIS -> Application Pool -> Advance Settings -> Enable 32-bit Assemblies
And now FINALLY
I works
2 comments:
Hi,If your destination is remote, you’ll need the Web Deploy remote service installed and running on the remote machine. Best practice in Web Design Cochin is to check for dependencies before a sync operation with getDependencies and resolve conflicts and unsupported components.Thanks......
Thankyou aparna, I was trying to deploy to an internal server, so no remote.
Post a Comment