Leaked source code of windows server 2003
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

  1. using System;
  2. namespace Microsoft.Fusion.ADF
  3. {
  4. public class DependentAssemblyInfo
  5. {
  6. private AssemblyIdentity assmID;
  7. private string codeBase;
  8. public DependentAssemblyInfo(AssemblyIdentity assmID, string codeBase)
  9. {
  10. this.assmID = assmID;
  11. this.codeBase = codeBase;
  12. }
  13. public AssemblyIdentity AssmID
  14. {
  15. get
  16. {
  17. return assmID;
  18. }
  19. }
  20. }
  21. }