You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since .net9 files with "Always" are no longer copied to the outputfolder if the path of the projectfolder or any folder above it contains a "@". We found this behavior on our jenkins, because he creates for each worker a folder containing a "@".
To Reproduce
Create a folder like "test@dotnet"
Create a new dotnet console application
add a file with "copy always"
build
=> the file isnt copied
workarounds
option 1
create a global.json force to dotnet 8 sdk and retry
option 2
remove the "@" from the foldername
The text was updated successfully, but these errors were encountered:
I also have an issue where the files that are set to copy always and don't copy over have a set of parenthesis, like (1).
Perhaps these 2 issues are related?
Looks similar to #46833 (i.e., related to characters being escaped incorrectly and not being able to find the location), although I think this is an MSBuild issue?
Describe the bug
Since .net9 files with "Always" are no longer copied to the outputfolder if the path of the projectfolder or any folder above it contains a "@". We found this behavior on our jenkins, because he creates for each worker a folder containing a "@".
To Reproduce
workarounds
option 1
create a global.json force to dotnet 8 sdk and retry
option 2
remove the "@" from the foldername
The text was updated successfully, but these errors were encountered: