Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to build a SPA without using .net framework in visual studio?

The title should be self-explanitory, but just in case. I am trying to build an angular application which will be hosted on azure. Currently I am having some issues with using kestrel, so I would like to build the application in visual studio but without using any .net code (so no startup.cs or program.cs). If the answer is plainly no, then I guess I will need to find another IDE that will do what I require.

like image 423
r3plica Avatar asked Dec 21 '16 10:12

r3plica


People also ask

Does Visual Studio use .NET framework?

Software developers use . NET Framework to build many different types of applications—websites, services, desktop apps, and more with Visual Studio.

Do you need .NET Framework for C#?

Net framework (that only supports Windows). So yes, either the . Net framework or the Mono runtime is needed to run C# applications, new versions of Windows automatically install and update the . Net framework.

What replaces .NET framework?

“Java, Delphi, Mono, and ASP.NET are the best alternatives to the . NET framework. Java is one of the general-purpose computer programming languages, which is class-oriented, concurrent, object-based, and specially designed to possess a fewer implementation dependency.

What is difference between .NET and Visual Studio?

NET is a Microsoft-integrated development environment (IDE) that can be used for developing consoles, graphical user interfaces (GUIs), Windows Forms, Web services and Web applications. Visual Studio is used to write native code and managed code supported by Microsoft Windows, Windows Mobile, Windows CE, .


1 Answers

Yep. Just create a website project instead of a web application project.

https://msdn.microsoft.com/en-us/library/dd547590.aspx

Scenarios in which Web site projects are the preferred choice include the following:

You do not want to have to explicitly compile the project in order to deploy it.

like image 73
Kye Avatar answered Oct 15 '22 15:10

Kye