We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f215a17 commit 0cac2d6Copy full SHA for 0cac2d6
.github/workflows/build-release.yaml
@@ -41,7 +41,11 @@ jobs:
41
42
- name: Build C# project
43
run: |
44
- dotnet build assignment_4/csharp -o assignment_4/output_csharp
+ 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
+
49
50
- name: Build Kotlin project
51
0 commit comments