AsmResolver.Net.GacDirectory.GetFilePath C# (CSharp) Method

GetFilePath() public method

public GetFilePath ( IAssemblyDescriptor descriptor ) : string
descriptor IAssemblyDescriptor
return string
        public string GetFilePath(IAssemblyDescriptor descriptor)
        {
            return Path.Combine(DirectoryPath,
                descriptor.Name,
                FolderPrefix + descriptor.Version + "__" + descriptor.PublicKeyToken.ToHexString(),
                descriptor.Name + ".dll");
        }