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