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
{{ message }}
This repository was archived by the owner on Dec 18, 2017. It is now read-only.
It seems like forward slashes do work when they are describing a path in the current directory (ie "**/*.cs"), but not with a path that begins by going up one level with "..".
The text was updated successfully, but these errors were encountered:
I was also wondering what the proper path separator would be when you want to be able to open or build a project on both windows and linux. Should you always use / or \ or would both be converted to the platform path separator. Personally i would prefer always using the / as the only valid path separator because in linux / is just a valid character in a file or directory name, so this would prevent some problems. It might be a good idea to document this in the project.json and global.json documentation.
I'll try it out but / is supposed to work (and did last time I tried). @desdesdes The correct way to work cross platform is to use / always, we're not going to automatically convert \ to / everywhere in the stack so best it's best if the right slashes are used for relative paths.
I'm trying to include some source code in my project from another folder. The following works:
However, if I use forward slashes, it doesn't include any of the source files:
It seems like forward slashes do work when they are describing a path in the current directory (ie
"**/*.cs"
), but not with a path that begins by going up one level with "..".The text was updated successfully, but these errors were encountered: