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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
- name: Verify formatting
shell: bash
run: |
dotnet format ./ResoniteSyncMethodBatcher.sln whitespace --verify-no-changes --no-restore
dotnet format ./ResoniteSyncMethodBatcher.sln style --verify-no-changes --no-restore --severity info
dotnet format ./ResoniteSyncMethodBatcher.sln analyzers --verify-no-changes --no-restore --severity info
dotnet format whitespace ./ResoniteSyncMethodBatcher.sln --verify-no-changes --no-restore
dotnet format style ./ResoniteSyncMethodBatcher.sln --verify-no-changes --no-restore --severity info
dotnet format analyzers ./ResoniteSyncMethodBatcher.sln --verify-no-changes --no-restore --severity info

- name: Build
run: dotnet build ./ResoniteSyncMethodBatcher.sln -c Release --no-restore
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
</ItemGroup>

<ItemGroup Condition="'$(IsTestProject)'=='true' and '$(FrooxEnginePresent)'!='true'">
<ContentWithTargetPath Include="$(PkgResonite_GameLibs)\ref\net9.0\*.dll">
<ContentWithTargetPath Include="$(PkgResonite_GameLibs)\ref\$(TargetFramework)\*.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>%(Filename)%(Extension)</TargetPath>
</ContentWithTargetPath>
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ItemGroup>
<PackageVersion Include="MinVer" Version="7.0.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageVersion Include="Resonite.GameLibs" Version="2026.4.16.1327" />
<PackageVersion Include="Resonite.GameLibs" Version="2026.8.27.1094" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Open **DevCreateNew > Editor > SyncMethod Batcher (Mod)**, select a process root

## Build

The project targets .NET 10. CI compiles against a pinned current `Resonite.GameLibs` package so tagged builds do not depend on a Steam account.

```powershell
dotnet build -c Release
```
Expand Down
6 changes: 3 additions & 3 deletions src/SyncMethodBatcher/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"Resonite.GameLibs": {
"type": "Direct",
"requested": "[2026.4.16.1327, )",
"resolved": "2026.4.16.1327",
"contentHash": "E5ziTxgOKp3bu6tkqtUhKGTCQCTM8dNMCVn1aMmIHM7YcxYw3ls5fBhHpovBcCt5tEuDPrDexbXk3Bupn18+rQ=="
"requested": "[2026.8.27.1094, )",
"resolved": "2026.8.27.1094",
"contentHash": "ArwqFi/iLI7TsBBytfTRnYcAq7H0RFAwnCnEbJFmh33kVE14p8XGD8MwW3V7yFl2C9+Mu/5L9b7mYBUxtmRR3A=="
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions tests/SyncMethodBatcher.Tests/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
},
"Resonite.GameLibs": {
"type": "Direct",
"requested": "[2026.4.16.1327, )",
"resolved": "2026.4.16.1327",
"contentHash": "E5ziTxgOKp3bu6tkqtUhKGTCQCTM8dNMCVn1aMmIHM7YcxYw3ls5fBhHpovBcCt5tEuDPrDexbXk3Bupn18+rQ=="
"requested": "[2026.8.27.1094, )",
"resolved": "2026.8.27.1094",
"contentHash": "ArwqFi/iLI7TsBBytfTRnYcAq7H0RFAwnCnEbJFmh33kVE14p8XGD8MwW3V7yFl2C9+Mu/5L9b7mYBUxtmRR3A=="
},
"xunit": {
"type": "Direct",
Expand Down Expand Up @@ -108,7 +108,7 @@
"syncmethodbatcher": {
"type": "Project",
"dependencies": {
"Resonite.GameLibs": "[2026.4.16.1327, )"
"Resonite.GameLibs": "[2026.8.27.1094, )"
}
}
}
Expand Down