Skip to content

Commit

Permalink
update to latest tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-tihon authored and Krzysztof-Cieslak committed Mar 3, 2021
1 parent 3ad3833 commit d9dd55a
Show file tree
Hide file tree
Showing 17 changed files with 3,616 additions and 3,524 deletions.
24 changes: 24 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": 1,
"isRoot": true,
"tools": {
"paket": {
"version": "5.257.0",
"commands": [
"paket"
]
},
"fake-cli": {
"version": "5.20.3",
"commands": [
"fake"
]
},
"fable": {
"version": "3.1.5",
"commands": [
"fable"
]
}
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ release_test/bin

temp
.fake
.ionide
.paket
.vs
*.js
!webpack.config.js
Expand Down
242 changes: 0 additions & 242 deletions .paket/Paket.Restore.targets

This file was deleted.

Binary file removed .paket/paket.bootstrapper.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 Krzysztof Cieslak
Copyright (c) 2017 Lambda Factory

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ The sample for building VSCode extensions using F# and Fable.
### Requirements
* VSCode
* Node.js
* .Net Framework or mono
* `dotnet` 2.0
* `dotnet` 5.0
* Yarn

### How to build
Expand Down
16 changes: 3 additions & 13 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
@echo off
cls

.paket\paket.bootstrapper.exe
if errorlevel 1 (
exit /b %errorlevel%
)

.paket\paket.exe restore
if errorlevel 1 (
exit /b %errorlevel%
)

packages\build\FAKE\tools\FAKE.exe build.fsx %* --nocache
dotnet tool restore
dotnet paket restore
dotnet fake run build.fsx %*
Loading

0 comments on commit d9dd55a

Please sign in to comment.