本文整理汇总了C#中Library.GetItem方法的典型用法代码示例。如果您正苦于以下问题:C# Library.GetItem方法的具体用法?C# Library.GetItem怎么用?C# Library.GetItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Library
的用法示例。
在下文中一共展示了Library.GetItem方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExportLibrary
/// <summary>
/// Creates a <see cref="ILibraryExport"/> containing the references necessary
/// to use the provided <see cref="Library"/> during compilation.
/// </summary>
/// <param name="library">The <see cref="Library"/> to export</param>
/// <returns>A <see cref="ILibraryExport"/> containing the references exported by this library</returns>
public ILibraryExport ExportLibrary(Library library, DependencyManager dependencies)
{
// Check if we have a value cached on the Library
var export = library.GetItem<ILibraryExport>(LibraryExportLibraryPropertyName);
if (export != null)
{
return export;
}
switch (library.Identity.Type)
{
case LibraryTypes.Package:
export = ExportPackageLibrary(library);
break;
case LibraryTypes.Project:
export = ExportProjectLibrary(library, dependencies);
break;
default:
export = ExportOtherLibrary(library);
break;
}
// Cache for later use.
library[LibraryExportLibraryPropertyName] = export;
LogExport(library, export);
return export;
}
示例2: ExportOtherLibrary
private ILibraryExport ExportOtherLibrary(Library library)
{
// Try to create an export for a library of other or unknown type
// based on well-known properties.
// Reference Assemblies just put the full path in a property for us.
var path = library.GetItem<string>(KnownLibraryProperties.AssemblyPath);
if (!string.IsNullOrEmpty(path))
{
return new LibraryExport(
new MetadataFileReference(
Path.GetFileNameWithoutExtension(path),
path));
}
Log.LogWarning($"Unable to export {library.Identity}. {library.Identity.Type} libraries are not supported.");
return LibraryExport.Empty;
}