Skip to content

Commit f9db176

Browse files
committed
move to github wip
1 parent 7440e5d commit f9db176

13 files changed

Lines changed: 46 additions & 174 deletions

File tree

.editorconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ root = true
33
[*]
44
charset = utf-8
55
end_of_line = lf
6-
tab_width = 4
6+
ij_visual_guides = 180
77
indent_size = 4
88
indent_style = space
9-
max_line_length = 160
109
insert_final_newline = true
10+
max_line_length = 180
11+
tab_width = 4
1112
trim_trailing_whitespace = true
1213

13-
[*.{astro,cshtml,csproj,css,js,json,scss,ts,yaml}]
14+
[*.{csproj,json,yaml}]
1415
tab_width = 2
1516
indent_size = 2
16-

.forgejo/issue_template/bug.yaml

Lines changed: 0 additions & 57 deletions
This file was deleted.

.forgejo/issue_template/config.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.forgejo/issue_template/feature.yaml

Lines changed: 0 additions & 49 deletions
This file was deleted.

.github/workflows/build.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
workflow_dispatch: {}
6+
7+
env:
8+
DOTNET_VERSION: '10.0.x'
9+
10+
jobs:
11+
build:
12+
name: Build
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
project:
17+
- Common.Build
18+
- Common.Build.Generator
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v6
22+
- name: Setup .NET SDK 10
23+
uses: actions/setup-dotnet@v5
24+
with:
25+
dotnet-version: "$DOTNET_VERSION"
26+
- name: Build
27+
run: bash build.sh --target Build --general-project ${{ matrix.project }}
28+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
bin/
33
obj/
44
out/
5+
56
*.sln.DotSettings.user

.idea/.idea.Common.Build/.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.noai

Whitespace-only changes.

Common.Build.Cake/Common.Build.Cake.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Cake.Frosting" Version="5.1.0"/>
12+
<PackageReference Include="Cake.Frosting" Version="6.1.0" />
1313
<PackageReference Include="Cake.Json" Version="7.0.1"/>
14-
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2">
14+
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4">
1515
<ExcludeAssets>runtime</ExcludeAssets>
1616
</PackageReference>
1717
</ItemGroup>
@@ -30,7 +30,6 @@
3030
<None Include="../build.sh"/>
3131
<None Include="../buildConfig.json"/>
3232
<None Include="../CHANGELOG.md"/>
33-
<None Include="../GITMOJI.md"/>
3433
<None Include="../README.md"/>
3534
</ItemGroup>
3635

Common.Build.Generator/Common.Build.Generator.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,16 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2">
21+
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4">
2222
<PrivateAssets>all</PrivateAssets>
2323
<ExcludeAssets>runtime</ExcludeAssets>
24+
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2425
</PackageReference>
25-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0">
26+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0">
2627
<PrivateAssets>all</PrivateAssets>
2728
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2829
</PackageReference>
29-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0"/>
30+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" />
3031
</ItemGroup>
3132

3233
<ItemGroup>

0 commit comments

Comments
 (0)