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