[unified] Fix patch according to upstream changes and fix build errors (#243)

* Fix bitbetter patch according to upstream changes

* Fix the builds by removing redundant already removed and stopped old instance

---------

Co-authored-by: juliokele <>
This commit is contained in:
juliokele
2025-07-29 19:48:55 +02:00
committed by GitHub
parent 076b0a624b
commit 01cdfa2842
3 changed files with 11 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ internal class Program
Console.WriteLine($"New Cert Thumbprint: {certificate.Thumbprint}");
IEnumerable<TypeDef> services = moduleDefMd.Types.Where(t => t.Namespace == "Bit.Core.Services");
IEnumerable<TypeDef> services = moduleDefMd.Types.Where(t => t.Namespace == "Bit.Core.Billing.Services");
TypeDef type = services.First(t => t.Name == "LicensingService");
MethodDef constructor = type.FindConstructors().First();