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.
24 lines
393 B
24 lines
393 B
using System;
|
|
|
|
namespace Microsoft.Fusion.ADF
|
|
{
|
|
public class DependentAssemblyInfo
|
|
{
|
|
private AssemblyIdentity assmID;
|
|
private string codeBase;
|
|
|
|
public DependentAssemblyInfo(AssemblyIdentity assmID, string codeBase)
|
|
{
|
|
this.assmID = assmID;
|
|
this.codeBase = codeBase;
|
|
}
|
|
|
|
public AssemblyIdentity AssmID
|
|
{
|
|
get
|
|
{
|
|
return assmID;
|
|
}
|
|
}
|
|
}
|
|
}
|