Merge pull request #16 from nventive/dev/jela/ref-assembly-support

Adjust for PDB files in ReferenceCopyLocalPaths
This commit is contained in:
Jérôme Laban 2018-07-13 08:31:29 -04:00 коммит произвёл GitHub
Родитель e02d771912 7cda784806
Коммит aaa30b06c4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -22,6 +22,14 @@
<UsingTask AssemblyFile="$(WasmShellTasksPath)/Uno.Wasm.Bootstrap.v0.dll" TaskName="Uno.Wasm.Bootstrap.ShellTask_v0" />
<Target Name="BuildDist" AfterTargets="AfterBuild">
<ItemGroup>
<!-- Filter ReferenceCopyLocalPaths as it may contain pdbs as well -->
<_AssembliesForReferenceCopyLocalPaths Include="@(ReferenceCopyLocalPaths)"
Condition="'%(Extension)' == '.dll'" />
</ItemGroup>
<ShellTask_v0
Assembly="$(IntermediateOutputPath)$(TargetFileName)"
OutputPath="$(OutputPath)"
@ -33,7 +41,7 @@
RuntimeConfiguration="$(MonoWasmRuntimeConfiguration)"
RuntimeDebuggerEnabled="$(MonoRuntimeDebuggerEnabled)"
Assets="@(Content)"
ReferencePath="@(ReferenceCopyLocalPaths)" />
ReferencePath="@(_AssembliesForReferenceCopyLocalPaths)" />
</Target>
<Target Name="_CleanDist" BeforeTargets="Clean">