Upgrade F# and dotnet
This commit is contained in:
parent
31ede348d7
commit
91cff02d29
5 changed files with 18 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
|||
public/
|
||||
|
||||
# Node
|
||||
node_modules/
|
||||
|
|
4
App.sln
4
App.sln
|
@ -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
7
global.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"sdk": {
|
||||
"version": "6.0.0",
|
||||
"rollForward": "latestMajor",
|
||||
"allowPrerelease": false
|
||||
}
|
||||
}
|
8
justfile
Normal file
8
justfile
Normal file
|
@ -0,0 +1,8 @@
|
|||
build:
|
||||
pnpm run start
|
||||
|
||||
setup:
|
||||
dotnet tool restore
|
||||
npm i -g pnpm
|
||||
pnpm i
|
||||
dotnet femto ./src
|
|
@ -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>
|
Loading…
Add table
Reference in a new issue