Where is CustomAction.targets in Beta3?
Thanks,
Pablo
Thanks,
Pablo
We no longer have the CustomAction.targets. However, you can go ahead and create your own CustomAction.Targets and import this into the Team Build Proj file.
For example, you would add the following into the Team Build Proj file to import the custom action target.
<Import Project="CustomAction.Targets" />
And then define this new CustomAction.Targets file and check it into source control in the Team Build Type folder.
In the custom action target you would probably go and override some of the build steps, for eg. the AfterCompile step as follows,
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="AfterCompile">
....
</Target>
</Project>
Alternatively, you could just stick all of your customized steps inside the Team Build Proj file.
Thanks,
Amit
Thanks!!