Skip to content

Commit 5544d1d

Browse files
committed
vs 1.22
1 parent ada338f commit 5544d1d

22 files changed

Lines changed: 33 additions & 516 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
## 0.7.0
2+
**Features**
3+
- Vintage Story 1.22 support
4+
- Remove custom multiblock obsoleted by 1.22 updates
5+
26
**Other**
3-
- Upgrade `Common.Build` to `0.7.0`
7+
- Upgrade `Common.Build` to `0.7.2`
48

59
## 0.6.1
610
**Other**

Common.Mod.Cake/Common.Mod.Cake.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<!-- NuGet References -->
1212
<ItemGroup>
13-
<PackageReference Include="Common.Build" Version="0.7.0" />
14-
<PackageReference Include="Common.Build.Generator" Version="0.6.0"/>
13+
<PackageReference Include="Common.Build" Version="0.7.2" />
14+
<PackageReference Include="Common.Build.Generator" Version="0.7.2" />
1515
</ItemGroup>
1616

1717
<!-- Additional Files -->

Common.Mod.Common/Common.Mod.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<DefineConstants>JETBRAINS_ANNOTATIONS</DefineConstants>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<TargetFramework>net8.0</TargetFramework>
8+
<TargetFramework>net10.0</TargetFramework>
99
</PropertyGroup>
1010

1111
<PropertyGroup>

Common.Mod.Example/BlockBehaviors/TestMultiblockBlockBehavior.cs

Lines changed: 0 additions & 114 deletions
This file was deleted.

Common.Mod.Example/Common.Mod.Example.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<ModId>example</ModId>
88
<Nullable>enable</Nullable>
99
<OutputPath>bin/$(Configuration)/example</OutputPath>
10-
<TargetFramework>net8.0</TargetFramework>
10+
<TargetFramework>net10.0</TargetFramework>
1111
</PropertyGroup>
1212

1313
<!-- Vendor References -->

Common.Mod.Example/ExampleSystem.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Common.Mod.Common.Config;
2-
using Common.Mod.Example.BlockBehaviors;
32
using Common.Mod.Example.Commands;
43
using DryIoc;
54
using JetBrains.Annotations;
@@ -35,10 +34,4 @@ protected override void RegisterConfigs(IConfigSystem configSystem)
3534
configSystem.Register<ExampleServerConfig>();
3635
configSystem.Register<ExampleClientConfig>();
3736
}
38-
39-
protected override void RegisterClasses(ICoreAPI api)
40-
{
41-
base.RegisterClasses(api);
42-
RegisterBlockBehaviorClass<TestMultiblockBlockBehavior>(api, TestMultiblockBlockBehavior.RegistryId);
43-
}
4437
}

Common.Mod.Example/assets/example/blocktypes/test-multiblock.json

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)