diff --git a/.github/workflows/publish-onewarestudio-web.yml b/.github/workflows/publish-onewarestudio-web.yml index 0b1df7d5..a15cdfc4 100644 --- a/.github/workflows/publish-onewarestudio-web.yml +++ b/.github/workflows/publish-onewarestudio-web.yml @@ -17,11 +17,11 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + dotnet-version: 7.0.x - name: Workload Restore run: dotnet workload restore - name: Publish - run: dotnet build ./demo/OneWare.Demo.Browser/OneWare.Demo.Browser.csproj -c Release -o ./out + run: dotnet publish ./demo/OneWare.Demo.Browser/OneWare.Demo.Browser.csproj -c Release -o ./out - name: 📂 Sync files uses: SamKirkland/FTP-Deploy-Action@v4.3.4 with: diff --git a/.github/workflows/publish-shared.yml b/.github/workflows/publish-shared.yml index 5f3f8d53..6d896cc0 100644 --- a/.github/workflows/publish-shared.yml +++ b/.github/workflows/publish-shared.yml @@ -28,7 +28,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + dotnet-version: 7.0.x # Create the NuGet package in the folder from the environment variable NuGetDirectory - run: dotnet pack ./src/OneWare.Shared/OneWare.Shared.csproj --configuration Release --output ${{ env.NuGetDirectory }} @@ -49,7 +49,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + dotnet-version: 7.0.x # Download the NuGet package created in the previous job - uses: actions/download-artifact@v3 @@ -82,7 +82,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + dotnet-version: 7.0.x # Publish all NuGet packages to NuGet.org # Use --skip-duplicate to prevent errors if a package with the same version already exists. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ec82061..9d5bad12 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + dotnet-version: 7.0.x - name: Workload Restore run: dotnet workload restore - name: Restore dependencies diff --git a/build/props/OneWare.Module.props b/build/props/OneWare.Module.props index 355e1ace..52154888 100644 --- a/build/props/OneWare.Module.props +++ b/build/props/OneWare.Module.props @@ -1,7 +1,7 @@  - net8.0 + net7.0 enable enable latest diff --git a/demo/OneWare.Demo.Browser/OneWare.Demo.Browser.csproj b/demo/OneWare.Demo.Browser/OneWare.Demo.Browser.csproj index 41bcde5f..17fd3852 100644 --- a/demo/OneWare.Demo.Browser/OneWare.Demo.Browser.csproj +++ b/demo/OneWare.Demo.Browser/OneWare.Demo.Browser.csproj @@ -5,7 +5,7 @@ - net8.0 + net7.0 browser-wasm AppBundle\main.js Exe diff --git a/demo/OneWare.Demo.Desktop/OneWare.Demo.Desktop.csproj b/demo/OneWare.Demo.Desktop/OneWare.Demo.Desktop.csproj index f1551d9b..f197295e 100644 --- a/demo/OneWare.Demo.Desktop/OneWare.Demo.Desktop.csproj +++ b/demo/OneWare.Demo.Desktop/OneWare.Demo.Desktop.csproj @@ -7,7 +7,7 @@ app.manifest WinExe Exe - net8.0 + net7.0 ..\OneWare.Demo\Assets\icon.ico latest enable diff --git a/tests/OneWare.Vcd.Parser.UnitTests/OneWare.Vcd.Parser.UnitTests.csproj b/tests/OneWare.Vcd.Parser.UnitTests/OneWare.Vcd.Parser.UnitTests.csproj index 59c3af9a..af91dd99 100644 --- a/tests/OneWare.Vcd.Parser.UnitTests/OneWare.Vcd.Parser.UnitTests.csproj +++ b/tests/OneWare.Vcd.Parser.UnitTests/OneWare.Vcd.Parser.UnitTests.csproj @@ -3,7 +3,7 @@ - net8.0 + net7.0 Library False True