From d1a9acf90a833ce97735c37a55b117a9ede0dfce Mon Sep 17 00:00:00 2001 From: Noah Ekse Date: Tue, 7 Jan 2025 13:41:32 +0100 Subject: [PATCH 1/3] finished --- csharp-fundamentals-class-members.Main/Core.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/csharp-fundamentals-class-members.Main/Core.cs b/csharp-fundamentals-class-members.Main/Core.cs index 855e8da..1691980 100644 --- a/csharp-fundamentals-class-members.Main/Core.cs +++ b/csharp-fundamentals-class-members.Main/Core.cs @@ -20,31 +20,31 @@ public class Core //TODO: 1. Create an integer member named age with a value of 32 - public int age = 33; + public int age = 32; //TODO: 2. Create a String member named firstName with a value of "Jane" - + public string firstName = "Jane"; //TODO: 3. Create a boolean member named isProgrammer with a value of true - + public bool isProgrammer = true; //TODO: 4. Change the value below so that the tests pass. Check the README.md file for instructions on // running and reading tests - public int firstNumber = 109; + public int firstNumber = 9182; //TODO: 5. Change the value below so that the tests pass - public string firstString = "Ruby is to Python what car is to carpet."; + public string firstString = "Java is to Javascript what car is to carpet."; //TODO: 6. Change the visibility below so that the tests pass - private bool isVisible = true; + public bool isVisible = true; } } From c3b352a18afd70b777435fbed674164753cfe08b Mon Sep 17 00:00:00 2001 From: Noah Ekse Date: Tue, 7 Jan 2025 13:47:19 +0100 Subject: [PATCH 2/3] restore --- csharp-fundamentals-class-members.Main/Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp-fundamentals-class-members.Main/Core.cs b/csharp-fundamentals-class-members.Main/Core.cs index 1691980..89d170b 100644 --- a/csharp-fundamentals-class-members.Main/Core.cs +++ b/csharp-fundamentals-class-members.Main/Core.cs @@ -24,7 +24,7 @@ public class Core - //TODO: 2. Create a String member named firstName with a value of "Jane" + //TODO: 2. Create a String member named firstName with a value of "Jane public string firstName = "Jane"; From 3b0b31eaf5d2f1052a867441fa2665a0fe2e3416 Mon Sep 17 00:00:00 2001 From: Noah Ekse Date: Tue, 7 Jan 2025 13:50:16 +0100 Subject: [PATCH 3/3] fixed .net version --- .github/workflows/standard-criteria-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/standard-criteria-tests.yml b/.github/workflows/standard-criteria-tests.yml index 54bb2f1..7a54ec3 100644 --- a/.github/workflows/standard-criteria-tests.yml +++ b/.github/workflows/standard-criteria-tests.yml @@ -14,7 +14,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: '8.0.x' + dotnet-version: '9.0.x' # 3) Restore the dependencies and tools of a project or solution. - name: Install dependencies run: dotnet restore