Skip to content

Commit 0cac2d6

Browse files
committed
last
1 parent f215a17 commit 0cac2d6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-release.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ jobs:
4141
4242
- name: Build C# project
4343
run: |
44-
dotnet build assignment_4/csharp -o assignment_4/output_csharp
44+
dotnet new console -o assignment_4/csharp_temp --force --framework net8.0
45+
cp assignment_4/csharp/*.cs assignment_4/csharp_temp/
46+
rm assignment_4/csharp_temp/Program.cs
47+
dotnet build assignment_4/csharp_temp -o assignment_4/output_csharp
48+
4549
4650
- name: Build Kotlin project
4751
run: |

0 commit comments

Comments
 (0)