Skip to content

Commit

Permalink
https://github.com/dotnet/sdk/issues/946
Browse files Browse the repository at this point in the history
  • Loading branch information
John Beisner committed Oct 19, 2017
1 parent 07f0d02 commit e7f8939
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,6 @@ Copyright (c) .NET Foundation. All rights reserved.

<Message Text="CrossgenCommandline: $(CrossgenCommandline)"/>

<!-- Workaround for https://github.com/NuGet/Home/issues/4424 -->
<Exec Command="chmod 755 $(CrossgenExe)" Condition="'$(OS)' != 'Windows_NT'"/>

<!--Optimization skip if the assembly is already present in the final output directory-->
<Exec
Command="$(CrossgenCommandline)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public void It_builds_a_runnable_output()
});

Command.Create(selfContainedExecutableFullPath, new string[] { })
.EnsureExecutable()
.CaptureStdOut()
.Execute()
.Should()
Expand Down Expand Up @@ -123,7 +122,6 @@ public void It_succeeds_when_RuntimeIdentifier_and_PlatformTarget_mismatch_but_P
string selfContainedExecutableFullPath = Path.Combine(outputDirectory.FullName, selfContainedExecutable);

Command.Create(selfContainedExecutableFullPath, new string[] { })
.EnsureExecutable()
.CaptureStdOut()
.Execute()
.Should()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public void It_builds_a_RID_specific_runnable_output()
string selfContainedExecutableFullPath = Path.Combine(outputDirectory.FullName, selfContainedExecutable);

Command.Create(selfContainedExecutableFullPath, new string[] { })
.EnsureExecutable()
.CaptureStdOut()
.CaptureStdErr()
.Execute()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ public void It_publishes_self_contained_apps_to_the_publish_folder_and_the_app_s
});

Command.Create(selfContainedExecutableFullPath, new string[] { })
.EnsureExecutable()
.CaptureStdOut()
.Execute()
.Should()
Expand Down Expand Up @@ -446,4 +445,4 @@ public void A_deployment_project_can_reference_the_hello_world_project()
.Pass();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public void It_publishes_a_self_contained_runnable_output()
});

Command.Create(Path.Combine(publishDirectory.FullName, selfContainedExecutable), new string[] { })
.EnsureExecutable()
.CaptureStdOut()
.Execute()
.Should().Pass()
Expand Down
29 changes: 0 additions & 29 deletions test/Microsoft.NET.TestFramework/CommandExtensions.cs

This file was deleted.

0 comments on commit e7f8939

Please sign in to comment.