File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed 
Installers/Windows/AspNetCoreModule-Setup/Forwarders 
Servers/IIS/AspNetCoreModuleV2/AspNetCore Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ cl /nologo /nologo /c /Fo%objDir%\aspnetcorev2_outofprocess_arm64.obj empty.cpp
1313cl /nologo /nologo /c /arm64EC /Fo%objDir% \aspnetcorev2_outofprocess_x64.obj empty.cpp
1414
1515link /lib /nologo /machine:arm64 /def:aspnetcorev2_outofprocess_arm64.def /out:%objDir% \aspnetcorev2_outofprocess_arm64.lib
16- link /lib /machine:x64 /def:aspnetcorev2_outofprocess_x64.def /out:%objDir% \aspnetcorev2_outofprocess_x64.lib
16+ link /lib /nologo / machine:x64 /def:aspnetcorev2_outofprocess_x64.def /out:%objDir% \aspnetcorev2_outofprocess_x64.lib
1717
1818link /dll /nologo /noentry /machine:arm64x /defArm64Native:aspnetcorev2_outofprocess_arm64.def /def:aspnetcorev2_outofprocess_x64.def %objDir% \aspnetcorev2_outofprocess_arm64.obj %objDir% \aspnetcorev2_outofprocess_x64.obj /out:%binDir% \aspnetcorev2_outofprocess.dll %objDir% \aspnetcorev2_outofprocess_arm64.lib %objDir% \aspnetcorev2_outofprocess_x64.lib
Original file line number Diff line number Diff line change 11<Project  xmlns =" http://schemas.microsoft.com/developer/msbuild/2003"   ToolsVersion =" 15.0"   DefaultTargets =" Build"  >
22  <PropertyGroup  Label =" Globals"  >
3-     <VCProjectVersion >17.0</VCProjectVersion >
4-     <RootNamespace >aspnetcorev2</RootNamespace >
5-     <WindowsTargetPlatformVersion >10.0</WindowsTargetPlatformVersion >
6-     <PlatformToolset >v143</PlatformToolset >
73    <CharacterSet >Unicode</CharacterSet >
84    <IsTestProject >false</IsTestProject >
95  </PropertyGroup >
6+   <Import  Project =" ..\build\settings.props"   />
107  <Import  Project =" $(VCTargetsPath)\Microsoft.Cpp.Default.props"   />
118  <PropertyGroup >
129    <ObjDir >$(ArtifactsObjDir)\AspNetCoreModuleForwarders</ObjDir >
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ HandlerResolver::LoadRequestHandlerAssembly(const IHttpApplication &pApplication
110110
111111        LOG_INFOF (L" Loading request handler:  '%ls'"  , handlerDllPath.c_str ());
112112
113-         hRequestHandlerDll = LoadLibraryEx (handlerDllPath.c_str (), 0 , LOAD_LIBRARY_SEARCH_DEFAULT_DIRS | LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR);
113+         hRequestHandlerDll = LoadLibraryEx (handlerDllPath.c_str (), nullptr , LOAD_LIBRARY_SEARCH_DEFAULT_DIRS | LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR);
114114        RETURN_LAST_ERROR_IF_NULL (hRequestHandlerDll);
115115
116116        if  (preventUnload)
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments