.vsconfigapplicationhost.config in source control
Visual Studio 2015 adds a file named .vsconfigapplicationhost.config
to the root of a solution when an ASP.NET Web application project is created.
Visual Studio 2015 adds a file named .vsconfigapplicationhost.config
to the root of a solution when an ASP.NET Web application project is created.
From previous versions of the question, there is this: Browse website with ip address rather than localhost, which outlines pretty much what I’ve done so far…I’ve got the local IP working. Then I found ngrok, and apparently I don’t need to connect via the IP.
I have an ASP.Net application that performs some database initialization during Application_Start in Global.asax. I’m using IIS Express to debug the application.
We are running a web API with ASP.NET Core on IIS Express locally. We are using a custom domain name configured in the hosts-file.
I’m trying to use Windows Authentication in my ASP.NET application. Whenever I try to view the app it sends me to a login page. How can I make it work without having to manually login via the browser?
We recently upgraded a .NET Core 2.1 Web App to .NET 3.1. Ever since, our profiles in launchSettings.json are not properly working. Specifically, the environmentVariables are not loading, with one in particular being “ASPNETCORE_ENVIRONMENT”. We use this to switch appSettings.{Environment}.json when debugging locally to target different environments.
I want to compress responses coming from my IIS Express driven web application. We’re using IIS Express as local development webserver and IIS on staging and on our build machines. I have found many guides on enabling gzipped responses on IIS but none for IIS Express. Is it even possible?
I am having an issue with IIS express or Visual Studio 2013.
I have a VS project in .NET MVC5 which loads an external dll file that uses a lot of memory. In average it uses from 500-1000MB memory.
I’m serving my MVC app locally via localhost:5252 right now.