Files
egtdotnetbasis/EgtDotNETBasis.targets
Emmanuele Sassi 22b1058a1e EgtDotNETBasis 2.7.11.20:
- aggiunta configurazione corretta per copia dll nativa in RemoteDebug
2025-11-17 13:31:37 +01:00

14 lines
680 B
XML

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Condition="'$(ConfigurationName)' == 'Debug'">
<!-- Copia le DLL di ExtLib in output -->
<Content Include="$(MSBuildThisFileDirectory)native\EgtBasisD*.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(ConfigurationName)' == 'Release' OR '$(ConfigurationName)' == 'RemoteDebug'">
<!-- Copia le DLL di ExtLib in output -->
<Content Include="$(MSBuildThisFileDirectory)native\EgtBasisR*.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>