Closed codekoenig closed 2 years ago
Thanks for the repro. Will need to investigate this to see why we are not maintaining the correct encoding
@codekoenig . This is fixed and should go out with 17.3 Preview 2 release.
@dbreshears wow that was quick, thanks very much, will make sure to test this when it arrives
Should be fixed now
I use compose in Visual Studio to start & debug my app. Unfortunately, while the build and compose process seems to succeed without error, debugging was simply not starting without any errors.
After a lot of trial & error I tracked down the issue: my last name contains an Umlaut (ö) and my Windows user profile therefor has an Umlaut in it (
..\users\bernhardkönig\
).Here is my
docker-compose.yml
for my small demo app:Here is the generated
docker-compose.vs.debug.g.yml
that will contain full paths with the Umlauts in it:To reproduce:
c:\umlautissue\
c:\umlautissue
so that it contains an umlaut, replace the u with ü for example:c:\ümlautissue
Due to no errors or warnings or logs I could find, I have no idea where the issue is coming from. But this clue might help: a folder is created for a file named
CanonicalServiceNames
that clearly has encoding issues (my folder name of choice wastmpsöurce
):So it might be related to this file that can't be found at a later point due to the ill encoded path name. But just a guess from my side.