Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently this bug is open where the latest dotnet tool install for Roundhouse does not currently work due to it not finding the
DotNetToolSettings.xml
file. This was due to a change with the file path in the tool nuspec file where backslashes were swapped for forward slashes, which led to the directory structure of the tool package changing and nesting files deeper inside the structure of the package. As you can see in the below screenshot, changing the forward slashes to a backslashes restores the directory structure where the contents can be found under thetools\.netcoreapp2.1\any\
folder (on the right) instead of undertools\netcoreapp2.1\any\bin\netcoreapp2.1\publish
(on the left). With this new directory structure, theDotNetToolSettings.xml
file can be found directly under theany
folder now, which should alleviate the error currently being seen.I tested this change in both Windows where I originally made the change and in Ubuntu in WSL and the dotnet tool package appeared to build correctly in both systems.
I reviewed the contributor guidelines and did not see any other modifications I should make with this change, but if there is anything more I should do as a part of this fix, please let me know.