Forrest logo
back to context overview

csc

List of commands for csc:

  • csc:tldr:33dee csc: Compile one or more C# files to a CIL executable.
    $ csc ${path-to-input_file_a-cs} ${path-to-input_file_b-cs}
    try on your machine
    explain this command
  • csc:tldr:3518d csc: Automatically generate XML documentation.
    $ csc /doc:${path-to-output-xml} ${path-to-input_file-cs}
    try on your machine
    explain this command
  • csc:tldr:5ed59 csc: Reference another assembly.
    $ csc /reference:${path-to-library-dll} ${path-to-input_file-cs}
    try on your machine
    explain this command
  • csc:tldr:7bfc5 csc: Strongly-name the resulting assembly with a keyfile.
    $ csc /keyfile:${path-to-keyfile} ${path-to-input_file-cs}
    try on your machine
    explain this command
  • csc:tldr:95750 csc: Embed a resource.
    $ csc /resource:${path-to-resource_file} ${path-to-input_file-cs}
    try on your machine
    explain this command
  • csc:tldr:95b88 csc: Specify the output filename.
    $ csc /out:${filenamename} ${path-to-input_file-cs}
    try on your machine
    explain this command
  • csc:tldr:a6e7c csc: Compile into a `.dll` library instead of an executable.
    $ csc /target:library ${path-to-input_file-cs}
    try on your machine
    explain this command
back to context overview