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
In multiple Microsoft Golang projects, there are inconsistencies in module capitalization, such as github.com/microsoft/go-mssqldb and github.com/Microsoft/go-winio. Under normal circumstances, this works fine, but when using go vendor, Windows, which is case-insensitive for directories, places both go-mssqldb and go-winio under the Microsoft directory. As a result, when compiling on a Linux system with the -mod=vendor flag, an error occurs stating that the package github.com/microsoft/go-mssqldb cannot be found:
cannot find module providing package github.com/microsoft/go-mssqldb: import lookup disabled by -mod=vendor
To avoid such issues, the capitalization of project names under the Microsoft organization should be standardized.
The text was updated successfully, but these errors were encountered:
In multiple Microsoft Golang projects, there are inconsistencies in module capitalization, such as github.com/microsoft/go-mssqldb and github.com/Microsoft/go-winio. Under normal circumstances, this works fine, but when using go vendor, Windows, which is case-insensitive for directories, places both go-mssqldb and go-winio under the Microsoft directory. As a result, when compiling on a Linux system with the -mod=vendor flag, an error occurs stating that the package github.com/microsoft/go-mssqldb cannot be found:
cannot find module providing package github.com/microsoft/go-mssqldb: import lookup disabled by -mod=vendor
To avoid such issues, the capitalization of project names under the Microsoft organization should be standardized.
The text was updated successfully, but these errors were encountered: