Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"paket": {
"version": "9.0.2",
"version": "10.3.1",
"commands": [
"paket"
],
Expand All @@ -17,7 +17,7 @@
"rollForward": false
},
"fable": {
"version": "4.24.0",
"version": "4.29.0",
"commands": [
"fable"
],
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup .NET 9
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.x'
dotnet-version: '10.x'

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -35,6 +35,9 @@ jobs:
- name: Install .NET Tools
run: dotnet tool restore

- name: Paket restore
run: dotnet paket restore

- name: Build solution
run: dotnet build Shopfoo.sln --configuration Release

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:
# Checkout the latest release tag if force_deploy is true, otherwise checkout main (which was updated by semantic-release)
ref: ${{ github.event.inputs.force_deploy && steps.get_latest_release.outputs.tag_name || 'main' }}

- name: Setup .NET 9
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.x'
dotnet-version: '10.x'

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -103,6 +103,9 @@ jobs:
- name: Install .NET Tools
run: dotnet tool restore

- name: Paket restore
run: dotnet paket restore

- name: Build Artifacts
run: dotnet run Publish

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.farmer/
.idea/
.ionide/
.paket/
.vs/
obj/
bin/
Expand All @@ -25,3 +26,4 @@ CLAUDE.md

# Symbolic link pointing to /src/Shopfoo.Client/index.html
/src/Shopfoo.Server/public/index.html
/.serena
565 changes: 0 additions & 565 deletions .paket/Paket.Restore.targets

This file was deleted.

2 changes: 1 addition & 1 deletion Build.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="paket.references" />
Expand Down
5 changes: 5 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<NoWarn>$(NoWarn);NU1510</NoWarn>
</PropertyGroup>
</Project>
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ Hence its name, ❝ *Safe Clean Architecture*. ❞
Run the relevant command(s) in a console at the root of the solution:

```powershell
dotnet tool restore
dotnet paket restore

# Both Client and Server
dotnet run

Expand Down
9 changes: 6 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"sdk": {
"version": "9.0.200",
"rollForward": "latestMinor"
"version": "10.0.100",
"rollForward": "latestFeature"
},
"test": {
"runner": "Microsoft.Testing.Platform"
}
}
}
4 changes: 2 additions & 2 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source https://api.nuget.org/v3/index.json
framework: net9.0
framework: net10.0
storage: none

nuget Fable.React
Expand All @@ -22,7 +22,7 @@ nuget Unquote

group Build
source https://api.nuget.org/v3/index.json
framework: net9.0
framework: net10.0
storage: none

nuget Fake.Core.Target
Expand Down
Loading
Loading