dotnet-installer/test/dotnet-run.Tests
William Li 83f3a3ec86 Fix dotnet run double dash passing arguments
When run “dotnet run -- foo”, foo should be the argument passed to the
subject app. After replacing the original parser, dotnet-run did not
utilize the “unparsedtoken” of the parsed result.

To append unparsedtoken to RunCommand’s argument is not straight
forward. RunCommand has an “immutable constructor”, which is a good
thing, so I made update RunCommand’s argument following the immutable
pattern -- create a new object with the original field but only change
the arguments. I also made these filed private set.
2017-04-13 16:56:57 -07:00
..
dotnet-run.Tests.csproj Fix excessive removals 2017-03-02 20:51:03 -08:00
GivenDotnetRunRunsCsProj.cs Fix dotnet run double dash passing arguments 2017-04-13 16:56:57 -07:00