-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
dotnet run -bl:run_lowercase.binlog
-> worksdotnet run -BL:run_uppercase.binlog
-> doesn't workdotnet build -bl:build_lowercase.binlog
-> worksdotnet build -BL:build_uppercase.binlog
-> works
So, for dotnet build
, it's case insensitive. For dotnet run
, it's case sensitive.
NOTE: dotnet test is similar to dotnet build. It might be that only dotnet run is different?
@baronfel I'm not sure if such consistency is known or not.