Is it possible to run multiple ASP.NET Core projects in single applications?
NickName:Arasu RRK Ask DateTime:2017-02-04T19:14:40

Is it possible to run multiple ASP.NET Core projects in single applications?

Consider I'm having two ASP.NET Core MVC Web projects.

  • Project A - will have accounts and user information. (Not a class library)
  • Project B - will get account information from project A

Project A can be run individually.

Project B & A can be combined and run as single application

Is it possible to handle this in ASP.NET Core? If yes, what is the beast approach?

Like this (This is a ASP.NET MVC app)

Copyright Notice:Content Author:「Arasu RRK」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/42039685/is-it-possible-to-run-multiple-asp-net-core-projects-in-single-applications

More about “Is it possible to run multiple ASP.NET Core projects in single applications?” related questions

Is it possible to run multiple ASP.NET Core projects in single applications?

Consider I'm having two ASP.NET Core MVC Web projects. Project A - will have accounts and user information. (Not a class library) Project B - will get account information from project A Project A...

Show Detail

Running multiple ASP.net core web api applications on a single Kestrel server instance

Is it possible to run multiple asp.net core web api applications on same machine and listening to different ports and all the services should be running on same kestrel instance? I have a requirem...

Show Detail

Keeping DRY with ASP.NET and multiple projects

Keeping DRY with ASP.NET and multiple projects. At the company I work for we are in the process of moving from Classic ASP to ASP.NET for our large intranet site. There are currently two develo...

Show Detail

Can the ASP.NET Core hosting bundle 5 run .NET/ASP.NET Core 2.1 applications as well?

Can the ASP.NET Core hosting bundle 5 run .NET/ASP.NET Core 2.1 applications as well? If not, is it possible to install the v2.1 hosting bundle in parallel to the v5 hosting bundle?

Show Detail

How to create, build and run a multi ASP.NET Core project in a single folder VsCode workspace?

How do I create, build and run multiple ASP.NET Core projects in a single folder in a VS Code workspace, for a repository that has a single startup project and one or more class libraries? The

Show Detail

Host multiple asp.net core web application under a single linux server

I am new to asp.net core. I read the whole Microsoft official document and able to host the application in Linux Apache server. But I want to host multiple asp.net core web applications under a sin...

Show Detail

Is it possible to develop ASP.NET MVC applications in Visual Studio for Mac?

Since I am planning to buy a new MacBook Pro (2017) and currently working on a Windows 10-device on a ASP.NET MVC (Not ASP.NET Core MVC) project for my internship, I was wondering if it is possible...

Show Detail

Debug Multiple ASP.Net Projects in VisualStudio2010

I have a solution file with two applications loaded. Both are MVC enabled apps, one is a data API the other is a service that consumes the API. I dont have a server to house this application on yet...

Show Detail

Single ASP.NET Identity for multiple projects

Is there any way to use the ASP.NET Identity mechanism over two different projects?? ie. I want to use a single authentication mechanism for a MVC project and a WebAPI project. Is it possible?

Show Detail

shared CSS and JS multiples projects Asp.net Core

I have a project which will have a framework for several projects, these projects will be done in asp.net core, several CSS files and JavaScripts will be shared between the projects, I would not li...

Show Detail