-
Notifications
You must be signed in to change notification settings - Fork 1
release v1.0 #1
base: release
Are you sure you want to change the base?
release v1.0 #1
Conversation
val path = Path.of("./project.assets.json") | ||
val streamFactory = ProjectStreamFactoryStub() | ||
.add(path, this::class.java.getResourceAsStream(target)) | ||
.add(Path.of("/Users/mikhail.nikolyukin/.config/NuGet/NuGet.Config"), this::class.java.getResourceAsStream(config)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Local file path, we need to change it on something user-neutral
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Users/mikhail.nikolyukin/.config/NuGet/NuGet.Config
is global config.
I can change path to something like ../../../../.config/NuGet/NuGet.Config
using relativeTo(projectDir), but isn't absolute path better?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is /Users/mikhail.nikolyukin/.config/NuGet/NuGet.Config
a fake path? If so could we use "/Users/username/.config/NuGet/NuGet.Config" instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
…SBuildSolutionDeserializer
… remove solution print to log because it makes a lot of noise
No description provided.