17 lines
513 B
C#
17 lines
513 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Generic;
|
|
using Microsoft.CodeAnalysis;
|
|
using Microsoft.CodeAnalysis.CSharp;
|
|
|
|
namespace Microsoft.Framework.Runtime
|
|
{
|
|
[AssemblyNeutral]
|
|
public interface IAfterCompileContext
|
|
{
|
|
CSharpCompilation CSharpCompilation { get; set; }
|
|
|
|
IList<Diagnostic> Diagnostics { get; }
|
|
}
|
|
} |