Use Win32 as native platform (#7309)
This commit is contained in:
parent
af463acc38
commit
0211e894fe
|
|
@ -46,7 +46,7 @@ with the right MSBuild incantations to get output copied to the right place.
|
||||||
|
|
||||||
<ProjectReference Include="@(NativeProjectReference)">
|
<ProjectReference Include="@(NativeProjectReference)">
|
||||||
<!-- Set the arch-->
|
<!-- Set the arch-->
|
||||||
<SetPlatform>Platform=x86</SetPlatform>
|
<SetPlatform>Platform=Win32</SetPlatform>
|
||||||
<!-- The base path for the output. -->
|
<!-- The base path for the output. -->
|
||||||
<LinkBase>x86\%(HandlerPath)\</LinkBase>
|
<LinkBase>x86\%(HandlerPath)\</LinkBase>
|
||||||
<!-- This reference assembly doesn't need -->
|
<!-- This reference assembly doesn't need -->
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@
|
||||||
<Content Include="..\AspNetCore\bin\$(Configuration)\x64\aspnetcorev2.dll" PackagePath="contentFiles/any/any/x64" />
|
<Content Include="..\AspNetCore\bin\$(Configuration)\x64\aspnetcorev2.dll" PackagePath="contentFiles/any/any/x64" />
|
||||||
<Content Include="..\AspNetCore\bin\$(Configuration)\x64\aspnetcorev2.pdb" PackagePath="contentFiles/any/any/x64" />
|
<Content Include="..\AspNetCore\bin\$(Configuration)\x64\aspnetcorev2.pdb" PackagePath="contentFiles/any/any/x64" />
|
||||||
|
|
||||||
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\x86\aspnetcorev2_outofprocess.dll" PackagePath="contentFiles/any/any/x86/2.0.0" />
|
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\Win32\aspnetcorev2_outofprocess.dll" PackagePath="contentFiles/any/any/x86/2.0.0" />
|
||||||
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\x86\aspnetcorev2_outofprocess.pdb" PackagePath="contentFiles/any/any/x86/2.0.0" />
|
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\Win32\aspnetcorev2_outofprocess.pdb" PackagePath="contentFiles/any/any/x86/2.0.0" />
|
||||||
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\x64\aspnetcorev2_outofprocess.dll" PackagePath="contentFiles/any/any/x64/2.0.0" />
|
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\x64\aspnetcorev2_outofprocess.dll" PackagePath="contentFiles/any/any/x64/2.0.0" />
|
||||||
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\x64\aspnetcorev2_outofprocess.pdb" PackagePath="contentFiles/any/any/x64/2.0.0" />
|
<Content Include="..\OutOfProcessRequestHandler\bin\$(Configuration)\x64\aspnetcorev2_outofprocess.pdb" PackagePath="contentFiles/any/any/x64/2.0.0" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -178,9 +178,9 @@
|
||||||
NativeAsset="aspnetcorev2_outofprocess"
|
NativeAsset="aspnetcorev2_outofprocess"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
||||||
DllLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\bin\$(Configuration)\x86\aspnetcorev2_outofprocess.dll"
|
DllLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\bin\$(Configuration)\Win32\aspnetcorev2_outofprocess.dll"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
||||||
PdbLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\bin\$(Configuration)\x86\aspnetcorev2_outofprocess.pdb"
|
PdbLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\bin\$(Configuration)\Win32\aspnetcorev2_outofprocess.pdb"
|
||||||
HandlerPath="2.0.0"
|
HandlerPath="2.0.0"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
@ -204,9 +204,9 @@
|
||||||
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
||||||
DllLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\bin\$(Configuration)\x86\aspnetcorev2_inprocess.dll"
|
DllLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\bin\$(Configuration)\Win32\aspnetcorev2_inprocess.dll"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
||||||
PdbLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\bin\$(Configuration)\x86\aspnetcorev2_inprocess.pdb"
|
PdbLocation="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\bin\$(Configuration)\Win32\aspnetcorev2_inprocess.pdb"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<RunShimComponents
|
<RunShimComponents
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue