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
Binary file modified 1.6/Assemblies/Lib.GAB.dll
Binary file not shown.
Binary file modified 1.6/Assemblies/RimBridgeServer.Contracts.dll
Binary file not shown.
Binary file modified 1.6/Assemblies/RimBridgeServer.Core.dll
Binary file not shown.
Binary file modified 1.6/Assemblies/RimBridgeServer.Extensions.Abstractions.dll
Binary file not shown.
Binary file modified 1.6/Assemblies/RimBridgeServer.Sdk.dll
Binary file not shown.
Binary file modified 1.6/Assemblies/RimBridgeServer.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<li>1.6</li>
</supportedVersions>
<packageId>brrainz.rimbridgeserver</packageId>
<modVersion>2.1.0</modVersion>
<modVersion>2.1.1</modVersion>
<url>https://github.com/pardeike/RimBridgeServer</url>
<description>Turn a running RimWorld session into a live automation bridge.

Expand Down
2 changes: 1 addition & 1 deletion About/Manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>net.pardeike.rimworld.mod.rimbridgeserver</identifier>
<version>2.1.0</version>
<version>2.1.1</version>
<targetVersions>
<li>1.6.0</li>
</targetVersions>
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<ModName>RimBridgeServer</ModName>
<ModFileName>RimBridgeServer</ModFileName>
<Repository>https://github.com/pardeike/RimBridgeServer</Repository>
<ModVersion>2.1.0</ModVersion>
<ModVersion>2.1.1</ModVersion>
<ProjectGuid>{6A41B185-4CC6-43FD-A4D3-5D2819F4DC96}</ProjectGuid>
<LocalNuGetSource Condition="'$(LocalNuGetSource)' == ''">$(MSBuildThisFileDirectory)..\.nuget-local</LocalNuGetSource>
<EnableLocalNuGetOverride Condition="'$(EnableLocalNuGetOverride)' == ''">false</EnableLocalNuGetOverride>
<LibGabPackageVersion Condition="'$(LibGabPackageVersion)' == ''">1.0.3</LibGabPackageVersion>
<LibGabPackageVersion Condition="'$(LibGabPackageVersion)' == ''">1.0.5</LibGabPackageVersion>
<RimBridgeServerSdkPackageVersion Condition="'$(RimBridgeServerSdkPackageVersion)' == ''">$(ModVersion)</RimBridgeServerSdkPackageVersion>
</PropertyGroup>

Expand Down
Empty file added PENDING_RELEASE_NOTES.md
Empty file.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,16 @@ Example:
```bash
dotnet restore Source/RimBridgeServer.csproj \
-p:EnableLocalNuGetOverride=true \
-p:LibGabPackageVersion=1.0.3-local.1 \
-p:RimBridgeServerSdkPackageVersion=2.0.0-local.1
-p:LibGabPackageVersion=1.0.5-local.1 \
-p:RimBridgeServerSdkPackageVersion=2.1.1-local.1
```

Populate the local source by packing the sibling library into `../.nuget-local`, for example:

```bash
dotnet pack ../Lib.GAB/Lib.GAB/Lib.GAB.csproj \
-o ../.nuget-local \
-p:PackageVersion=1.0.0-local.1
-p:PackageVersion=1.0.5-local.1
```

Pack the RimBridgeServer companion SDK into that same local source with:
Expand Down