diff --git a/samples/Tests/Stride.Samples.Tests.csproj b/samples/Tests/Stride.Samples.Tests.csproj index b9c9893bd6..0d4784bbe5 100644 --- a/samples/Tests/Stride.Samples.Tests.csproj +++ b/samples/Tests/Stride.Samples.Tests.csproj @@ -6,7 +6,6 @@ $(StrideEditorTargetFramework) win-x64 true - --auto-module-initializer false true diff --git a/sources/assets/Stride.Core.Assets.CompilerApp/Stride.Core.Assets.CompilerApp.csproj b/sources/assets/Stride.Core.Assets.CompilerApp/Stride.Core.Assets.CompilerApp.csproj index 1d6fdc521b..da1311fd0f 100644 --- a/sources/assets/Stride.Core.Assets.CompilerApp/Stride.Core.Assets.CompilerApp.csproj +++ b/sources/assets/Stride.Core.Assets.CompilerApp/Stride.Core.Assets.CompilerApp.csproj @@ -8,7 +8,7 @@ true $(StrideXplatEditorTargetFramework);$(StrideEditorTargetFramework) false - --auto-module-initializer --serialization + --serialization diff --git a/sources/assets/Stride.Core.Assets.Quantum/Stride.Core.Assets.Quantum.csproj b/sources/assets/Stride.Core.Assets.Quantum/Stride.Core.Assets.Quantum.csproj index 516f6fc97b..c6706f6dee 100644 --- a/sources/assets/Stride.Core.Assets.Quantum/Stride.Core.Assets.Quantum.csproj +++ b/sources/assets/Stride.Core.Assets.Quantum/Stride.Core.Assets.Quantum.csproj @@ -7,7 +7,7 @@ true $(StrideXplatEditorTargetFramework) true - --auto-module-initializer --serialization + --serialization true diff --git a/sources/assets/Stride.Core.Assets.Tests/Stride.Core.Assets.Tests.csproj b/sources/assets/Stride.Core.Assets.Tests/Stride.Core.Assets.Tests.csproj index 711ca07f66..724726c43a 100644 --- a/sources/assets/Stride.Core.Assets.Tests/Stride.Core.Assets.Tests.csproj +++ b/sources/assets/Stride.Core.Assets.Tests/Stride.Core.Assets.Tests.csproj @@ -4,7 +4,7 @@ $(StrideEditorTargetFramework) win-x64 true - --auto-module-initializer --serialization + --serialization xunit.runner.stride.Program diff --git a/sources/assets/Stride.Core.Assets/Stride.Core.Assets.csproj b/sources/assets/Stride.Core.Assets/Stride.Core.Assets.csproj index b9b3f0cc2a..3e8e7bf99b 100644 --- a/sources/assets/Stride.Core.Assets/Stride.Core.Assets.csproj +++ b/sources/assets/Stride.Core.Assets/Stride.Core.Assets.csproj @@ -6,7 +6,7 @@ true $(StrideXplatEditorTargetFramework) true - --auto-module-initializer --serialization + --serialization true diff --git a/sources/assets/Stride.Core.Packages/Stride.Core.Packages.csproj b/sources/assets/Stride.Core.Packages/Stride.Core.Packages.csproj index 6cb4fb3a30..7ae525646e 100644 --- a/sources/assets/Stride.Core.Packages/Stride.Core.Packages.csproj +++ b/sources/assets/Stride.Core.Packages/Stride.Core.Packages.csproj @@ -4,7 +4,7 @@ true $(StrideXplatEditorTargetFramework) true - --auto-module-initializer --serialization + --serialization diff --git a/sources/buildengine/Stride.Core.BuildEngine.Common/Stride.Core.BuildEngine.Common.csproj b/sources/buildengine/Stride.Core.BuildEngine.Common/Stride.Core.BuildEngine.Common.csproj index 375e7834d5..2c3e3765f3 100644 --- a/sources/buildengine/Stride.Core.BuildEngine.Common/Stride.Core.BuildEngine.Common.csproj +++ b/sources/buildengine/Stride.Core.BuildEngine.Common/Stride.Core.BuildEngine.Common.csproj @@ -6,7 +6,7 @@ 2.0 true $(StrideXplatEditorTargetFramework) - --auto-module-initializer --serialization + --serialization diff --git a/sources/buildengine/Stride.Core.BuildEngine.Tests/Stride.Core.BuildEngine.Tests.csproj b/sources/buildengine/Stride.Core.BuildEngine.Tests/Stride.Core.BuildEngine.Tests.csproj index 5122c74bc3..911f5b44b7 100644 --- a/sources/buildengine/Stride.Core.BuildEngine.Tests/Stride.Core.BuildEngine.Tests.csproj +++ b/sources/buildengine/Stride.Core.BuildEngine.Tests/Stride.Core.BuildEngine.Tests.csproj @@ -5,7 +5,7 @@ $(StrideEditorTargetFramework) win-x64 true - --auto-module-initializer --serialization + --serialization WindowsTools diff --git a/sources/buildengine/Stride.Core.BuildEngine/Stride.Core.BuildEngine.csproj b/sources/buildengine/Stride.Core.BuildEngine/Stride.Core.BuildEngine.csproj index ba708c6406..f914e0216e 100644 --- a/sources/buildengine/Stride.Core.BuildEngine/Stride.Core.BuildEngine.csproj +++ b/sources/buildengine/Stride.Core.BuildEngine/Stride.Core.BuildEngine.csproj @@ -10,7 +10,7 @@ x86 true $(StrideEditorTargetFramework) - --auto-module-initializer --serialization + --serialization AnyCPU diff --git a/sources/core/Stride.Core.AssemblyProcessor/AssemblyProcessorProgram.cs b/sources/core/Stride.Core.AssemblyProcessor/AssemblyProcessorProgram.cs index d2d922ba48..01a1ecbd6a 100644 --- a/sources/core/Stride.Core.AssemblyProcessor/AssemblyProcessorProgram.cs +++ b/sources/core/Stride.Core.AssemblyProcessor/AssemblyProcessorProgram.cs @@ -110,7 +110,6 @@ public static AssemblyProcessorApp CreateAssemblyProcessorApp(string[] args, Tex { "p|platform=", "The platform (Windows, Android, iOS)", v => app.Platform = (PlatformType)Enum.Parse(typeof(PlatformType), v) }, { "parameter-key", "Automatically initialize parameter keys in module static constructor", v => app.ParameterKey = true }, { "rename-assembly=", "Rename assembly", v => app.NewAssemblyName = v }, - { "auto-module-initializer", "Execute function tagged with [ModuleInitializer] at module initialization (automatically enabled)", v => app.ModuleInitializer = true }, { "serialization", "Generate serialiation assembly", v => app.SerializationAssembly = true }, { "docfile=", "Generate user documentation from XML file", v => app.DocumentationFile = v }, { "d|directory=", "Additional search directory for assemblies", app.SearchDirectories.Add }, diff --git a/sources/core/Stride.Core.CompilerServices.Tests/Stride.Core.CompilerServices.Tests.csproj b/sources/core/Stride.Core.CompilerServices.Tests/Stride.Core.CompilerServices.Tests.csproj index 290466c27b..3d2033cbe4 100644 --- a/sources/core/Stride.Core.CompilerServices.Tests/Stride.Core.CompilerServices.Tests.csproj +++ b/sources/core/Stride.Core.CompilerServices.Tests/Stride.Core.CompilerServices.Tests.csproj @@ -4,7 +4,6 @@ net8.0 win-x64 true - --auto-module-initializer Windows;Android;iOS preview diff --git a/sources/core/Stride.Core.Design.Tests/Stride.Core.Design.Tests.csproj b/sources/core/Stride.Core.Design.Tests/Stride.Core.Design.Tests.csproj index 3423cb1b14..3b4af78fe0 100644 --- a/sources/core/Stride.Core.Design.Tests/Stride.Core.Design.Tests.csproj +++ b/sources/core/Stride.Core.Design.Tests/Stride.Core.Design.Tests.csproj @@ -2,7 +2,7 @@ true - --auto-module-initializer --serialization + --serialization $(StrideEditorTargetFramework) win-x64 WindowsTools diff --git a/sources/core/Stride.Core.Design/Stride.Core.Design.csproj b/sources/core/Stride.Core.Design/Stride.Core.Design.csproj index 939ae7e337..ca5747c4cf 100644 --- a/sources/core/Stride.Core.Design/Stride.Core.Design.csproj +++ b/sources/core/Stride.Core.Design/Stride.Core.Design.csproj @@ -5,7 +5,7 @@ 2.0 true true - --auto-module-initializer --serialization + --serialization $(StrideXplatEditorTargetFramework) WindowsTools true diff --git a/sources/core/Stride.Core.IO/Stride.Core.IO.csproj b/sources/core/Stride.Core.IO/Stride.Core.IO.csproj index 731228df43..1881f271e2 100644 --- a/sources/core/Stride.Core.IO/Stride.Core.IO.csproj +++ b/sources/core/Stride.Core.IO/Stride.Core.IO.csproj @@ -12,7 +12,6 @@ true - --auto-module-initializer true * diff --git a/sources/core/Stride.Core.Mathematics.Tests/Stride.Core.Mathematics.Tests.csproj b/sources/core/Stride.Core.Mathematics.Tests/Stride.Core.Mathematics.Tests.csproj index 7d4205a593..f03259d050 100644 --- a/sources/core/Stride.Core.Mathematics.Tests/Stride.Core.Mathematics.Tests.csproj +++ b/sources/core/Stride.Core.Mathematics.Tests/Stride.Core.Mathematics.Tests.csproj @@ -4,7 +4,7 @@ net8.0 win-x64 true - --auto-module-initializer --serialization + --serialization Windows diff --git a/sources/core/Stride.Core.Mathematics/Stride.Core.Mathematics.csproj b/sources/core/Stride.Core.Mathematics/Stride.Core.Mathematics.csproj index 46aa8e15f8..9b63384568 100644 --- a/sources/core/Stride.Core.Mathematics/Stride.Core.Mathematics.csproj +++ b/sources/core/Stride.Core.Mathematics/Stride.Core.Mathematics.csproj @@ -9,7 +9,7 @@ true * true - --auto-module-initializer --serialization + --serialization true true diff --git a/sources/core/Stride.Core.MicroThreading/Stride.Core.MicroThreading.csproj b/sources/core/Stride.Core.MicroThreading/Stride.Core.MicroThreading.csproj index 57d3f4be44..66f7922d7b 100644 --- a/sources/core/Stride.Core.MicroThreading/Stride.Core.MicroThreading.csproj +++ b/sources/core/Stride.Core.MicroThreading/Stride.Core.MicroThreading.csproj @@ -9,7 +9,6 @@ true * true - --auto-module-initializer true diff --git a/sources/core/Stride.Core.Serialization/Stride.Core.Serialization.csproj b/sources/core/Stride.Core.Serialization/Stride.Core.Serialization.csproj index dc0e312b80..d0ddc1621b 100644 --- a/sources/core/Stride.Core.Serialization/Stride.Core.Serialization.csproj +++ b/sources/core/Stride.Core.Serialization/Stride.Core.Serialization.csproj @@ -9,7 +9,7 @@ true * true - --auto-module-initializer --serialization + --serialization true diff --git a/sources/core/Stride.Core.Tests/Stride.Core.Tests.Android.csproj b/sources/core/Stride.Core.Tests/Stride.Core.Tests.Android.csproj index a80f0d9575..31f89313b8 100644 --- a/sources/core/Stride.Core.Tests/Stride.Core.Tests.Android.csproj +++ b/sources/core/Stride.Core.Tests/Stride.Core.Tests.Android.csproj @@ -15,7 +15,7 @@ Stride.Core.Tests true true - --auto-module-initializer --serialization + --serialization Windows;Android;iOS Tests\$(AssemblyName) false diff --git a/sources/core/Stride.Core.Tests/Stride.Core.Tests.csproj b/sources/core/Stride.Core.Tests/Stride.Core.Tests.csproj index e9ae07deee..1c68c96f05 100644 --- a/sources/core/Stride.Core.Tests/Stride.Core.Tests.csproj +++ b/sources/core/Stride.Core.Tests/Stride.Core.Tests.csproj @@ -4,7 +4,7 @@ net8.0 win-x64 true - --auto-module-initializer --serialization + --serialization Windows;Android;iOS diff --git a/sources/core/Stride.Core.Tests/Stride.Core.Tests.iOS.csproj b/sources/core/Stride.Core.Tests/Stride.Core.Tests.iOS.csproj index 9c96e9023e..836d9c8d07 100644 --- a/sources/core/Stride.Core.Tests/Stride.Core.Tests.iOS.csproj +++ b/sources/core/Stride.Core.Tests/Stride.Core.Tests.iOS.csproj @@ -24,7 +24,7 @@ StrideCoreTests true true - --auto-module-initializer --serialization + --serialization Windows;Android;iOS Tests\$(AssemblyName) false diff --git a/sources/core/Stride.Core.Translation/Stride.Core.Translation.csproj b/sources/core/Stride.Core.Translation/Stride.Core.Translation.csproj index 0d7f6340b2..5df69441c6 100644 --- a/sources/core/Stride.Core.Translation/Stride.Core.Translation.csproj +++ b/sources/core/Stride.Core.Translation/Stride.Core.Translation.csproj @@ -7,7 +7,7 @@ $(StrideXplatEditorTargetFramework) WindowsTools true - --auto-module-initializer --serialization + --serialization true diff --git a/sources/core/Stride.Core.Yaml.Tests/Stride.Core.Yaml.Tests.csproj b/sources/core/Stride.Core.Yaml.Tests/Stride.Core.Yaml.Tests.csproj index 41247c9701..4fe256d45c 100644 --- a/sources/core/Stride.Core.Yaml.Tests/Stride.Core.Yaml.Tests.csproj +++ b/sources/core/Stride.Core.Yaml.Tests/Stride.Core.Yaml.Tests.csproj @@ -2,7 +2,7 @@ true - --auto-module-initializer --serialization + --serialization net8.0 win-x64 WindowsTools diff --git a/sources/core/Stride.Core/Stride.Core.csproj b/sources/core/Stride.Core/Stride.Core.csproj index 1504bb92a1..7e44e97b07 100644 --- a/sources/core/Stride.Core/Stride.Core.csproj +++ b/sources/core/Stride.Core/Stride.Core.csproj @@ -12,7 +12,7 @@ true - --auto-module-initializer --serialization + --serialization * true 6.2.12 diff --git a/sources/core/Stride.Core/build/Stride.Core.targets b/sources/core/Stride.Core/build/Stride.Core.targets index 592e07f3fb..e20d8cccc0 100644 --- a/sources/core/Stride.Core/build/Stride.Core.targets +++ b/sources/core/Stride.Core/build/Stride.Core.targets @@ -72,7 +72,7 @@ - --parameter-key --auto-module-initializer --serialization + --parameter-key --serialization $(StrideAssemblyProcessorOptions) --docfile="$(DocumentationFile)" diff --git a/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.Mdb.dll b/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.Mdb.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.Pdb.dll b/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.Pdb.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.Rocks.dll b/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.Rocks.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.dll b/sources/core/deps/AssemblyProcessor/net8.0/Mono.Cecil.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/net8.0/Mono.Options.dll b/sources/core/deps/AssemblyProcessor/net8.0/Mono.Options.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.deps.json b/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.deps.json index ac18415de3..04241dd521 100644 --- a/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.deps.json +++ b/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.deps.json @@ -8,7 +8,7 @@ ".NETCoreApp,Version=v8.0": { "Stride.Core.AssemblyProcessor/1.0.0": { "dependencies": { - "Microsoft.Build.Utilities.Core": "17.3.2", + "Microsoft.Build.Utilities.Core": "17.0.0", "Mono.Cecil": "0.11.5", "Mono.Options": "6.12.0.148" }, @@ -16,26 +16,47 @@ "Stride.Core.AssemblyProcessor.dll": {} } }, - "Microsoft.Build.Framework/17.3.2": { + "Microsoft.Build.Framework/17.0.0": { "dependencies": { - "System.Security.Permissions": "6.0.0" + "System.Security.Permissions": "4.7.0" } }, - "Microsoft.Build.Utilities.Core/17.3.2": { + "Microsoft.Build.Utilities.Core/17.0.0": { "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0" + "Microsoft.Build.Framework": "17.0.0", + "Microsoft.NET.StringTools": "1.0.0", + "Microsoft.Win32.Registry": "4.3.0", + "System.Collections.Immutable": "5.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.0.1" } }, - "Microsoft.NET.StringTools/17.3.2": { + "Microsoft.NET.StringTools/1.0.0": { "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Memory": "4.5.4", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" } }, - "Microsoft.Win32.SystemEvents/6.0.0": {}, "Mono.Cecil/0.11.5": { "runtime": { "lib/netstandard2.0/Mono.Cecil.Mdb.dll": { @@ -64,35 +85,152 @@ } } }, - "System.Collections.Immutable/6.0.0": { + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": {}, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + } + }, + "System.Globalization/4.3.0": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" } }, - "System.Configuration.ConfigurationManager/6.0.0": { + "System.IO/4.3.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" } }, - "System.Drawing.Common/6.0.0": { + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" } }, - "System.Memory/4.5.5": {}, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.ProtectedData/6.0.0": {}, - "System.Security.Permissions/6.0.0": { + "System.Reflection.Primitives/4.3.0": { "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" } }, - "System.Windows.Extensions/6.0.0": { + "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "System.Drawing.Common": "6.0.0" + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": {}, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11" + } + }, + "System.Threading/4.0.11": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" } } } @@ -103,33 +241,54 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Build.Framework/17.3.2": { + "Microsoft.Build.Framework/17.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XbFA0z+6Ws2pNeRXYcDF3lKlNgRoSGMm2Q5HKzZD+EbwYMKPKrl/BJnnkMuDJHU0KravYHfhzBnLLJpPeZ3E7A==", + "path": "microsoft.build.framework/17.0.0", + "hashPath": "microsoft.build.framework.17.0.0.nupkg.sha512" + }, + "Microsoft.Build.Utilities.Core/17.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" + "sha512": "sha512-+eqDvecetKfsZR9WqLQ96F9xhxFb3m9VOjkyzuaA/2D1cub1aW9XyegZb8+gEpBa+o7dHnIN9FskC+tRXtqLSQ==", + "path": "microsoft.build.utilities.core/17.0.0", + "hashPath": "microsoft.build.utilities.core.17.0.0.nupkg.sha512" }, - "Microsoft.Build.Utilities.Core/17.3.2": { + "Microsoft.NET.StringTools/1.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-XnAWKrJ2ewyVxAdi0gmk3GYqF02u+0zFGjF4A6f1FJy4/GUgfMJ/hz1N+RzUcjQ4Oi6hmwYHNFY3uIGAgckDig==", - "path": "microsoft.build.utilities.core/17.3.2", - "hashPath": "microsoft.build.utilities.core.17.3.2.nupkg.sha512" + "sha512": "sha512-ZYVcoDM0LnSyT5nWoRGfShYdOecCw2sOXWwP6j1Z0u48Xq3+BVvZ+EiPCX9/8Gz439giW+O1H1kWF9Eb/w6rVg==", + "path": "microsoft.net.stringtools/1.0.0", + "hashPath": "microsoft.net.stringtools.1.0.0.nupkg.sha512" }, - "Microsoft.NET.StringTools/17.3.2": { + "Microsoft.NETCore.Platforms/3.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/6.0.0": { + "Microsoft.NETCore.Targets/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", + "path": "microsoft.win32.registry/4.3.0", + "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" }, "Mono.Cecil/0.11.5": { "type": "package", @@ -145,68 +304,173 @@ "path": "mono.options/6.12.0.148", "hashPath": "mono.options.6.12.0.148.nupkg.sha512" }, - "System.Collections.Immutable/6.0.0": { + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/6.0.0": { + "System.Security.Cryptography.ProtectedData/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" }, - "System.Drawing.Common/6.0.0": { + "System.Security.Permissions/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" }, - "System.Memory/4.5.5": { + "System.Security.Principal.Windows/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "System.Text.Encoding/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/6.0.0": { + "System.Text.Encoding.CodePages/4.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + "sha512": "sha512-h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "path": "system.text.encoding.codepages/4.0.1", + "hashPath": "system.text.encoding.codepages.4.0.1.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/6.0.0": { + "System.Threading/4.0.11": { "type": "package", "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "path": "system.threading/4.0.11", + "hashPath": "system.threading.4.0.11.nupkg.sha512" }, - "System.Security.Permissions/6.0.0": { + "System.Threading.Tasks/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" }, - "System.Windows.Extensions/6.0.0": { + "System.Windows.Extensions/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.dll b/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.dll index fde8de364d..2f24bfdaa5 100644 --- a/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.dll +++ b/sources/core/deps/AssemblyProcessor/net8.0/Stride.Core.AssemblyProcessor.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33cb9f95d13637cfcbc84ab2c9499ecfaa853344053d29130043a3ab8c3cd652 -size 171008 +oid sha256:d4434d8a675ff013e58ad0b5e9b21ce928951da6d5f4d9543ba04f158e9c8bb2 +size 146944 diff --git a/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.Mdb.dll b/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.Mdb.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.Pdb.dll b/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.Pdb.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.Rocks.dll b/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.Rocks.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.dll b/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Cecil.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Options.dll b/sources/core/deps/AssemblyProcessor/netstandard2.0/Mono.Options.dll old mode 100644 new mode 100755 diff --git a/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.deps.json b/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.deps.json index a83cc2395e..94b331c5de 100644 --- a/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.deps.json +++ b/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.deps.json @@ -9,8 +9,7 @@ ".NETStandard,Version=v2.0/": { "Stride.Core.AssemblyProcessor/1.0.0": { "dependencies": { - "ILRepack": "2.0.18", - "Microsoft.Build.Utilities.Core": "17.3.2", + "Microsoft.Build.Utilities.Core": "17.0.0", "Mono.Cecil": "0.11.5", "Mono.Options": "6.12.0.148", "NETStandard.Library": "2.0.3" @@ -19,36 +18,40 @@ "Stride.Core.AssemblyProcessor.dll": {} } }, - "ILRepack/2.0.18": {}, - "Microsoft.Build.Framework/17.3.2": { + "Microsoft.Build.Framework/17.0.0": { "dependencies": { - "System.Security.Permissions": "6.0.0" + "System.Security.Permissions": "4.7.0" } }, - "Microsoft.Build.Utilities.Core/17.3.2": { + "Microsoft.Build.Utilities.Core/17.0.0": { "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "Microsoft.Win32.Registry": "5.0.0", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Security.Permissions": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0" + "Microsoft.Build.Framework": "17.0.0", + "Microsoft.NET.StringTools": "1.0.0", + "Microsoft.Win32.Registry": "4.3.0", + "System.Collections.Immutable": "5.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.0.1" } }, - "Microsoft.NET.StringTools/17.3.2": { + "Microsoft.NET.StringTools/1.0.0": { "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Memory": "4.5.4", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" } }, "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.Win32.Registry/5.0.0": { + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.3.0": { "dependencies": { - "System.Buffers": "4.5.1", - "System.Memory": "4.5.5", - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" } }, "Mono.Cecil/0.11.5": { @@ -85,47 +88,154 @@ } }, "System.Buffers/4.5.1": {}, - "System.Collections.Immutable/6.0.0": { + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": { "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Memory": "4.5.4" } }, - "System.Configuration.ConfigurationManager/6.0.0": { + "System.Configuration.ConfigurationManager/4.7.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" } }, - "System.Memory/4.5.5": { + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Memory/4.5.4": { "dependencies": { "System.Buffers": "4.5.1", "System.Numerics.Vectors": "4.4.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Runtime.CompilerServices.Unsafe": "5.0.0" } }, "System.Numerics.Vectors/4.4.0": {}, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Security.AccessControl/6.0.0": { + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Runtime.Extensions/4.3.0": { "dependencies": { - "System.Security.Principal.Windows": "5.0.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" } }, - "System.Security.Cryptography.ProtectedData/6.0.0": { + "System.Runtime.Handles/4.3.0": { "dependencies": { - "System.Memory": "4.5.5" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" } }, - "System.Security.Permissions/6.0.0": { + "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "System.Security.AccessControl": "6.0.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" } }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding.CodePages/6.0.0": { + "System.Security.AccessControl/4.7.0": { "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "dependencies": { + "System.Memory": "4.5.4" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.0.11" + } + }, + "System.Threading/4.0.11": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" } } } @@ -136,33 +246,26 @@ "serviceable": false, "sha512": "" }, - "ILRepack/2.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sR5Aj3JLDbA8JwESfWYfigSz5k1oNSHPN434W1LX8sboWJYEOSQP/KkvZGmJKPgajzSUKkl2jDar3LPZiMFU4Q==", - "path": "ilrepack/2.0.18", - "hashPath": "ilrepack.2.0.18.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { + "Microsoft.Build.Framework/17.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" + "sha512": "sha512-XbFA0z+6Ws2pNeRXYcDF3lKlNgRoSGMm2Q5HKzZD+EbwYMKPKrl/BJnnkMuDJHU0KravYHfhzBnLLJpPeZ3E7A==", + "path": "microsoft.build.framework/17.0.0", + "hashPath": "microsoft.build.framework.17.0.0.nupkg.sha512" }, - "Microsoft.Build.Utilities.Core/17.3.2": { + "Microsoft.Build.Utilities.Core/17.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-XnAWKrJ2ewyVxAdi0gmk3GYqF02u+0zFGjF4A6f1FJy4/GUgfMJ/hz1N+RzUcjQ4Oi6hmwYHNFY3uIGAgckDig==", - "path": "microsoft.build.utilities.core/17.3.2", - "hashPath": "microsoft.build.utilities.core.17.3.2.nupkg.sha512" + "sha512": "sha512-+eqDvecetKfsZR9WqLQ96F9xhxFb3m9VOjkyzuaA/2D1cub1aW9XyegZb8+gEpBa+o7dHnIN9FskC+tRXtqLSQ==", + "path": "microsoft.build.utilities.core/17.0.0", + "hashPath": "microsoft.build.utilities.core.17.0.0.nupkg.sha512" }, - "Microsoft.NET.StringTools/17.3.2": { + "Microsoft.NET.StringTools/1.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" + "sha512": "sha512-ZYVcoDM0LnSyT5nWoRGfShYdOecCw2sOXWwP6j1Z0u48Xq3+BVvZ+EiPCX9/8Gz439giW+O1H1kWF9Eb/w6rVg==", + "path": "microsoft.net.stringtools/1.0.0", + "hashPath": "microsoft.net.stringtools.1.0.0.nupkg.sha512" }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", @@ -171,12 +274,19 @@ "path": "microsoft.netcore.platforms/1.1.0", "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" }, - "Microsoft.Win32.Registry/5.0.0": { + "Microsoft.NETCore.Targets/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", + "path": "microsoft.win32.registry/4.3.0", + "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" }, "Mono.Cecil/0.11.5": { "type": "package", @@ -206,26 +316,47 @@ "path": "system.buffers/4.5.1", "hashPath": "system.buffers.4.5.1.nupkg.sha512" }, - "System.Collections.Immutable/6.0.0": { + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/6.0.0": { + "System.Configuration.ConfigurationManager/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" }, - "System.Memory/4.5.5": { + "System.Globalization/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" }, "System.Numerics.Vectors/4.4.0": { "type": "package", @@ -234,47 +365,117 @@ "path": "system.numerics.vectors/4.4.0", "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512" }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" }, - "System.Security.AccessControl/6.0.0": { + "System.Security.Principal.Windows/4.7.0": { "type": "package", "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/6.0.0": { + "System.Text.Encoding/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" }, - "System.Security.Permissions/6.0.0": { + "System.Text.Encoding.CodePages/4.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + "sha512": "sha512-h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "path": "system.text.encoding.codepages/4.0.1", + "hashPath": "system.text.encoding.codepages.4.0.1.nupkg.sha512" }, - "System.Security.Principal.Windows/5.0.0": { + "System.Threading/4.0.11": { "type": "package", "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "path": "system.threading/4.0.11", + "hashPath": "system.threading.4.0.11.nupkg.sha512" }, - "System.Text.Encoding.CodePages/6.0.0": { + "System.Threading.Tasks/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.dll b/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.dll index 99682e9464..c02294f6f4 100644 --- a/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.dll +++ b/sources/core/deps/AssemblyProcessor/netstandard2.0/Stride.Core.AssemblyProcessor.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c31941de965dbe897d8d7be778ff985566f6e111b21a9ba683c779d8df04a7d -size 169984 +oid sha256:4801fd178f6a2c64a2e0d0f169cc9b9e86804e72b6181cd925c116ed905bdaa1 +size 146432 diff --git a/sources/editor/Stride.Assets.Presentation/Stride.Assets.Presentation.csproj b/sources/editor/Stride.Assets.Presentation/Stride.Assets.Presentation.csproj index a594b6993f..4681780e02 100644 --- a/sources/editor/Stride.Assets.Presentation/Stride.Assets.Presentation.csproj +++ b/sources/editor/Stride.Assets.Presentation/Stride.Assets.Presentation.csproj @@ -8,7 +8,7 @@ $(StrideEditorTargetFramework) win-x64 false - --auto-module-initializer --serialization --parameter-key + --serialization --parameter-key true true false diff --git a/sources/editor/Stride.Core.Assets.Editor/Stride.Core.Assets.Editor.csproj b/sources/editor/Stride.Core.Assets.Editor/Stride.Core.Assets.Editor.csproj index 6c601a9761..5525e50900 100644 --- a/sources/editor/Stride.Core.Assets.Editor/Stride.Core.Assets.Editor.csproj +++ b/sources/editor/Stride.Core.Assets.Editor/Stride.Core.Assets.Editor.csproj @@ -4,7 +4,7 @@ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} $(StrideEditorTargetFramework) true - --auto-module-initializer --serialization + --serialization true true false diff --git a/sources/editor/Stride.GameStudio/Debugging/AssemblyRecompiler.cs b/sources/editor/Stride.GameStudio/Debugging/AssemblyRecompiler.cs index 263aed8348..eb335071a2 100644 --- a/sources/editor/Stride.GameStudio/Debugging/AssemblyRecompiler.cs +++ b/sources/editor/Stride.GameStudio/Debugging/AssemblyRecompiler.cs @@ -183,7 +183,7 @@ public async Task Recompile(Project gameProject, LoggerResult logg if (referenceBuild.IsCanceled || result.HasErrors) break; - var assemblyProcessorParameters = "--parameter-key --auto-module-initializer --serialization"; + var assemblyProcessorParameters = "--parameter-key --serialization"; var assemblyProcessorApp = AssemblyProcessorProgram.CreateAssemblyProcessorApp(SplitCommandLine(assemblyProcessorParameters).ToArray(), new LoggerAssemblyProcessorWrapper(result)); foreach (var referencePath in referenceBuildResult.ProjectStateAfterBuild.Items.Where(x => x.ItemType == "ReferencePath")) diff --git a/sources/editor/Stride.GameStudio/Stride.GameStudio.csproj b/sources/editor/Stride.GameStudio/Stride.GameStudio.csproj index 519b9b3e14..8e038a5bc8 100644 --- a/sources/editor/Stride.GameStudio/Stride.GameStudio.csproj +++ b/sources/editor/Stride.GameStudio/Stride.GameStudio.csproj @@ -13,7 +13,6 @@ true Stride.GameStudio true - --auto-module-initializer true true true diff --git a/sources/engine/Stride.Games/Stride.Games.csproj b/sources/engine/Stride.Games/Stride.Games.csproj index a598ea0bef..582d8ac2ee 100644 --- a/sources/engine/Stride.Games/Stride.Games.csproj +++ b/sources/engine/Stride.Games/Stride.Games.csproj @@ -12,7 +12,6 @@ true true true - --auto-module-initializer true * true diff --git a/sources/engine/Stride.Shaders.Compiler/Stride.Shaders.Compiler.csproj b/sources/engine/Stride.Shaders.Compiler/Stride.Shaders.Compiler.csproj index 42d4cb9361..c84e88bb15 100644 --- a/sources/engine/Stride.Shaders.Compiler/Stride.Shaders.Compiler.csproj +++ b/sources/engine/Stride.Shaders.Compiler/Stride.Shaders.Compiler.csproj @@ -6,7 +6,6 @@ * true - --auto-module-initializer $(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@InstallationFolder) diff --git a/sources/engine/Stride.Shaders.Parser/Stride.Shaders.Parser.csproj b/sources/engine/Stride.Shaders.Parser/Stride.Shaders.Parser.csproj index 4a18b4188a..1e569c7cf6 100644 --- a/sources/engine/Stride.Shaders.Parser/Stride.Shaders.Parser.csproj +++ b/sources/engine/Stride.Shaders.Parser/Stride.Shaders.Parser.csproj @@ -8,7 +8,7 @@ 2.0 true true - --auto-module-initializer --serialization + --serialization * diff --git a/sources/engine/Stride/Stride.csproj b/sources/engine/Stride/Stride.csproj index ac4882991e..d660f1f5a9 100644 --- a/sources/engine/Stride/Stride.csproj +++ b/sources/engine/Stride/Stride.csproj @@ -14,7 +14,7 @@ true - --auto-module-initializer --serialization + --serialization true * true diff --git a/sources/presentation/Stride.Core.Presentation.Dialogs/Stride.Core.Presentation.Dialogs.csproj b/sources/presentation/Stride.Core.Presentation.Dialogs/Stride.Core.Presentation.Dialogs.csproj index 8d027e1a44..58da701b51 100644 --- a/sources/presentation/Stride.Core.Presentation.Dialogs/Stride.Core.Presentation.Dialogs.csproj +++ b/sources/presentation/Stride.Core.Presentation.Dialogs/Stride.Core.Presentation.Dialogs.csproj @@ -6,7 +6,6 @@ WindowsTools $(StrideEditorTargetFramework) true - --auto-module-initializer true false diff --git a/sources/presentation/Stride.Core.Presentation.Graph/Stride.Core.Presentation.Graph.csproj b/sources/presentation/Stride.Core.Presentation.Graph/Stride.Core.Presentation.Graph.csproj index 8b0075e848..ce1d4fff06 100644 --- a/sources/presentation/Stride.Core.Presentation.Graph/Stride.Core.Presentation.Graph.csproj +++ b/sources/presentation/Stride.Core.Presentation.Graph/Stride.Core.Presentation.Graph.csproj @@ -6,7 +6,7 @@ WindowsTools $(StrideEditorTargetFramework) true - --auto-module-initializer --serialization + --serialization true true false diff --git a/sources/presentation/Stride.Core.Presentation.Wpf/Stride.Core.Presentation.Wpf.csproj b/sources/presentation/Stride.Core.Presentation.Wpf/Stride.Core.Presentation.Wpf.csproj index 2a42f59146..2ed8174e9b 100644 --- a/sources/presentation/Stride.Core.Presentation.Wpf/Stride.Core.Presentation.Wpf.csproj +++ b/sources/presentation/Stride.Core.Presentation.Wpf/Stride.Core.Presentation.Wpf.csproj @@ -6,7 +6,7 @@ WindowsTools $(StrideEditorTargetFramework) true - --auto-module-initializer --serialization + --serialization true true true diff --git a/sources/presentation/Stride.Core.Quantum.Tests/Stride.Core.Quantum.Tests.csproj b/sources/presentation/Stride.Core.Quantum.Tests/Stride.Core.Quantum.Tests.csproj index 6a0e45d544..86cf251417 100644 --- a/sources/presentation/Stride.Core.Quantum.Tests/Stride.Core.Quantum.Tests.csproj +++ b/sources/presentation/Stride.Core.Quantum.Tests/Stride.Core.Quantum.Tests.csproj @@ -5,7 +5,7 @@ win-x64 WindowsTools true - --auto-module-initializer --serialization + --serialization diff --git a/sources/presentation/Stride.Core.Quantum/Stride.Core.Quantum.csproj b/sources/presentation/Stride.Core.Quantum/Stride.Core.Quantum.csproj index b664ad9c61..36f603a401 100644 --- a/sources/presentation/Stride.Core.Quantum/Stride.Core.Quantum.csproj +++ b/sources/presentation/Stride.Core.Quantum/Stride.Core.Quantum.csproj @@ -4,7 +4,7 @@ true - --auto-module-initializer --serialization + --serialization $(StrideXplatEditorTargetFramework) diff --git a/sources/presentation/Stride.Core.Translation.Presentation/Stride.Core.Translation.Presentation.csproj b/sources/presentation/Stride.Core.Translation.Presentation/Stride.Core.Translation.Presentation.csproj index 8a39fdd952..59680f3252 100644 --- a/sources/presentation/Stride.Core.Translation.Presentation/Stride.Core.Translation.Presentation.csproj +++ b/sources/presentation/Stride.Core.Translation.Presentation/Stride.Core.Translation.Presentation.csproj @@ -7,7 +7,7 @@ $(StrideEditorTargetFramework) WindowsTools true - --auto-module-initializer --serialization + --serialization true true diff --git a/sources/targets/Stride.Core.props b/sources/targets/Stride.Core.props index 686a4e2e26..2068a30e58 100644 --- a/sources/targets/Stride.Core.props +++ b/sources/targets/Stride.Core.props @@ -124,7 +124,7 @@ false - --auto-module-initializer --serialization + --serialization