本文整理汇总了C#中DotNetProjectConfiguration.GetDefineSymbols方法的典型用法代码示例。如果您正苦于以下问题:C# DotNetProjectConfiguration.GetDefineSymbols方法的具体用法?C# DotNetProjectConfiguration.GetDefineSymbols怎么用?C# DotNetProjectConfiguration.GetDefineSymbols使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DotNetProjectConfiguration
的用法示例。
在下文中一共展示了DotNetProjectConfiguration.GetDefineSymbols方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateParseOptions
public override Microsoft.CodeAnalysis.ParseOptions CreateParseOptions (DotNetProjectConfiguration configuration)
{
var symbols = GetDefineSymbols ();
if (configuration != null)
symbols = symbols.Concat (configuration.GetDefineSymbols ()).Distinct ();
return new Microsoft.CodeAnalysis.CSharp.CSharpParseOptions (
GetRoslynLanguageVersion (langVersion),
Microsoft.CodeAnalysis.DocumentationMode.Parse,
Microsoft.CodeAnalysis.SourceCodeKind.Regular,
ImmutableArray<string>.Empty.AddRange (symbols)
);
}
示例2: Compile
//.........这里部分代码省略.........
if (hasWin32Res) {
monitor.ReportWarning ("Both Win32 icon and Win32 resource cannot be specified. Ignoring the icon.");
} else {
AppendQuoted (sb, "/win32icon:", projectParameters.Win32Icon);
}
}
if (projectParameters.CodePage != 0)
sb.AppendLine ("/codepage:" + projectParameters.CodePage);
else if (runtime is MonoTargetRuntime)
sb.AppendLine ("/codepage:utf8");
if (compilerParameters.UnsafeCode)
sb.AppendLine ("-unsafe");
if (compilerParameters.NoStdLib)
sb.AppendLine ("-nostdlib");
if (!string.IsNullOrEmpty (compilerParameters.PlatformTarget) && compilerParameters.PlatformTarget.ToLower () != "anycpu") {
//HACK: to ignore the platform flag for Mono <= 2.4, because gmcs didn't support it
if (runtime.RuntimeId == "Mono" && runtime.AssemblyContext.GetAssemblyLocation ("Mono.Debugger.Soft", null) == null) {
LoggingService.LogWarning ("Mono runtime '" + runtime.DisplayName +
"' appears to be too old to support the 'platform' C# compiler flag.");
} else {
sb.AppendLine ("/platform:" + compilerParameters.PlatformTarget);
}
}
if (compilerParameters.TreatWarningsAsErrors) {
sb.AppendLine ("-warnaserror");
if (!string.IsNullOrEmpty (compilerParameters.WarningsNotAsErrors))
sb.AppendLine ("-warnaserror-:" + compilerParameters.WarningsNotAsErrors);
}
foreach (var define in configuration.GetDefineSymbols ()) {
AppendQuoted (sb, "/define:", define);
sb.AppendLine ();
}
CompileTarget ctarget = configuration.CompileTarget;
if (!string.IsNullOrEmpty (projectParameters.MainClass)) {
sb.AppendLine ("/main:" + projectParameters.MainClass);
// mcs does not allow providing a Main class when compiling a dll
// As a workaround, we compile as WinExe (although the output will still
// have a .dll extension).
if (ctarget == CompileTarget.Library)
ctarget = CompileTarget.WinExe;
}
switch (ctarget) {
case CompileTarget.Exe:
sb.AppendLine ("/t:exe");
break;
case CompileTarget.WinExe:
sb.AppendLine ("/t:winexe");
break;
case CompileTarget.Library:
sb.AppendLine ("/t:library");
break;
}
foreach (ProjectFile finfo in projectItems.GetAll<ProjectFile> ()) {
if (finfo.Subtype == Subtype.Directory)
continue;
switch (finfo.BuildAction) {