-
Notifications
You must be signed in to change notification settings - Fork 156
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
Open
baronfel
wants to merge
8
commits into
ionide:main
Choose a base branch
from
baronfel:packagereference
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
c29e94b
first pass of conversions
baronfel e34513d
get repo building end-to-end
baronfel d9566fe
don't need to manually bump FCS anymore
baronfel 491d065
remove paket files
baronfel 50607c4
add lockfiles
baronfel 61f57c0
remove lockfiles
baronfel c7039f8
add missing logger
baronfel eec38d4
add missing analyzers and versioning
baronfel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
get repo building end-to-end
- Loading branch information
commit e34513dd122232705197a7eaa9a9dfdef1b18d04
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,24 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"paket": { | ||
"version": "8.0.3", | ||
"commands": [ | ||
"paket" | ||
] | ||
}, | ||
"dotnet-reportgenerator-globaltool": { | ||
"version": "5.0.2", | ||
"commands": [ | ||
"reportgenerator" | ||
] | ||
}, | ||
"fantomas": { | ||
"version": "6.3.1", | ||
"commands": [ | ||
"fantomas" | ||
] | ||
}, | ||
"fsharp-analyzers": { | ||
"version": "0.25.0", | ||
"commands": [ | ||
"fsharp-analyzers" | ||
] | ||
} | ||
} | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"dotnet-reportgenerator-globaltool": { | ||
"version": "5.0.2", | ||
"commands": [ | ||
"reportgenerator" | ||
] | ||
}, | ||
"fantomas": { | ||
"version": "6.3.1", | ||
"commands": [ | ||
"fantomas" | ||
] | ||
}, | ||
"fsharp-analyzers": { | ||
"version": "0.25.0", | ||
"commands": [ | ||
"fsharp-analyzers" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ | ||
"name": "F# (.NET 7.0)", | ||
"dockerFile": "Dockerfile", | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"FSharp.useSdkScripts":true, | ||
"FSharp.workspacePath": "FsAutoComplete.sln" | ||
}, | ||
"onCreateCommand": "dotnet tool restore && dotnet restore", | ||
"extensions": [ | ||
"Ionide.Ionide-fsharp", | ||
"Ionide.Ionide-Paket", | ||
"ms-vscode.csharp" | ||
] | ||
} | ||
"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" | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,4 +46,4 @@ test/FsAutoComplete.Tests.Lsp/TestResults/ | |
.tool-versions | ||
BenchmarkDotNet.Artifacts/ | ||
|
||
*.sarif | ||
*.sarif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.