Skip to content

Commit 6f2a418

Browse files
authored
[release/3.1] Application scaling regression. Revert ildasm/ilasm tools to 4.6.2 to fix module initializer injection regression. (#5377)
* Revert ildasm/ilasm tools used for module initializer input injection to 4.6.2 * Fix ILDasm/ILAsm version to 4.6.2
1 parent 8bd2e86 commit 6f2a418

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/WpfArcadeSdk/tools/InjectModuleInitializer.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
try
6363
{
6464
var bitness = (DotNetFrameworkArchitecture)Enum.Parse(typeof(DotNetFrameworkArchitecture), DotNetBitness);
65-
ILAsm = ToolLocationHelper.GetPathToDotNetFrameworkFile("ILAsm.exe", TargetDotNetFrameworkVersion.Latest, bitness);
66-
ILDAsm = ToolLocationHelper.GetPathToDotNetFrameworkSdkFile("ILDAsm.exe", TargetDotNetFrameworkVersion.Latest, bitness);
65+
ILAsm = ToolLocationHelper.GetPathToDotNetFrameworkFile("ILAsm.exe", TargetDotNetFrameworkVersion.Version462, bitness);
66+
ILDAsm = ToolLocationHelper.GetPathToDotNetFrameworkSdkFile("ILDAsm.exe", TargetDotNetFrameworkVersion.Version462, bitness);
6767
}
6868
catch(Exception e)
6969
{

0 commit comments

Comments
 (0)