提交 47bedda1 编写于 作者: T tmeschter

Make UnresolvedAnalyzerReference public. It is useful outside of the...

Make UnresolvedAnalyzerReference public. It is useful outside of the command-line compilers. (changeset 1237429)
上级 43a885da
......@@ -32,7 +32,7 @@ public virtual string Display
/// <summary>
/// Returns true if this reference is an unresolved reference.
/// </summary>
internal virtual bool IsUnresolved
public virtual bool IsUnresolved
{
get { return false; }
}
......
......@@ -13,7 +13,7 @@ public sealed class UnresolvedAnalyzerReference : AnalyzerReference
{
private readonly string unresolvedPath;
internal UnresolvedAnalyzerReference(string unresolvedPath)
public UnresolvedAnalyzerReference(string unresolvedPath)
{
this.unresolvedPath = unresolvedPath;
}
......@@ -34,7 +34,7 @@ public override string FullPath
}
}
internal override bool IsUnresolved
public override bool IsUnresolved
{
get { return true; }
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册