CommandLineArguments.GetPdbFilePath(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a full path of the PDB file that the compiler will generate the debug symbols to if EmitPdbFile is true and the compilation succeeds.
public string GetPdbFilePath (string outputFileName);
member this.GetPdbFilePath : string -> string
Public Function GetPdbFilePath (outputFileName As String) As String
Parameters
- outputFileName
- String
Returns
Remarks
The method takes outputFileName
rather than using the value of OutputFileName since the latter might be unspecified, in which case actual output path can't be determined for C# command line without creating a compilation and finding an entry point. VB does not allow OutputFileName to be unspecified.