Mono.Cecil.Tests.BaseTestFixture.GetAssemblyResourcePath C# (CSharp) Method

GetAssemblyResourcePath() public static method

public static GetAssemblyResourcePath ( string name, Assembly assembly ) : string
name string
assembly System.Reflection.Assembly
return string
        public static string GetAssemblyResourcePath(string name, Assembly assembly)
        {
            return GetResourcePath (Path.Combine ("assemblies", name), assembly);
        }

Usage Example

コード例 #1
0
ファイル: Addin.cs プロジェクト: wradecki/ContinuousTests
 public override string GetModuleLocation(Assembly assembly)
 {
     return(BaseTestFixture.GetAssemblyResourcePath(module, assembly));
 }