From 169fefec5abc4f22611e3a3c95efd4ed0c13850c Mon Sep 17 00:00:00 2001 From: Neal Gafter Date: Thu, 29 Oct 2015 14:07:01 -0700 Subject: [PATCH] Add /debug:portable and /deterministic to csc/help and vbc/help --- src/Compilers/CSharp/Portable/CSharpResources.resx | 7 +++++-- src/Compilers/VisualBasic/Portable/VBResources.resx | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Compilers/CSharp/Portable/CSharpResources.resx b/src/Compilers/CSharp/Portable/CSharpResources.resx index 7eea2151023..1beb8a49792 100644 --- a/src/Compilers/CSharp/Portable/CSharpResources.resx +++ b/src/Compilers/CSharp/Portable/CSharpResources.resx @@ -4390,10 +4390,13 @@ To remove the warning, you can use /reference instead (set the Embed Interop Typ - CODE GENERATION - /debug[+|-] Emit debugging information - /debug:{full|pdbonly} Specify debugging type ('full' is default, and + /debug:{full|pdbonly|portable} + Specify debugging type ('full' is default, and enables attaching a debugger to a running - program) + program. 'portable' is a cross-platform format) /optimize[+|-] Enable optimizations (Short form: /o) + /deterministic Produce a deterministic assembly + (module version GUID and timestamp) - ERRORS AND WARNINGS - /warnaserror[+|-] Report all warnings as errors diff --git a/src/Compilers/VisualBasic/Portable/VBResources.resx b/src/Compilers/VisualBasic/Portable/VBResources.resx index 60fcaba1f34..8a4d95b7ff3 100644 --- a/src/Compilers/VisualBasic/Portable/VBResources.resx +++ b/src/Compilers/VisualBasic/Portable/VBResources.resx @@ -5048,7 +5048,10 @@ /removeintchecks[+|-] Remove integer checks. Default off. /debug[+|-] Emit debugging information. /debug:full Emit full debugging information (default). +/debug:portable Emit debugging information in the portable format. /debug:pdbonly Emit PDB file only. +/deterministic Produce a deterministic assembly + (module version GUID and timestamp) - ERRORS AND WARNINGS - /nowarn Disable all warnings. -- GitLab