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
[severity:I'm unable to use this version]
So when you create a file such as
namespace MyNamespace
module MyModule =
()
If you write some code that imports a namespace
namespace MyNamespace
module MyModule =
let getGuid = Guid.NewGuid()
If you import that namespace using the ctrl+. stuff, it will do this
open System
namespace MyNamespace
module MyModule =
which is incorrect, it needs to be:
namespace MyNamespace
open System
module MyModule =
Original Comments
Feedback Bot on 11/25/2021, 09:52 PM:
We have directed your feedback to the appropriate engineering team for further evaluation. The team will review the feedback and notify you about the next steps.
Original Solutions
(no solutions)
The text was updated successfully, but these errors were encountered:
This issue has been moved from a ticket on Developer Community.
[severity:I'm unable to use this version]
So when you create a file such as
If you write some code that imports a namespace
If you import that namespace using the
ctrl+.
stuff, it will do thiswhich is incorrect, it needs to be:
Original Comments
Feedback Bot on 11/25/2021, 09:52 PM:
We have directed your feedback to the appropriate engineering team for further evaluation. The team will review the feedback and notify you about the next steps.
Original Solutions
(no solutions)
The text was updated successfully, but these errors were encountered: