Skip to content

Commit

Permalink
Respond to PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
khyperia committed Nov 28, 2017
1 parent 91b329f commit 79bb85a
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/Test/Utilities/Portable/Metadata/IlasmUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,7 @@ private static string GetIlasmPath()
}
else
{
string ilasmExeName;
if (PlatformInformation.IsWindows)
{
ilasmExeName = "ilasm.exe";
}
else
{
ilasmExeName = "ilasm";
}
var ilasmExeName = PlatformInformation.IsWindows ? "ilasm.exe" : "ilasm";

var directory = AppContext.BaseDirectory;
string path = null;
Expand Down

0 comments on commit 79bb85a

Please sign in to comment.