diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5b908a..09636ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,9 @@ jobs: run: | # Hardcode game version used for build # $vs_version = $(Get-Content .\resources\modinfo.json | jq -r .dependencies.game) - $vs_version = '1.20.12' + $vs_version = '1.21.0-rc.4' $filename = "vs_server_linux-x64_${vs_version}.tar.gz" - $folder = if ($vs_version -like "*-rc*") { "unstable" } else { "stable" } + $folder = if ($vs_version -like "*-rc*") { "unstable" } elseif ($vs_version -like "*-pre*") { "pre" } else { "stable" } $uri = "https://cdn.vintagestory.at/gamefiles/${folder}/${filename}" Invoke-WebRequest -Uri $uri -Out $filename $vsdir = $(mkdir VintageStory) diff --git a/ProspectTogether.csproj b/ProspectTogether.csproj index d2fc64e..b2cad44 100644 --- a/ProspectTogether.csproj +++ b/ProspectTogether.csproj @@ -1,6 +1,6 @@  - net7 + net8 2.0.0 false bin\$(Configuration)\Mods\prospecttogether diff --git a/resources/modinfo.json b/resources/modinfo.json index 5ab8458..2d39ca7 100644 --- a/resources/modinfo.json +++ b/resources/modinfo.json @@ -10,6 +10,6 @@ ], "side": "Universal", "description": "Stores and displays prospecting data on the map and allows sharing data between players. Based on ProspectoInfo by P3t3rix.", - "version": "2.0.7", + "version": "2.1.0-pre.1", "requiredOnServer": false } \ No newline at end of file