how to add a webapi to an existing c# project [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a c# solution that contains my project in Microsoft Visual Studio and I want to add a webapi to it. How would I do that? Specifically what do I need to add references for to get it working?
Visual Studio Version:
Community 2015
.net Version: 4.5

What version of visual studio?
Try adding via nuget.
https://www.nuget.org

Related

Does Blazor support .Net Core or .Net 5.0? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Does Blazor support .Net Core or .Net 5.0? When I create a new project with the templates available in VS2019 I get a .Net Standard Blazor project in my solution. Am I missing something?
Absolutely, Blazor has a .Net 5 version with numerous improvements: https://www.codemag.com/Article/2010102/Blazor-Updates-in-.NET-5
Depending on your version of VS however, you might need the preview branch to use it.

Insert 3d objects (.obj) in WPF project [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I'm beginer in WPF, and i need to insert 3d objects (.obj) in the project and do some animations on theme.
I use Visual Studio 2015.
Can you tell me the best practice?
Thank you.
You can use the Helix-Toolkit, that allows for more complex 3D in WPF, you can find it here: https://github.com/helix-toolkit/helix-toolkit
Alternatively you can install it via the Nuget Package Manager:
Install-Package HelixToolkit.Wpf
You can find a Getting-Started guide here: Getting-Started

microsoft visual studio ultimate 2013 with update 4 hase stopped working [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
When I want to install Visual 2013 in Win8.1 this error apears:
Microsoft Visual Studio Ultimate 2013 with Update 4 has stopped working
How can I resolve this problem?
When I Updated My Graphic card My Problem was Solved.
Try disabling .net 3.5 by:
Control Panel > Programs and Features > Turn Windows Features on or off

Visual Studio runs unwanted code [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How can I make Visual Studio run a certain project? I have two projects and it runs the first one I created every time. I'm using VS 2013
You simply have to right click on that project and then select "Set as StartUp Project".
This defines what project should be run/compiled whenever you run/compile.
Here's a screenshot:

Create .exe manually in Visual Studio 2012 [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
When we build solution, exe is created automatically in \bin\Release or \bin\Debug. Is there any way to create .exe manually(not publishing) in visual studio. I already posted this question
visual studio not creating .exe
Manually mean command line or some thing like..... other than using build
Your question is not so clear.
But if you meaning to commandline you can build with MSBuild, DEVENV and NMake (link)
you also can build with csc.exe (link)

Categories