This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/src/Microsoft.Extensions.Testing.Abstractions/ISourceInformationProvider.cs

12 lines
383 B
C#
Raw Normal View History

2015-11-30 17:33:16 -08:00
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Reflection;
namespace Microsoft.Extensions.Testing.Abstractions
{
public interface ISourceInformationProvider
{
SourceInformation GetSourceInformation(MethodInfo method);
}
}