From ec3302dfc654dd1add2d93522d51581251a61a36 Mon Sep 17 00:00:00 2001 From: eunma Date: Thu, 12 Dec 2024 09:08:04 +0900 Subject: [PATCH] 1.398 version update --- FodyWeavers.xsd | 43 ++++++++++++++++++++++++++++++++++---- Properties/AssemblyInfo.cs | 4 ++-- README.md | 2 ++ 3 files changed, 43 insertions(+), 6 deletions(-) diff --git a/FodyWeavers.xsd b/FodyWeavers.xsd index 05e92c114..f2dbece78 100644 --- a/FodyWeavers.xsd +++ b/FodyWeavers.xsd @@ -29,12 +29,27 @@ - A list of unmanaged 32 bit assembly names to include, delimited with line breaks. + Obsolete, use UnmanagedWinX86Assemblies instead + + + + + A list of unmanaged X86 (32 bit) assembly names to include, delimited with line breaks. - A list of unmanaged 64 bit assembly names to include, delimited with line breaks. + Obsolete, use UnmanagedWinX64Assemblies instead. + + + + + A list of unmanaged X64 (64 bit) assembly names to include, delimited with line breaks. + + + + + A list of unmanaged Arm64 (64 bit) assembly names to include, delimited with line breaks. @@ -73,6 +88,11 @@ As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. + + + The attach method no longer subscribes to the `AppDomain.AssemblyResolve` (.NET 4.x) and `AssemblyLoadContext.Resolving` (.NET 6.0+) events. + + Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. @@ -105,12 +125,27 @@ - A list of unmanaged 32 bit assembly names to include, delimited with |. + Obsolete, use UnmanagedWinX86Assemblies instead + + + + + A list of unmanaged X86 (32 bit) assembly names to include, delimited with |. - A list of unmanaged 64 bit assembly names to include, delimited with |. + Obsolete, use UnmanagedWinX64Assemblies instead + + + + + A list of unmanaged X64 (64 bit) assembly names to include, delimited with |. + + + + + A list of unmanaged Arm64 (64 bit) assembly names to include, delimited with |. diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 3cd370114..ccebdbf88 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -10,5 +10,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("9ddf7bd8-3c77-43d4-a229-f79ce082c6e8")] -[assembly: AssemblyVersion("1.397.0.0")] -[assembly: AssemblyFileVersion("1.397.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.398.0.0")] +[assembly: AssemblyFileVersion("1.398.0.0")] \ No newline at end of file diff --git a/README.md b/README.md index 35c409425..b67863082 100644 --- a/README.md +++ b/README.md @@ -257,6 +257,8 @@ FallGuysStats is open source, meaning anyone can view the code, so download it w
Details + - `1.398` + - Bugfix and program optimization - `1.397` - Bugfix and program optimization - `1.396`