コード例 #1
0
ファイル: FrontEnd.cs プロジェクト: sahilmgandhi/BuildXL
 /// <inheritdoc />
 public void InitializeFrontEnd([NotNull] FrontEndHost host, [NotNull] FrontEndContext context, [NotNull] IConfiguration configuration)
 {
     Host          = host;
     Context       = context;
     Configuration = configuration;
 }
コード例 #2
0
ファイル: FrontEndContext.cs プロジェクト: kittinap/kunnjae
 /// <summary>
 /// Sets the singleton debugging context with the given context.
 /// </summary>
 public static void SetContextForDebugging(FrontEndContext frontEndContext)
 {
     Contract.Requires(frontEndContext != null);
     DebugContext = frontEndContext;
 }