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:
Related
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
I just have written a code in C# its a web browser using Visual Studio 2015
How do i make it compiled to .exe file and etc, like chrome mozilla etc.
Help appriciated.
Assuming you set up your project correctly in VS, it's Ctrl-Shft-B to compile. The exe / dll files should end up wherever specified by your Build Output directory. To learn about/change this see Change Build Output Directory.
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 am given a source control which comprises class libraries only.
How should I run the project?
You can't debug a class library directly. If you think about it, where would it start running, i.e. what method? You need to have an executable (console application, winforms, wpf, etc.) project to run, which would typically reference your class library.
If you have one of those in your solution, right-click on it in the solution explorer and select "Set as Startup Project". Then try again.
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
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 8 years ago.
Improve this question
When ever run my installed solution the application name differ from my application. How can i show the application name in Task manager use visual studio 2013
This is easy to do. Task Manager reads it from the file version resource, an unmanaged resource embedded into a program. The equivalent in .NET is the FileVersionInfo.FileDescription property.
The easiest way to set it is with Project + Properties, Compile tab, Assembly Information button, Title field.
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)