File tree Expand file tree Collapse file tree 10 files changed +1297
-1147
lines changed Expand file tree Collapse file tree 10 files changed +1297
-1147
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : 1 ,
3
+ "isRoot" : true ,
4
+ "tools" : {
5
+ "paket" : {
6
+ "version" : " 9.0.2" ,
7
+ "commands" : [
8
+ " paket"
9
+ ],
10
+ "rollForward" : false
11
+ }
12
+ }
13
+ }
Original file line number Diff line number Diff line change @@ -12,18 +12,16 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v4
16
16
- name : Setup .NET Core
17
- uses : actions/setup-dotnet@v1
17
+ uses : actions/setup-dotnet@v4
18
18
with :
19
- dotnet-version : 3.1.301
20
- - name : Setup dotnet manifest
21
- run : dotnet new tool-manifest
22
- - name : Setup paket
23
- run : dotnet tool install Paket
19
+ dotnet-version : 9.0.300
20
+ - name : Restore tools
21
+ run : dotnet tool restore
24
22
- name : Install dependencies
25
- run : dotnet restore
23
+ run : dotnet paket restore
26
24
- name : Build
27
- run : dotnet build --configuration Release --no-restore
25
+ run : dotnet build --configuration Release
28
26
- name : Test
29
- run : dotnet test --no-restore -- verbosity normal
27
+ run : dotnet test --verbosity normal
Original file line number Diff line number Diff line change @@ -11,19 +11,21 @@ jobs:
11
11
timeout-minutes : 10
12
12
steps :
13
13
- name : Checkout code
14
- uses : actions/checkout@v1
14
+ uses : actions/checkout@v4
15
15
16
16
- name : Setup .NET Core
17
- uses : actions/setup-dotnet@v1
17
+ uses : actions/setup-dotnet@v4
18
18
with :
19
- dotnet-version : 3.1.301
19
+ dotnet-version : 9.0.300
20
20
21
- - name : Setup dotnet manifest
22
- run : dotnet new tool-manifest
23
- - name : Setup paket
24
- run : dotnet tool install Paket
25
- - name : Dotnet Pack
26
- run : dotnet pack -c release -p:PackageVersion=${GITHUB_REF##*/v}
21
+ - name : Restore tools
22
+ run : dotnet tool restore
23
+ - name : Install dependencies
24
+ run : dotnet paket restore
25
+ - name : Build
26
+ run : dotnet build --configuration Release
27
+ - name : Pack
28
+ run : dotnet pack -c Release -p:PackageVersion=${GITHUB_REF##*/v}
27
29
28
30
- name : Push Feliz.ViewEngine Nuget
29
31
run : dotnet nuget push src/bin/Release/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 23
23
<ItemGroup >
24
24
<Content Include =" *.fsproj; *.fs; *.js;" PackagePath =" fable\" />
25
25
</ItemGroup >
26
- <Import Project =" .paket\Paket.Restore.targets" />
26
+ <ItemGroup >
27
+ <ProjectReference Include =" ..\src\Feliz.ViewEngine.fsproj" />
28
+ </ItemGroup >
29
+ <Import Project =" ..\.paket\Paket.Restore.targets" />
27
30
</Project >
Original file line number Diff line number Diff line change 1
- group Main
1
+ group Bulma
2
2
3
- Fsharp .Core
3
+ FSharp .Core
4
4
Feliz.ViewEngine
Original file line number Diff line number Diff line change @@ -19,3 +19,11 @@ group Test
19
19
nuget Microsoft.NET.Test.Sdk ~> 16
20
20
nuget MSTest.TestAdapter ~> 1
21
21
nuget MSTest.TestFramework ~> 1
22
+
23
+ group Bulma
24
+ source https://www.nuget.org/api/v2
25
+ storage: none
26
+ framework: netstandard2.0
27
+
28
+ nuget FSharp.Core ~> 4.7 lowest_matching: true
29
+ nuget Feliz.ViewEngine >= 0.15
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 2
2
<Project Sdk =" Microsoft.NET.Sdk" >
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp3.1 </TargetFramework >
5
+ <TargetFramework >net9 </TargetFramework >
6
6
<GenerateProgramFile >false</GenerateProgramFile >
7
7
</PropertyGroup >
8
8
<ItemGroup >
You can’t perform that action at this time.
0 commit comments