You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
818 B
39 lines
818 B
// |
|
// Author: |
|
// Jb Evain (jbevain@gmail.com) |
|
// |
|
// Copyright (c) 2008 - 2015 Jb Evain |
|
// Copyright (c) 2008 - 2011 Novell, Inc. |
|
// |
|
// Licensed under the MIT/X11 license. |
|
// |
|
|
|
using System; |
|
|
|
namespace ILRuntime.Mono.Cecil { |
|
|
|
public sealed class AssemblyLinkedResource : Resource { |
|
|
|
AssemblyNameReference reference; |
|
|
|
public AssemblyNameReference Assembly { |
|
get { return reference; } |
|
set { reference = value; } |
|
} |
|
|
|
public override ResourceType ResourceType { |
|
get { return ResourceType.AssemblyLinked; } |
|
} |
|
|
|
public AssemblyLinkedResource (string name, ManifestResourceAttributes flags) |
|
: base (name, flags) |
|
{ |
|
} |
|
|
|
public AssemblyLinkedResource (string name, ManifestResourceAttributes flags, AssemblyNameReference reference) |
|
: base (name, flags) |
|
{ |
|
this.reference = reference; |
|
} |
|
} |
|
}
|
|
|