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.
Related
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 3 years ago.
Improve this question
I have been searching for an answer to this question. When I make a python in vsc, I add .py after the file name. When I make a java file I add .java after file name. For c# I don't know what to add. I tried .exe, it gives me this symbol "*". I tried .cs, and it gives me the same symbol.
.Java is to Java files as .CS is to C# files.
Additionally you can install the C# extension from VSCode
Go to Extensions (Ctrl+Shift+X)
Search for #id:ms-vscode.csharp and install
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 4 years ago.
Improve this question
I am a student and I am during my final project.
In my project I give an option to edit code and run it. The problem is, that I do not know how to create a new exe file after changing the code.
I would be happy if you can help me !!!
Thank you very much!
You can compile code into assemblies and then execute them as such.
This example should cover what I mean:
https://csharp.hotexamples.com/examples/System.CodeDom.Compiler/CodeDomProvider/CompileAssemblyFromFile/php-codedomprovider-compileassemblyfromfile-method-examples.html
You can access the compiled assembly from CompiledResults and run it directly in the current AppDomain like a script of some sorts or you can store it to an .exe
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 5 years ago.
Improve this question
I only know html and css.
And now I need to study c#
Can someone please explain what happens when i click the run button on my visual studio?
When does translating the souce code into machine code happens?
when does visual studio create an .exe?
Does this executable is already MSIL code already?
I already read some introduction of c#. But still i dont understand a thing.
I only need idea on how things works.
Thank you so much.
When you press the run button, it compiles and build the assemblies and executable file from the source code.
You can find your exe in the bin folder.
Check this link
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)