Skip to content

Commit

Permalink
Add devcontainer and update SDK (#12)
Browse files Browse the repository at this point in the history
* Ignore AWS file

* Let dotnet restore do its thing

* WIP on devcontainer json file

* No leading 0-

* Customizations

* More specific image

* Update sdk
  • Loading branch information
UnstoppableMango authored Jan 18, 2024
1 parent 9747674 commit c9af08f
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 8 deletions.
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "CliWrap.FSharp",
"image": "mcr.microsoft.com/devcontainers/dotnet:1.1.2-8.0-bookworm-slim",
"containerUser": "vscode",
"customizations": {
"vscode": {
"extensions": [
"Ionide.Ionide-fsharp",
"EditorConfig.EditorConfig"
]
}
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
.idea/**/contentModel.xml
.idea/**/codeStyleConfig.xml
.idea/**/discord.xml
.idea/**/aws.xml

# Artifacts
bin/
Expand Down
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"ionide.ionide-fsharp",
"editorconfig.editorconfig"
]
}
1 change: 1 addition & 0 deletions CliWrap.FSharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "config", "config", "{BC5059
.gitignore = .gitignore
.githooks\pre-commit = .githooks\pre-commit
CliWrap.FSharp.sln.DotSettings = CliWrap.FSharp.sln.DotSettings
.devcontainer\devcontainer.json = .devcontainer\devcontainer.json
EndProjectSection
EndProject
Global
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "8.0.101",
"rollForward": "latestMinor"
}
}
8 changes: 4 additions & 4 deletions src/CliWrap.FSharp.Tests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
},
"FSharp.Core": {
"type": "Direct",
"requested": "[8.0.100, )",
"resolved": "8.0.100",
"contentHash": "ZOVZ/o+jI3ormTZOa28Wh0tSRoyle1f7lKFcUN61sPiXI7eDZu8eSveFybgTeyIEyW0ujjp31cp7GOglDgsNEg=="
"requested": "[8.0.101, )",
"resolved": "8.0.101",
"contentHash": "sOLz3O4BOxnTKfd5OChdRmDUy4Id0GfoEClRG4nzIod8LY1LJZcNyygKAV0A78XOLh8yvhA5hsDYKZXGCR9blw=="
},
"Microsoft.NET.Test.Sdk": {
"type": "Direct",
Expand Down Expand Up @@ -1047,7 +1047,7 @@
"type": "Project",
"dependencies": {
"CliWrap": "[3.6.4, )",
"FSharp.Core": "[8.0.100, )"
"FSharp.Core": "[8.0.101, )"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/CliWrap.FSharp/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"FSharp.Core": {
"type": "Direct",
"requested": "[8.0.100, )",
"resolved": "8.0.100",
"contentHash": "ZOVZ/o+jI3ormTZOa28Wh0tSRoyle1f7lKFcUN61sPiXI7eDZu8eSveFybgTeyIEyW0ujjp31cp7GOglDgsNEg=="
"requested": "[8.0.101, )",
"resolved": "8.0.101",
"contentHash": "sOLz3O4BOxnTKfd5OChdRmDUy4Id0GfoEClRG4nzIod8LY1LJZcNyygKAV0A78XOLh8yvhA5hsDYKZXGCR9blw=="
},
"Microsoft.SourceLink.GitHub": {
"type": "Direct",
Expand Down

0 comments on commit c9af08f

Please sign in to comment.