Click here to Skip to main content
15,909,498 members
Home / Discussions / C#
   

C#

 
QuestionSystem.IO.File.Delete() Pin
M Riaz Bashir30-Sep-07 20:33
M Riaz Bashir30-Sep-07 20:33 
AnswerRe: System.IO.File.Delete() Pin
blackjack215030-Sep-07 20:49
blackjack215030-Sep-07 20:49 
GeneralRe: System.IO.File.Delete() Pin
M Riaz Bashir30-Sep-07 20:50
M Riaz Bashir30-Sep-07 20:50 
AnswerRe: System.IO.File.Delete() Pin
yogesh_kumar_agarwal30-Sep-07 21:05
yogesh_kumar_agarwal30-Sep-07 21:05 
QuestionTime values in datagrid Pin
yogesh_kumar_agarwal30-Sep-07 20:25
yogesh_kumar_agarwal30-Sep-07 20:25 
AnswerRe: Time values in datagrid Pin
Mandaar Kulkarni1-Oct-07 0:33
Mandaar Kulkarni1-Oct-07 0:33 
QuestionMSBuild command line Pin
Abhi Lahare30-Sep-07 20:23
Abhi Lahare30-Sep-07 20:23 
AnswerRe: MSBuild command line Pin
Mandaar Kulkarni30-Sep-07 21:11
Mandaar Kulkarni30-Sep-07 21:11 
Check out followings

You can get this by firing csc -? on .NET command prompt


- OUTPUT FILES -
/out:<file> Specify output file name (default: base name of file with main class or first file)
/target:exe Build a console executable (default) (Short form: /t:exe)
/target:winexe Build a Windows executable (Short form: /t:winexe)
/target:library Build a library (Short form: /t:library)
/target:module Build a module that can be added to another assembly (Short form: /t:module)
/delaysign[+|-] Delay-sign the assembly using only the public portion of the strong name key
/doc:<file> XML Documentation file to generate
/keyfile:<file> Specify a strong name key file
/keycontainer:<string> Specify a strong name key container
/platform:<string> Limit which platforms this code can run on: x86, Itanium, x64, or anycpu. The default is anycpu.

- INPUT FILES -
/recurse:<wildcard> Include all files in the current directory and subdirectories according to the wildcard specifications
/reference:<alias>=<file> Reference metadata from the specified assembly file using the given alias (Short form: /r)
/reference:<file list=""> Reference metadata from the specified assembly files (Short form: /r)
/addmodule:<file list=""> Link the specified modules into this assembly

- RESOURCES -
/win32res:<file> Specify a Win32 resource file (.res)
/win32icon:<file> Use this icon for the output
/resource:<resinfo> Embed the specified resource (Short form: /res)
/linkresource:<resinfo> Link the specified resource to this assembly (Short form: /linkres)
Where the resinfo format is <file>[,<string name="">[,public|private]]

- CODE GENERATION -
/debug[+|-] Emit debugging information
/debug:{full|pdbonly} Specify debugging type ('full' is default, and enables attaching a debugger to a running program)
/optimize[+|-] Enable optimizations (Short form: /o)

- ERRORS AND WARNINGS -
/warnaserror[+|-] Report all warnings as errors
/warnaserror[+|-]:<warn list=""> Report specific warnings as errors
/warn:<n> Set warning level (0-4) (Short form: /w)
/nowarn:<warn list=""> Disable specific warning messages

- LANGUAGE -
/checked[+|-] Generate overflow checks
/unsafe[+|-] Allow 'unsafe' code
/define:<symbol list=""> Define conditional compilation symbol(s) (Short form: /d)
/langversion:<string> Specify language version mode: ISO-1 or Default

- MISCELLANEOUS -
@<file> Read response file for more options
/help Display this usage message (Short form: /?)
/nologo Suppress compiler copyright message
/noconfig Do not auto include CSC.RSP file

- ADVANCED -
/baseaddress:
Base address for the library to be built
/bugreport:<file> Create a 'Bug Report' file.
/codepage:<n> Specify the codepage to use when opening source files
/utf8output Output compiler messages in UTF-8 encoding
/main:<type> Specify the type that contains the entry point (ignore all other possible entry points) (Short form: /m)
/fullpaths Compiler generates fully qualified paths
/filealign:<n> Specify the alignment used for output file sections
/pdb:<file> Specify debug information file name (default: output file name with .pdb extension)
/nostdlib[+|-] Do not reference standard library (mscorlib.dll)
/lib:<file list=""> Specify additional directories to search in for references
/errorreport:<string> Specify how to handle internal compiler errors: prompt, send, queue, or none. The default is queue.
/moduleassemblyname:<string> Name of the assembly which this module will be a part of.

GeneralRe: MSBuild command line Pin
Abhi Lahare1-Oct-07 0:07
Abhi Lahare1-Oct-07 0:07 
Questionproblem with System.OutOfMemoryException Pin
Super Lloyd30-Sep-07 20:21
Super Lloyd30-Sep-07 20:21 
AnswerRe: problem with System.OutOfMemoryException Pin
Martin#30-Sep-07 21:47
Martin#30-Sep-07 21:47 
GeneralRe: problem with System.OutOfMemoryException Pin
Super Lloyd1-Oct-07 13:24
Super Lloyd1-Oct-07 13:24 
QuestionSQL Problem. Pin
Janu_M30-Sep-07 20:03
Janu_M30-Sep-07 20:03 
AnswerRe: SQL Problem. Pin
N a v a n e e t h30-Sep-07 20:29
N a v a n e e t h30-Sep-07 20:29 
GeneralRe: SQL Problem. Pin
Janu_M1-Oct-07 2:01
Janu_M1-Oct-07 2:01 
AnswerRe: SQL Problem. Pin
Andrei Ungureanu30-Sep-07 21:26
Andrei Ungureanu30-Sep-07 21:26 
GeneralRe: SQL Problem. Pin
Janu_M1-Oct-07 2:02
Janu_M1-Oct-07 2:02 
QuestionDelete/Remove any particular File from any particular Folder/Direcotory Pin
M Riaz Bashir30-Sep-07 19:55
M Riaz Bashir30-Sep-07 19:55 
AnswerRe: Delete/Remove any particular File from any particular Folder/Direcotory Pin
Tamimi - Code30-Sep-07 20:01
Tamimi - Code30-Sep-07 20:01 
GeneralRe: Delete/Remove any particular File from any particular Folder/Direcotory Pin
M Riaz Bashir30-Sep-07 20:23
M Riaz Bashir30-Sep-07 20:23 
QuestionAccessing controls form class file problem Pin
rakeshpckm30-Sep-07 19:42
rakeshpckm30-Sep-07 19:42 
AnswerRe: Accessing controls form class file problem Pin
N a v a n e e t h30-Sep-07 20:06
N a v a n e e t h30-Sep-07 20:06 
QuestionFinding functions with no reference Pin
N a v a n e e t h30-Sep-07 19:19
N a v a n e e t h30-Sep-07 19:19 
AnswerRe: Finding functions with no reference Pin
Christian Graus30-Sep-07 19:29
protectorChristian Graus30-Sep-07 19:29 
GeneralRe: Finding functions with no reference Pin
N a v a n e e t h30-Sep-07 19:44
N a v a n e e t h30-Sep-07 19:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.