Produce Corresponding symbols in installer output for ANCM (#9262)
This commit is contained in:
parent
45960711ec
commit
8d987241de
|
|
@ -11,6 +11,8 @@
|
|||
<SuppressIces>ICE03</SuppressIces>
|
||||
<DisableGuidGeneration>true</DisableGuidGeneration>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<TempPlatform Condition="'$(Platform)' == 'x64'">x64</TempPlatform>
|
||||
<TempPlatform Condition="'$(Platform)' == 'x86'">Win32</TempPlatform>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
@ -51,6 +53,15 @@
|
|||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CopyBuildOutputToArtifactDirectory"
|
||||
Condition=" '$(IsProductInstaller)' == 'true' "
|
||||
AfterTargets="Build">
|
||||
<ItemGroup>
|
||||
<BuildContentForAncm Include="$(RepositoryRoot)src\Servers\IIS\AspNetCoreModuleV2\AspNetCore\bin\$(Configuration)\$(TempPlatform)\*.*" />
|
||||
</ItemGroup>
|
||||
<Copy SourceFiles="@(BuildContentForAncm)" DestinationFolder="$(InstallersOutputPath)\IISExpressSymbols\$(TempPlatform)" />
|
||||
</Target>
|
||||
|
||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Directory.Build.targets))\Directory.Build.targets" />
|
||||
<Import Project="..\build\settings.props" />
|
||||
<Import Project="..\build\versions.props" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue