Issue The project I am working on involves reading a lot of service endpoints (url) from a config file. Since the list would be quite large I decided to keep them in a custom config file to keep my web.config
Continue readingTag: webdeploy
[SOLVED] Error publishing an ASP.NET Core 3.1 site to Azure from Visual Studio 2019
Issue I have a preexisting ASP.NET Core 3.0 application which is successfully deployed to an Azure App Service (using the AspNetCoreModuleV2 module). After upgrading the app to (today’s release of) ASP.NET Core 3.1, the application builds and runs correctly on
Continue reading[SOLVED] How to deploy an ASP.NET MVC application on build using MSBuild in Visual Studio 2015?
Issue I want the application to be deployed to a local folder when I build the project. This should produce a zip file that I can use to import in IIS. How can I achieve this? Solution Command line msbuild
Continue reading[SOLVED] An assembly specified in the application dependencies manifest (Test.deps.json) has already been found but with a different file extension:
Issue I am trying to publish a new .net API to IIS. because this needs to be done to a production server I am trying this with a sample API project and a test server to figure out how to
Continue reading[SOLVED] Web Deploy experienced a connection problem with the server and had to terminate the connection – Azure App Service
Issue While trying to deploy a .NET 5 web app to Azure App Service from Visual Studio, I’m hit with this unhelpful error window message: Publish has encountered an error. Build failed. Check the Output window for more details. A
Continue reading[SOLVED] How to use the password in pubxml.user during dotnet publish
Issue I am trying to setup CI for a ASP.NET project. There is a publish profile defined in VS, which is working fine. (I can deploy the page to a remote IIS server.) I want to automate this, using GitLab,
Continue reading