From bb27adfdfa07c4a4b20bd82bdd495ef49edbdd21 Mon Sep 17 00:00:00 2001 From: Don Cross Date: Sun, 18 Jun 2023 21:04:33 -0400 Subject: [PATCH] Update C# demo/test projects to dotnet core 7. --- .github/workflows/astronomy-engine-tests.yml | 2 +- demo/csharp/camera/camera.csproj | 2 +- demo/csharp/culminate/culminate.csproj | 2 +- demo/csharp/demo_helper/demo_helper.csproj | 2 +- demo/csharp/gravity/gravity.csproj | 2 +- demo/csharp/horizon/horizon.csproj | 2 +- demo/csharp/lunar_eclipse/lunar_eclipse.csproj | 2 +- demo/csharp/moonphase/moonphase.csproj | 2 +- demo/csharp/positions/positions.csproj | 2 +- demo/csharp/riseset/riseset.csproj | 2 +- demo/csharp/seasons/seasons.csproj | 2 +- demo/csharp/solar_time/solar_time.csproj | 6 +++--- demo/csharp/triangulate/triangulate.csproj | 2 +- generate/csdown/csdown/csdown.csproj | 2 +- generate/dotnet/csharp_test/csharp_test.csproj | 2 +- 15 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/astronomy-engine-tests.yml b/.github/workflows/astronomy-engine-tests.yml index dff48d60..02e69172 100644 --- a/.github/workflows/astronomy-engine-tests.yml +++ b/.github/workflows/astronomy-engine-tests.yml @@ -14,7 +14,7 @@ jobs: - name: Init dotnet core uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 7.0.x - name: Init Python 3.7 uses: actions/setup-python@v4 with: diff --git a/demo/csharp/camera/camera.csproj b/demo/csharp/camera/camera.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/camera/camera.csproj +++ b/demo/csharp/camera/camera.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/culminate/culminate.csproj b/demo/csharp/culminate/culminate.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/culminate/culminate.csproj +++ b/demo/csharp/culminate/culminate.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/demo_helper/demo_helper.csproj b/demo/csharp/demo_helper/demo_helper.csproj index 68faaabd..e3a6794f 100644 --- a/demo/csharp/demo_helper/demo_helper.csproj +++ b/demo/csharp/demo_helper/demo_helper.csproj @@ -5,7 +5,7 @@ - net6.0 + net7.0 true diff --git a/demo/csharp/gravity/gravity.csproj b/demo/csharp/gravity/gravity.csproj index 38db6930..cbd850ac 100644 --- a/demo/csharp/gravity/gravity.csproj +++ b/demo/csharp/gravity/gravity.csproj @@ -6,7 +6,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/horizon/horizon.csproj b/demo/csharp/horizon/horizon.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/horizon/horizon.csproj +++ b/demo/csharp/horizon/horizon.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/lunar_eclipse/lunar_eclipse.csproj b/demo/csharp/lunar_eclipse/lunar_eclipse.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/lunar_eclipse/lunar_eclipse.csproj +++ b/demo/csharp/lunar_eclipse/lunar_eclipse.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/moonphase/moonphase.csproj b/demo/csharp/moonphase/moonphase.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/moonphase/moonphase.csproj +++ b/demo/csharp/moonphase/moonphase.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/positions/positions.csproj b/demo/csharp/positions/positions.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/positions/positions.csproj +++ b/demo/csharp/positions/positions.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/riseset/riseset.csproj b/demo/csharp/riseset/riseset.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/riseset/riseset.csproj +++ b/demo/csharp/riseset/riseset.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/seasons/seasons.csproj b/demo/csharp/seasons/seasons.csproj index c9f9e0df..afd4858b 100644 --- a/demo/csharp/seasons/seasons.csproj +++ b/demo/csharp/seasons/seasons.csproj @@ -7,7 +7,7 @@ Exe - net6.0 + net7.0 true diff --git a/demo/csharp/solar_time/solar_time.csproj b/demo/csharp/solar_time/solar_time.csproj index a74320b6..2acb8b14 100644 --- a/demo/csharp/solar_time/solar_time.csproj +++ b/demo/csharp/solar_time/solar_time.csproj @@ -1,12 +1,12 @@ - - + + Exe - net6.0 + net7.0 enable enable diff --git a/demo/csharp/triangulate/triangulate.csproj b/demo/csharp/triangulate/triangulate.csproj index 38db6930..cbd850ac 100644 --- a/demo/csharp/triangulate/triangulate.csproj +++ b/demo/csharp/triangulate/triangulate.csproj @@ -6,7 +6,7 @@ Exe - net6.0 + net7.0 true diff --git a/generate/csdown/csdown/csdown.csproj b/generate/csdown/csdown/csdown.csproj index dc0e4b7c..db94260a 100644 --- a/generate/csdown/csdown/csdown.csproj +++ b/generate/csdown/csdown/csdown.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net7.0 diff --git a/generate/dotnet/csharp_test/csharp_test.csproj b/generate/dotnet/csharp_test/csharp_test.csproj index 42503f52..87bdb0f6 100644 --- a/generate/dotnet/csharp_test/csharp_test.csproj +++ b/generate/dotnet/csharp_test/csharp_test.csproj @@ -7,7 +7,7 @@ Exe true - net6.0 + net7.0