Is there a way to configure a batch file or a script file that I can run to compile my .NET so that I can only edit in Notepad ++?

I know that I will miss so much Visual Studio, but it’s really hard for me to crash all the time and be slow, PLUS it always changes things in my repository that I don’t want to change, so I just want to edit using Notepad ++. However, now I have to download VS only to create things. Is there a way that I can build from the command line and make a script for it, and what not? Will a compilation error be displayed?

Please do not try to eliminate VS for me, I just ask what is in the question, and the rest was just asked for context, and therefore no one was like "YU NO RIKE VIZAL STUDIA?".

+3
source share
2 answers

build: C: \ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ MSBuild.exe " PATH TO YOUR SOLUTION FILE "
help: C: \ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ MSBuild.exe / help

+4
source

csc.exe, # ( Visual Studio). - GCC, , , Windows /sign - . MSDN : http://msdn.microsoft.com/en-us/library/78f4aasd.aspx.

, - :

csc /target:exe /out:Something.exe *.cs

/, Visual Studio.

, .bat , , NAnt , Ant, Java.

, , Visual Studio. Snowbear MSBuild.exe .

+2

All Articles