Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup Build Dependencies
run: |
# Hardcode game version used for build
# $vs_version = $(Get-Content .\resources\modinfo.json | jq -r .dependencies.game)
$vs_version = '1.21.5'
$vs_version = '1.22.0-rc.4'
$filename = "vs_server_linux-x64_${vs_version}.tar.gz"
$folder = if ($vs_version -like "*-rc*") { "unstable" } elseif ($vs_version -like "*-pre*") { "pre" } else { "stable" }
$uri = "https://cdn.vintagestory.at/gamefiles/${folder}/${filename}"
Expand All @@ -31,7 +31,7 @@ jobs:
shell: pwsh

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3

- name: Restore Mod Dependencies
run: msbuild /t:Restore /p:Configuration=Release
Expand All @@ -49,7 +49,7 @@ jobs:
shell: pwsh

- name: Upload Mod Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./bin/Release/Mods/prospecttogether
Expand Down
2 changes: 1 addition & 1 deletion ProspectTogether.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<PackageVersion>2.0.0</PackageVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin\$(Configuration)\Mods\prospecttogether</OutputPath>
Expand Down
2 changes: 1 addition & 1 deletion resources/modinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.2",
"version": "2.2.0",
"requiredOnServer": false
}