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
The previous code was expecting the passed in name to be a lowercase
substring of the dll file name. It's now expected to be the full name (not
a substring) but allow the case to differ.
Fixesfsprojects#1732
Description
Contrary to what the documentation specifies library aliases dll names must be lowercase, it mean that the example in the documentation doesn't work.
The correct version being :
Repro steps
Apply what the documentation specifies :
Run
paket install
Expected behavior
Aliases are created when the exact dll name is specified.
Actual behavior
Doesn't create aliases in the project file.
Known workarounds
Please provide a description of any known workarounds.
Bla bla
Ideally the case would be completely ignored.
Also the current code matches on substrings & that might be a litle bit surprising (
alias c foo
will alias any dll containing the letter c)ProjectFile.cs :
i'll send a PR with a fix
The text was updated successfully, but these errors were encountered: