Skip to content

Commit 28ff9e7

Browse files
committed
Update Statiq to beta.60 and update theme
1 parent b48b15c commit 28ff9e7

File tree

7 files changed

+36
-12
lines changed

7 files changed

+36
-12
lines changed

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,8 @@ indent_size = 2
1515
end_of_line = lf
1616
indent_style = space
1717
indent_size = 2
18+
19+
[*.{cshtml}]
20+
indent_style = space
21+
indent_size = 4
22+
insert_final_newline = false

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/setup-dotnet@v3
2525
with:
26-
dotnet-version: '6.0.101'
26+
dotnet-version: '9.x'
2727
- uses: actions/checkout@main
2828
with:
2929
submodules: recursive

.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"razor.format.enable": false,
3+
"editor.formatOnSave": false,
4+
"files.exclude": {
5+
"bin/": true,
6+
"cache/": true,
7+
"obj/": true,
8+
"output/": true,
9+
"temp/": true,
10+
"**/.git": true,
11+
"**/.DS_Store": true,
12+
"**/Thumbs.db": true
13+
}
14+
}

NullforceBlog.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Statiq.Web" Version="1.0.0-beta.54" />
12-
</ItemGroup>
13-
14-
<ItemGroup>
15-
<PackageReference Update="Microsoft.Build" Version="17.3.2" />
11+
<PackageReference Include="Statiq.Web" Version="1.0.0-beta.60" />
1612
</ItemGroup>
1713

1814
</Project>

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository at `nullforce/nullforce.github.io`.
88

99
## Made With
1010

11-
- .NET 6.0
11+
- .NET 9.0
1212
- [Statiq](https://www.statiq.dev/)
1313
- [CleanBlog Theme](https://github.com/statiqdev/CleanBlog)
1414

@@ -27,3 +27,12 @@ Locally, a deployment can be done by running:
2727
```powershell
2828
dotnet run -- deploy
2929
```
30+
31+
### Cloning
32+
33+
Clone the repository as usual, then fetch the submodules with:
34+
35+
```powershell
36+
git submodule init
37+
git submodule update
38+
```

settings.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
SiteTitle: nullforce
2-
Copyright: Copyright © 2022 nullforce. All rights reserved.
1+
SiteTitle: Hi! I'm nullforce
2+
Copyright: Copyright © 2022-2024 nullforce. All rights reserved.
33

44
GenerateSearchIndex: true
55
LinksUseHttps: true
66
Image: ./images/site-image.png
77

88
GitHubOwner: nullforce
99
GitHubName: nullforce.github.io
10-
GitHubToken: "=> Config.FromSetting<string>(\"GITHUB_TOKEN\")"
10+
GitHubToken: '=> Config.FromSetting<string>("GITHUB_TOKEN")'

0 commit comments

Comments
 (0)