From 33b6bba34ff215c18cec825c49539fdaf06f1ef4 Mon Sep 17 00:00:00 2001 From: Maximilian Gobbel Date: Thu, 11 Jan 2024 17:52:24 +0100 Subject: [PATCH] moved fsharp project in correct directory --- .github/workflows/dotnet.yml | 4 ++-- fsharp/{NerdDeckFSharp => }/NerdDeckFSharp.sln | 0 fsharp/{NerdDeckFSharp => }/src/App.Tests/App.Tests.fsproj | 0 fsharp/{NerdDeckFSharp => }/src/App.Tests/Program.fs | 0 fsharp/{NerdDeckFSharp => }/src/App.Tests/UnitTest1.fs | 0 fsharp/{NerdDeckFSharp => }/src/App/App.fsproj | 0 fsharp/{NerdDeckFSharp => }/src/App/Program.fs | 0 fsharp/{NerdDeckFSharp => }/src/App/flashcards.json | 0 .../{NerdDeckFSharp => }/src/Library.Tests/FlashCardTests.fs | 0 .../src/Library.Tests/Library.Tests.fsproj | 0 fsharp/{NerdDeckFSharp => }/src/Library.Tests/Program.fs | 0 fsharp/{NerdDeckFSharp => }/src/Library/File.fs | 0 fsharp/{NerdDeckFSharp => }/src/Library/FlashCard.fs | 0 fsharp/{NerdDeckFSharp => }/src/Library/Library.fsproj | 0 14 files changed, 2 insertions(+), 2 deletions(-) rename fsharp/{NerdDeckFSharp => }/NerdDeckFSharp.sln (100%) rename fsharp/{NerdDeckFSharp => }/src/App.Tests/App.Tests.fsproj (100%) rename fsharp/{NerdDeckFSharp => }/src/App.Tests/Program.fs (100%) rename fsharp/{NerdDeckFSharp => }/src/App.Tests/UnitTest1.fs (100%) rename fsharp/{NerdDeckFSharp => }/src/App/App.fsproj (100%) rename fsharp/{NerdDeckFSharp => }/src/App/Program.fs (100%) rename fsharp/{NerdDeckFSharp => }/src/App/flashcards.json (100%) rename fsharp/{NerdDeckFSharp => }/src/Library.Tests/FlashCardTests.fs (100%) rename fsharp/{NerdDeckFSharp => }/src/Library.Tests/Library.Tests.fsproj (100%) rename fsharp/{NerdDeckFSharp => }/src/Library.Tests/Program.fs (100%) rename fsharp/{NerdDeckFSharp => }/src/Library/File.fs (100%) rename fsharp/{NerdDeckFSharp => }/src/Library/FlashCard.fs (100%) rename fsharp/{NerdDeckFSharp => }/src/Library/Library.fsproj (100%) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 3bc5130..b664d23 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest defaults: run: - working-directory: ${{ github.workspace }}/fsharp/NerdDeckFSharp + working-directory: ${{ github.workspace }}/fsharp steps: - name: Checkout uses: actions/checkout@v3 @@ -26,7 +26,7 @@ jobs: needs: build defaults: run: - working-directory: ${{ github.workspace }}/fsharp/NerdDeckFSharp + working-directory: ${{ github.workspace }}/fsharp steps: - name: Checkout uses: actions/checkout@v3 diff --git a/fsharp/NerdDeckFSharp/NerdDeckFSharp.sln b/fsharp/NerdDeckFSharp.sln similarity index 100% rename from fsharp/NerdDeckFSharp/NerdDeckFSharp.sln rename to fsharp/NerdDeckFSharp.sln diff --git a/fsharp/NerdDeckFSharp/src/App.Tests/App.Tests.fsproj b/fsharp/src/App.Tests/App.Tests.fsproj similarity index 100% rename from fsharp/NerdDeckFSharp/src/App.Tests/App.Tests.fsproj rename to fsharp/src/App.Tests/App.Tests.fsproj diff --git a/fsharp/NerdDeckFSharp/src/App.Tests/Program.fs b/fsharp/src/App.Tests/Program.fs similarity index 100% rename from fsharp/NerdDeckFSharp/src/App.Tests/Program.fs rename to fsharp/src/App.Tests/Program.fs diff --git a/fsharp/NerdDeckFSharp/src/App.Tests/UnitTest1.fs b/fsharp/src/App.Tests/UnitTest1.fs similarity index 100% rename from fsharp/NerdDeckFSharp/src/App.Tests/UnitTest1.fs rename to fsharp/src/App.Tests/UnitTest1.fs diff --git a/fsharp/NerdDeckFSharp/src/App/App.fsproj b/fsharp/src/App/App.fsproj similarity index 100% rename from fsharp/NerdDeckFSharp/src/App/App.fsproj rename to fsharp/src/App/App.fsproj diff --git a/fsharp/NerdDeckFSharp/src/App/Program.fs b/fsharp/src/App/Program.fs similarity index 100% rename from fsharp/NerdDeckFSharp/src/App/Program.fs rename to fsharp/src/App/Program.fs diff --git a/fsharp/NerdDeckFSharp/src/App/flashcards.json b/fsharp/src/App/flashcards.json similarity index 100% rename from fsharp/NerdDeckFSharp/src/App/flashcards.json rename to fsharp/src/App/flashcards.json diff --git a/fsharp/NerdDeckFSharp/src/Library.Tests/FlashCardTests.fs b/fsharp/src/Library.Tests/FlashCardTests.fs similarity index 100% rename from fsharp/NerdDeckFSharp/src/Library.Tests/FlashCardTests.fs rename to fsharp/src/Library.Tests/FlashCardTests.fs diff --git a/fsharp/NerdDeckFSharp/src/Library.Tests/Library.Tests.fsproj b/fsharp/src/Library.Tests/Library.Tests.fsproj similarity index 100% rename from fsharp/NerdDeckFSharp/src/Library.Tests/Library.Tests.fsproj rename to fsharp/src/Library.Tests/Library.Tests.fsproj diff --git a/fsharp/NerdDeckFSharp/src/Library.Tests/Program.fs b/fsharp/src/Library.Tests/Program.fs similarity index 100% rename from fsharp/NerdDeckFSharp/src/Library.Tests/Program.fs rename to fsharp/src/Library.Tests/Program.fs diff --git a/fsharp/NerdDeckFSharp/src/Library/File.fs b/fsharp/src/Library/File.fs similarity index 100% rename from fsharp/NerdDeckFSharp/src/Library/File.fs rename to fsharp/src/Library/File.fs diff --git a/fsharp/NerdDeckFSharp/src/Library/FlashCard.fs b/fsharp/src/Library/FlashCard.fs similarity index 100% rename from fsharp/NerdDeckFSharp/src/Library/FlashCard.fs rename to fsharp/src/Library/FlashCard.fs diff --git a/fsharp/NerdDeckFSharp/src/Library/Library.fsproj b/fsharp/src/Library/Library.fsproj similarity index 100% rename from fsharp/NerdDeckFSharp/src/Library/Library.fsproj rename to fsharp/src/Library/Library.fsproj