-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert to PackageReferences instead of paket #1285
base: main
Are you sure you want to change the base?
Conversation
"name": "F# (.NET 7.0)", | ||
"dockerFile": "Dockerfile", | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"FSharp.useSdkScripts": true, | ||
"FSharp.workspacePath": "FsAutoComplete.sln" | ||
}, | ||
"extensions": [ | ||
"Ionide.Ionide-fsharp", | ||
"ms-vscode.csharp" | ||
] | ||
} | ||
}, | ||
"onCreateCommand": "dotnet restore" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed this because it referenced paket, but also because the json schema linting warnings said that the old format was incorrect.
"[msbuild]": { | ||
"editor.formatOnSave": false | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my extensions have been formatting project files - no more!
<!-- <packageSource key="dotnet8"> | ||
<package pattern="FSharp.Core" /> | ||
<package pattern="FSharp.Compiler.Service" /> | ||
</packageSource> --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on nightly, we can just uncomment this mapping and update/outdated/etc commands will just work for these two packages. we can run dotnet list package --outdated
and see what the updateable versions are
@@ -15,9 +15,9 @@ open Microsoft.FSharp.Core.LanguagePrimitives | |||
/// | |||
/// Note: As constant, because F# doesn't have `#define` | |||
[<Literal>] | |||
let private DEBUG = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was building with a 9 preview SDK and the inlining/visibility changes that Kevin made flagged a bunch of failed inlining in this file.
No description provided.