A .NET/Mono executable.
Inheritance: WindowsExe
Esempio n. 1
0
 public void NotDotNet()
 {
     var candidate = new DotNetExe();
     Assert.IsFalse(candidate.Analyze(
         baseDirectory: Directory,
         file: Deploy(WindowsExeTest.Reference32, xbit: false)));
 }
Esempio n. 2
0
 private bool Equals(DotNetExe other)
 {
     return base.Equals(other) &&
            MinimumRuntimeVersion == other.MinimumRuntimeVersion &&
            RuntimeType == other.RuntimeType &&
            ExternalDependencies == other.ExternalDependencies;
 }