Make native sln builds opt in rather than always on (#12050)
This commit is contained in:
parent
f9ca0ffd71
commit
a279af52d2
|
|
@ -151,7 +151,7 @@
|
||||||
<!-- Projects which reference Microsoft.AspNetCore.Mvc.Testing should import this targets file to ensure dependency .deps.json files are copied into test output. -->
|
<!-- Projects which reference Microsoft.AspNetCore.Mvc.Testing should import this targets file to ensure dependency .deps.json files are copied into test output. -->
|
||||||
<MvcTestingTargets>$(MSBuildThisFileDirectory)src\Mvc\Mvc.Testing\src\Microsoft.AspNetCore.Mvc.Testing.targets</MvcTestingTargets>
|
<MvcTestingTargets>$(MSBuildThisFileDirectory)src\Mvc\Mvc.Testing\src\Microsoft.AspNetCore.Mvc.Testing.targets</MvcTestingTargets>
|
||||||
<!-- IIS native projects can only be built on Windows for x86 and x64. -->
|
<!-- IIS native projects can only be built on Windows for x86 and x64. -->
|
||||||
<BuildIisNativeProjects Condition="('$(BuildNative)' == 'true' OR '$(BuildingInsideVisualStudio)' == 'true') AND '$(TargetOsName)' == 'win' AND ('$(TargetArchitecture)' == 'x86' OR '$(TargetArchitecture)' == 'x64')">true</BuildIisNativeProjects>
|
<BuildIisNativeProjects Condition="'$(BuildNative)' == 'true' AND '$(TargetOsName)' == 'win' AND ('$(TargetArchitecture)' == 'x86' OR '$(TargetArchitecture)' == 'x64')">true</BuildIisNativeProjects>
|
||||||
<!-- This property is shared by several projects to layout the AspNetCore.App targeting pack for installers -->
|
<!-- This property is shared by several projects to layout the AspNetCore.App targeting pack for installers -->
|
||||||
<TargetingPackLayoutRoot>$(ArtifactsObjDir)TargetingPack.Layout\$(Configuration)\</TargetingPackLayoutRoot>
|
<TargetingPackLayoutRoot>$(ArtifactsObjDir)TargetingPack.Layout\$(Configuration)\</TargetingPackLayoutRoot>
|
||||||
<!-- This property is shared by several projects to layout the AspNetCore.App shared framework for installers -->
|
<!-- This property is shared by several projects to layout the AspNetCore.App shared framework for installers -->
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
<!-- This file is autogenerated -->
|
<!-- This file is autogenerated -->
|
||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
<BuildIisNativeProjects Condition="'$(SolutionName)' == 'IISIntegration'">true</BuildIisNativeProjects>
|
||||||
<PackNativeAssets Condition="'$(BuildIisNativeProjects)' == 'true'">true</PackNativeAssets>
|
<PackNativeAssets Condition="'$(BuildIisNativeProjects)' == 'true'">true</PackNativeAssets>
|
||||||
<PackNativeAssets Condition="'$(BuildIisNativeProjects)' != 'true'">false</PackNativeAssets>
|
<PackNativeAssets Condition="'$(BuildIisNativeProjects)' != 'true'">false</PackNativeAssets>
|
||||||
<NativePlatform Condition="'$(Platform)' == 'AnyCPU'">x64</NativePlatform>
|
<NativePlatform Condition="'$(Platform)' == 'AnyCPU'">x64</NativePlatform>
|
||||||
|
|
@ -10,215 +11,215 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Components
|
<Components
|
||||||
Platform="x64"
|
Platform="x64"
|
||||||
VCPlatform="x64"
|
VCPlatform="x64"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2"
|
NativeAsset="aspnetcorev2"
|
||||||
ProjectName="AspNetCore.vcxproj"
|
ProjectName="AspNetCore.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2Shim"
|
PropetyName="AspNetCoreModuleV2Shim"
|
||||||
OutDirName="AspNetCoreModuleShim"
|
OutDirName="AspNetCoreModuleShim"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.dll"
|
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.pdb"
|
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.pdb"
|
||||||
/>
|
/>
|
||||||
<Components
|
<Components
|
||||||
Platform="x86"
|
Platform="x86"
|
||||||
VCPlatform="Win32"
|
VCPlatform="Win32"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2"
|
NativeAsset="aspnetcorev2"
|
||||||
ProjectName="AspNetCore.vcxproj"
|
ProjectName="AspNetCore.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2Shim"
|
PropetyName="AspNetCoreModuleV2Shim"
|
||||||
OutDirName="AspNetCoreModuleShim"
|
OutDirName="AspNetCoreModuleShim"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.dll"
|
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.pdb"
|
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.pdb"
|
||||||
/>
|
/>
|
||||||
<Components
|
<Components
|
||||||
Platform="x64"
|
Platform="x64"
|
||||||
VCPlatform="x64"
|
VCPlatform="x64"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_inprocess"
|
NativeAsset="aspnetcorev2_inprocess"
|
||||||
ProjectName="InProcessRequestHandler.vcxproj"
|
ProjectName="InProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
||||||
OutDirName="InProcessRequestHandler"
|
OutDirName="InProcessRequestHandler"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.dll"
|
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
||||||
/>
|
/>
|
||||||
<Components
|
<Components
|
||||||
Platform="x86"
|
Platform="x86"
|
||||||
VCPlatform="Win32"
|
VCPlatform="Win32"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_inprocess"
|
NativeAsset="aspnetcorev2_inprocess"
|
||||||
ProjectName="InProcessRequestHandler.vcxproj"
|
ProjectName="InProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
||||||
OutDirName="InProcessRequestHandler"
|
OutDirName="InProcessRequestHandler"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.dll"
|
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
||||||
/>
|
/>
|
||||||
<Components
|
<Components
|
||||||
Platform="x64"
|
Platform="x64"
|
||||||
VCPlatform="x64"
|
VCPlatform="x64"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_outofprocess"
|
NativeAsset="aspnetcorev2_outofprocess"
|
||||||
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
||||||
OutDirName="OutOfProcessRequestHandler"
|
OutDirName="OutOfProcessRequestHandler"
|
||||||
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
||||||
/>
|
/>
|
||||||
<Components
|
<Components
|
||||||
Platform="x86"
|
Platform="x86"
|
||||||
VCPlatform="Win32"
|
VCPlatform="Win32"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_outofprocess"
|
NativeAsset="aspnetcorev2_outofprocess"
|
||||||
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
||||||
OutDirName="OutOfProcessRequestHandler"
|
OutDirName="OutOfProcessRequestHandler"
|
||||||
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<ShimComponents
|
<ShimComponents
|
||||||
Platform="x64"
|
Platform="x64"
|
||||||
VCPlatform="x64"
|
VCPlatform="x64"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2"
|
NativeAsset="aspnetcorev2"
|
||||||
ProjectName="AspNetCore.vcxproj"
|
ProjectName="AspNetCore.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2Shim"
|
PropetyName="AspNetCoreModuleV2Shim"
|
||||||
OutDirName="AspNetCoreModuleShim"
|
OutDirName="AspNetCoreModuleShim"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.dll"
|
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.pdb"
|
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\x64\$(Configuration)\aspnetcorev2.pdb"
|
||||||
/>
|
/>
|
||||||
<ShimComponents
|
<ShimComponents
|
||||||
Platform="x86"
|
Platform="x86"
|
||||||
VCPlatform="Win32"
|
VCPlatform="Win32"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2"
|
NativeAsset="aspnetcorev2"
|
||||||
ProjectName="AspNetCore.vcxproj"
|
ProjectName="AspNetCore.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2Shim"
|
PropetyName="AspNetCoreModuleV2Shim"
|
||||||
OutDirName="AspNetCoreModuleShim"
|
OutDirName="AspNetCoreModuleShim"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.dll"
|
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.pdb"
|
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\Win32\$(Configuration)\aspnetcorev2.pdb"
|
||||||
/>
|
/>
|
||||||
<ShimComponents
|
<ShimComponents
|
||||||
Platform="x64"
|
Platform="x64"
|
||||||
VCPlatform="x64"
|
VCPlatform="x64"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_outofprocess"
|
NativeAsset="aspnetcorev2_outofprocess"
|
||||||
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
||||||
OutDirName="OutOfProcessRequestHandler"
|
OutDirName="OutOfProcessRequestHandler"
|
||||||
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
||||||
/>
|
/>
|
||||||
<ShimComponents
|
<ShimComponents
|
||||||
Platform="x86"
|
Platform="x86"
|
||||||
VCPlatform="Win32"
|
VCPlatform="Win32"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_outofprocess"
|
NativeAsset="aspnetcorev2_outofprocess"
|
||||||
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
||||||
OutDirName="OutOfProcessRequestHandler"
|
OutDirName="OutOfProcessRequestHandler"
|
||||||
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<InProcessComponents
|
<InProcessComponents
|
||||||
Platform="x64"
|
Platform="x64"
|
||||||
VCPlatform="x64"
|
VCPlatform="x64"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_inprocess"
|
NativeAsset="aspnetcorev2_inprocess"
|
||||||
ProjectName="InProcessRequestHandler.vcxproj"
|
ProjectName="InProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
||||||
OutDirName="InProcessRequestHandler"
|
OutDirName="InProcessRequestHandler"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.dll"
|
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\x64\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
||||||
/>
|
/>
|
||||||
<InProcessComponents
|
<InProcessComponents
|
||||||
Platform="x86"
|
Platform="x86"
|
||||||
VCPlatform="Win32"
|
VCPlatform="Win32"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_inprocess"
|
NativeAsset="aspnetcorev2_inprocess"
|
||||||
ProjectName="InProcessRequestHandler.vcxproj"
|
ProjectName="InProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
||||||
OutDirName="InProcessRequestHandler"
|
OutDirName="InProcessRequestHandler"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.dll"
|
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\Win32\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<RunShimComponents
|
<RunShimComponents
|
||||||
Platform="$(NativePlatform)"
|
Platform="$(NativePlatform)"
|
||||||
VCPlatform="$(NativeVCPlatform)"
|
VCPlatform="$(NativeVCPlatform)"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2"
|
NativeAsset="aspnetcorev2"
|
||||||
ProjectName="AspNetCore.vcxproj"
|
ProjectName="AspNetCore.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2Shim"
|
PropetyName="AspNetCoreModuleV2Shim"
|
||||||
OutDirName="AspNetCoreModuleShim"
|
OutDirName="AspNetCoreModuleShim"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\AspNetCore\AspNetCore.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2.dll"
|
DllLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2.pdb"
|
PdbLocation="$(ArtifactsBinDir)AspNetCoreModuleShim\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2.pdb"
|
||||||
/>
|
/>
|
||||||
<RunShimComponents
|
<RunShimComponents
|
||||||
Platform="$(NativePlatform)"
|
Platform="$(NativePlatform)"
|
||||||
VCPlatform="$(NativeVCPlatform)"
|
VCPlatform="$(NativeVCPlatform)"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_outofprocess"
|
NativeAsset="aspnetcorev2_outofprocess"
|
||||||
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
ProjectName="OutOfProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
PropetyName="AspNetCoreModuleV2OutOfProcessHandler"
|
||||||
OutDirName="OutOfProcessRequestHandler"
|
OutDirName="OutOfProcessRequestHandler"
|
||||||
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
PackageSubPath="$(AspNetCoreModuleOutOfProcessVersion)\"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\OutOfProcessRequestHandler\OutOfProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
DllLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_outofprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)OutOfProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_outofprocess.pdb"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<RunInProcessComponents
|
<RunInProcessComponents
|
||||||
Platform="$(NativePlatform)"
|
Platform="$(NativePlatform)"
|
||||||
VCPlatform="$(NativeVCPlatform)"
|
VCPlatform="$(NativeVCPlatform)"
|
||||||
BaseOutputPath="AspNetCoreModuleV2"
|
BaseOutputPath="AspNetCoreModuleV2"
|
||||||
NativeAsset="aspnetcorev2_inprocess"
|
NativeAsset="aspnetcorev2_inprocess"
|
||||||
ProjectName="InProcessRequestHandler.vcxproj"
|
ProjectName="InProcessRequestHandler.vcxproj"
|
||||||
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
PropetyName="AspNetCoreModuleV2InProcessHandler"
|
||||||
OutDirName="InProcessRequestHandler"
|
OutDirName="InProcessRequestHandler"
|
||||||
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
ProjectDirectory="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler"
|
||||||
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
Include="$(MSBuildThisFileDirectory)..\AspNetCoreModuleV2\InProcessRequestHandler\InProcessRequestHandler.vcxproj"
|
||||||
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_inprocess.dll"
|
DllLocation="$(ArtifactsBinDir)InProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_inprocess.dll"
|
||||||
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
PdbLocation="$(ArtifactsBinDir)InProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_inprocess.pdb"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
||||||
<AspNetCoreModuleV2ShimDll>$(ArtifactsBinDir)AspNetCoreModuleShim\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2.dll</AspNetCoreModuleV2ShimDll>
|
<AspNetCoreModuleV2ShimDll>$(ArtifactsBinDir)AspNetCoreModuleShim\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2.dll</AspNetCoreModuleV2ShimDll>
|
||||||
<AspNetCoreModuleV2InProcessHandlerDll>$(ArtifactsBinDir)InProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_inprocess.dll</AspNetCoreModuleV2InProcessHandlerDll>
|
<AspNetCoreModuleV2InProcessHandlerDll>$(ArtifactsBinDir)InProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_inprocess.dll</AspNetCoreModuleV2InProcessHandlerDll>
|
||||||
<AspNetCoreModuleV2OutOfProcessHandlerDll>$(ArtifactsBinDir)OutOfProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_outofprocess.dll</AspNetCoreModuleV2OutOfProcessHandlerDll>
|
<AspNetCoreModuleV2OutOfProcessHandlerDll>$(ArtifactsBinDir)OutOfProcessRequestHandler\$(NativeVCPlatform)\$(Configuration)\aspnetcorev2_outofprocess.dll</AspNetCoreModuleV2OutOfProcessHandlerDll>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue