Files
linux-packaging-mono/mcs/class/System.Private.CoreLib/System.Runtime.Loader/AssemblyDependencyResolver.cs

19 lines
418 B
C#
Raw Normal View History

namespace System.Runtime.Loader
{
public sealed class AssemblyDependencyResolver
{
public AssemblyDependencyResolver (string componentAssemblyPath)
{
}
public string ResolveAssemblyToPath (System.Reflection.AssemblyName assemblyName)
{
throw new NotImplementedException ();
}
public string ResolveUnmanagedDllToPath (string unmanagedDllName)
{
throw new NotImplementedException ();
}
}
}