Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CsAssembly"/> class.
 /// </summary>
 /// <param name="assemblyName">Name of the assembly.</param>
 public CsAssembly(string assemblyName)
 {
     Name = assemblyName;
     Interop = new InteropManager();
     _configFilesLinked = new List<ConfigFile>();
     IsToUpdate = false;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CsAssembly"/> class.
 /// </summary>
 /// <param name="assemblyName">Name of the assembly.</param>
 public CsAssembly(string assemblyName)
 {
     Name               = assemblyName;
     Interop            = new InteropManager();
     _configFilesLinked = new List <ConfigFile>();
     IsToUpdate         = false;
 }
Esempio n. 3
0
 public CsAssembly()
 {
     Interop = new InteropManager();
 }