Skip to content

Commit 95fe925

Browse files
Codeql workflow fixes for new slnx solution format
1 parent f39bc3b commit 95fe925

File tree

4 files changed

+38
-83
lines changed

4 files changed

+38
-83
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ jobs:
5757

5858
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5959
# If this step fails, then you should remove it and run the build manually (see below)
60-
- name: Autobuild
61-
uses: github/codeql-action/autobuild@v3
60+
61+
# - name: Autobuild
62+
# uses: github/codeql-action/autobuild@v3
6263

6364
# ℹ️ Command-line programs to run using the OS shell.
6465
# 📚 https://git.io/JvXDl
@@ -67,9 +68,8 @@ jobs:
6768
# and modify them (or add more) to build your code if your project
6869
# uses a compiled language
6970

70-
#- run: |
71-
# make bootstrap
72-
# make release
71+
- name: Manual build
72+
run: dotnet build
7373

7474
- name: Perform CodeQL Analysis
7575
uses: github/codeql-action/analyze@v3

.github/workflows/dotnet.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: .NET
33
on:
44
pull_request:
55
push:
6-
branches:
7-
- master
6+
branches: [master, v1.x-maintenance]
87

98
jobs:
109
build:

MiniExcel.sln

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

MiniExcel.slnx

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<Solution>
2+
<Folder Name="/benchmarks/">
3+
<Project Path="benchmarks\MiniExcel.Benchmarks\MiniExcel.Benchmarks.csproj" Type="Classic C#" />
4+
</Folder>
5+
<Folder Name="/Docs and setting/">
6+
<File Path=".gitattributes" />
7+
<File Path=".gitignore" />
8+
<File Path="appveyor.yml" />
9+
<File Path=".github\workflows\dotnet.yml" />
10+
<File Path="LICENSE" />
11+
<File Path="README-NuGet.md" />
12+
<File Path="README.md" />
13+
<File Path="README.zh-CN.md" />
14+
<File Path="README.zh-Hant.md" />
15+
<File Path=".github\workflows\benchmark.yml" />
16+
<File Path=".github\workflows\codeql-analysis.yml" />
17+
<File Path="docs\core_logic_diagram.drawio" />
18+
</Folder>
19+
<Folder Name="/Releases/">
20+
<File Path="docs\README.md" />
21+
<File Path="docs\README.zh-CN.md" />
22+
<File Path="docs\README.zh-Hant.md" />
23+
</Folder>
24+
<Folder Name="/src/">
25+
<Project Path="src\MiniExcel.Core\MiniExcel.Core.csproj" Type="Classic C#" />
26+
<Project Path="src\MiniExcel.Csv\MiniExcel.Csv.csproj" Type="Classic C#" />
27+
<Project Path="src\MiniExcel\MiniExcel.csproj" Type="Classic C#" />
28+
</Folder>
29+
<Folder Name="/tests/">
30+
<Project Path="tests\MiniExcelTests\MiniExcelTests.csproj" Type="Classic C#" />
31+
</Folder>
32+
</Solution>

0 commit comments

Comments
 (0)