VB6 Integration into RTC build
Hi,
Anyone had experience of integrating VB6 projects into RTC?
Looking to see if i can use msbuild and configurate the RTC VS build defenition to achieve this.
<Project DefaultTargets="Execute" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="FreeToDev.MSBuildTasks.tasks"/>
<ItemGroup>
<ProjectsToBuild Include="C:\MyVB6Project.vbp">
<OutDir>c:\bob</OutDir>
</ProjectsToBuild>
<ProjectsToBuild Include="C:\MyVB6Project2.vbp"/>
</ItemGroup>
<Target Name="Execute">
<BuildVB6 Projects="@(ProjectsToBuild)"/>
</Target>
</Project>