Move Symbols package creation to redist target
This commit is contained in:
parent
28d83da782
commit
283a80dff0
2 changed files with 10 additions and 4 deletions
|
@ -23,13 +23,9 @@
|
||||||
ProjectPath="$(RootProject)" />
|
ProjectPath="$(RootProject)" />
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<FilesToCopy Include="$(OutputDirectory)/**/*" />
|
|
||||||
<PdbsToClean Include="$(OutputDirectory)/sdk/**/*.pdb" />
|
<PdbsToClean Include="$(OutputDirectory)/sdk/**/*.pdb" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Copy SourceFiles="@(FilesToCopy)"
|
|
||||||
DestinationFiles="@(FilesToCopy->'$(SymbolsDirectory)\%(RecursiveDir)%(Filename)%(Extension)')" />
|
|
||||||
|
|
||||||
<Delete Files="@(PdbsToClean)" />
|
<Delete Files="@(PdbsToClean)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
|
|
@ -178,4 +178,14 @@
|
||||||
|
|
||||||
<Delete Files="@(_VbcPath)" />
|
<Delete Files="@(_VbcPath)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
<Target Name="CreateSymbolsDirectory"
|
||||||
|
AfterTargets="CrossgenPublishDir">
|
||||||
|
<ItemGroup>
|
||||||
|
<_AllSdkFiles Include="$(OutputDirectory)/**/*" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Copy SourceFiles="@(_AllSdkFiles)"
|
||||||
|
DestinationFiles="@(_AllSdkFiles->'$(SymbolsDirectory)\%(RecursiveDir)%(Filename)%(Extension)')" />
|
||||||
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue