Is it possible to publish a web application without visual studio ?
If i got all my file on a compiling server without visual studio, is it possible to compile my files with command promp or something like that ?
Is it possible to publish a web application without visual studio ?
If i got all my file on a compiling server without visual studio, is it possible to compile my files with command promp or something like that ?
You will need ASP.NET Compilation Tool (Aspnet_compiler.exe)
http://msdn.microsoft.com/en-us/library/ms229863%28VS.80%29.aspx
Build:
msbuild .\Project.sln
Publish:
msbuild .\Project.Web.csproj /p:AllowUntrustedCertificate=True /t:MsDeployPublish /p:MsDeployServiceUrl=yourdomain.com;DeployIisAppPath="YourIISSiteName";username=YourAdminUser;password=YourAdminPassword
(msbuild.exe is located in your .NET framework location. i.e. C:\Windows\Microsoft.NET\Framework\v4.0.30319)