Upgrade F# and dotnet

This commit is contained in:
Anthony Cicchetti 2022-04-28 18:06:37 -04:00
parent 31ede348d7
commit 91cff02d29
5 changed files with 18 additions and 5 deletions

1
.gitignore vendored
View file

@ -1,4 +1,3 @@
public/
# Node
node_modules/

View file

@ -15,9 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
package-lock.json = package-lock.json
package.json = package.json
README.md = README.md
webpack.common.js = webpack.common.js
webpack.config.js = webpack.config.js
webpack.tests.js = webpack.tests.js
justfile = justfile
EndProjectSection
EndProject
Global

7
global.json Normal file
View file

@ -0,0 +1,7 @@
{
"sdk": {
"version": "6.0.0",
"rollForward": "latestMajor",
"allowPrerelease": false
}
}

8
justfile Normal file
View file

@ -0,0 +1,8 @@
build:
pnpm run start
setup:
dotnet tool restore
npm i -g pnpm
pnpm i
dotnet femto ./src

View file

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Include="index.html" />
@ -18,5 +18,6 @@
<PackageReference Include="Fable.DateFunctions" Version="3.9.0" />
<PackageReference Include="Thoth.Json" Version="7.0.0" />
<PackageReference Include="Zanaptak.TypedCssClasses" Version="1.0.0" />
<PackageReference Update="FSharp.Core" Version="6.0.3" />
</ItemGroup>
</Project>