fixes
This commit is contained in:
parent
2deb9d343a
commit
b378fb0419
3 changed files with 10 additions and 3 deletions
|
@ -65,7 +65,7 @@ namespace Microsoft.DotNet.Cli.Compiler.Common
|
||||||
|
|
||||||
syntax.DefineOptionList(s_additionalArgumentsTemplate.LongName, ref additionalArguments, "Pass the additional argument directly to the compiler");
|
syntax.DefineOptionList(s_additionalArgumentsTemplate.LongName, ref additionalArguments, "Pass the additional argument directly to the compiler");
|
||||||
|
|
||||||
syntax.DefineOption(s_debugTypeTemplate, ref debugType, "The type of PDB to emit: portable or full");
|
syntax.DefineOption(s_debugTypeTemplate.LongName, ref debugType, "The type of PDB to emit: portable or full");
|
||||||
|
|
||||||
syntax.DefineOption(s_languageVersionTemplate.LongName, ref languageVersion,
|
syntax.DefineOption(s_languageVersionTemplate.LongName, ref languageVersion,
|
||||||
"The version of the language used to compile");
|
"The version of the language used to compile");
|
||||||
|
|
|
@ -26,6 +26,8 @@ namespace Microsoft.Extensions.DependencyModel
|
||||||
|
|
||||||
public bool? PublicSign { get; }
|
public bool? PublicSign { get; }
|
||||||
|
|
||||||
|
public string DebugType { get; }
|
||||||
|
|
||||||
public bool? EmitEntryPoint { get; }
|
public bool? EmitEntryPoint { get; }
|
||||||
|
|
||||||
public bool? GenerateXmlDocumentation { get; }
|
public bool? GenerateXmlDocumentation { get; }
|
||||||
|
@ -40,6 +42,7 @@ namespace Microsoft.Extensions.DependencyModel
|
||||||
keyFile: null,
|
keyFile: null,
|
||||||
delaySign: null,
|
delaySign: null,
|
||||||
publicSign: null,
|
publicSign: null,
|
||||||
|
debugType: null,
|
||||||
emitEntryPoint: null,
|
emitEntryPoint: null,
|
||||||
generateXmlDocumentation: null);
|
generateXmlDocumentation: null);
|
||||||
|
|
||||||
|
@ -52,6 +55,7 @@ namespace Microsoft.Extensions.DependencyModel
|
||||||
string keyFile,
|
string keyFile,
|
||||||
bool? delaySign,
|
bool? delaySign,
|
||||||
bool? publicSign,
|
bool? publicSign,
|
||||||
|
string debugType,
|
||||||
bool? emitEntryPoint,
|
bool? emitEntryPoint,
|
||||||
bool? generateXmlDocumentation)
|
bool? generateXmlDocumentation)
|
||||||
{
|
{
|
||||||
|
@ -64,6 +68,7 @@ namespace Microsoft.Extensions.DependencyModel
|
||||||
KeyFile = keyFile;
|
KeyFile = keyFile;
|
||||||
DelaySign = delaySign;
|
DelaySign = delaySign;
|
||||||
PublicSign = publicSign;
|
PublicSign = publicSign;
|
||||||
|
DebugType = debugType;
|
||||||
EmitEntryPoint = emitEntryPoint;
|
EmitEntryPoint = emitEntryPoint;
|
||||||
GenerateXmlDocumentation = generateXmlDocumentation;
|
GenerateXmlDocumentation = generateXmlDocumentation;
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,8 @@ namespace Microsoft.Extensions.DependencyModel
|
||||||
|
|
||||||
internal const string PublicSignPropertyName = "publicSign";
|
internal const string PublicSignPropertyName = "publicSign";
|
||||||
|
|
||||||
|
internal const string DebugTypePropertyName = "debugType";
|
||||||
|
|
||||||
internal const string EmitEntryPointPropertyName = "emitEntryPoint";
|
internal const string EmitEntryPointPropertyName = "emitEntryPoint";
|
||||||
|
|
||||||
internal const string GenerateXmlDocumentationPropertyName = "xmlDoc";
|
internal const string GenerateXmlDocumentationPropertyName = "xmlDoc";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue