Skip to content

Commit 11b1bd0

Browse files
committed
3.3.5 for Terraria 1.4.5.3 - Expose System.IO.Packaging
1 parent 7751ebe commit 11b1bd0

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

OTAPI.Patcher/NugetPackageBuilder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ public void Build(ModFwModder modder)
6161
(typeof(MonoMod.MonoModder).Assembly.GetName().Name, Version: typeof(MonoMod.MonoModder).Assembly.GetName().Version.ToString()),
6262
(typeof(MonoMod.RuntimeDetour.DetourBase).Assembly.GetName().Name, Version: typeof(MonoMod.RuntimeDetour.DetourBase).Assembly.GetName().Version.ToString()),
6363
(steamworks.Name, Version: steamworks.Version.ToString()),
64-
(newtonsoft.Name, Version: GetNugetVersionFromAssembly<Newtonsoft.Json.JsonConverter>().Split('+')[0] ),
64+
(newtonsoft.Name, Version: GetNugetVersionFromAssembly<Newtonsoft.Json.JsonConverter>().Split('+')[0]),
65+
(Name: "System.IO.Packaging", Version: GetNugetVersionFromAssembly<System.IO.Packaging.ZipPackage>().Split('+')[0]),
6566
};
6667

6768
var xml_dependency = String.Join("", dependencies.Select(dep => $"\n\t <dependency id=\"{dep.Name}\" version=\"{dep.Version}\" />"));

OTAPI.Patcher/OTAPI.Patcher.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net9.0</TargetFramework>
6-
<Version>3.3.4</Version>
6+
<Version>3.3.5</Version>
77
<PreserveCompilationContext>true</PreserveCompilationContext>
88
<RuntimeIdentifiers>win;osx;linux;</RuntimeIdentifiers>
99
<Nullable>enable</Nullable>
@@ -20,6 +20,7 @@
2020
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
2121
<PackageReference Include="System.Security.Permissions" Version="9.0.2" />
2222
<PackageReference Include="System.Drawing.Common" Version="9.0.2" />
23+
<PackageReference Include="System.IO.Packaging" Version="9.0.2" />
2324
</ItemGroup>
2425
<ItemGroup>
2526
<ProjectReference Include="..\FNA\FNA.Core.csproj" />

0 commit comments

Comments
 (0)