headermask image

header image

MIcrosoft FXCop

Many of the developers in IT industry would not follow their coding standards in .Net if they are not aware of Microsoft FXCop. FxCop is a tool to analyze the code that checks .NET managed code assemblies for conformance to the Microsoft .NET Framework Design. It can inspect assemblies for more than 200 defects which [...]

Sample Command Lines

Sample Command Lines
Compiles testFile.cs producing testFile.exe:
csc testFile.cs
Compiles testFile.cs producing testFile.dll:
csc /target:library testFile.cs
Compiles testFile.cs and creates Me.exe:
csc /out: Me.exe testFile.cs
Command to Compile all the C# files in the current directory, defines the DEBUG symbol with optimizations on. The output is testFile.exe:
csc /define: DEBUG /optimize /out: testFile.exe *.cs
Command to Compile all of the C# files in the [...]