Where is CustomAction.targets in Beta3?

I want to migrate the target/tasks we use to have in between the different build "steps" (defined in CustomAction.targets) in Beta2 to Beta3. But Beta3 doesn't seem to create a CustomAction.targets file to customize this. Is this in a different file now?

Thanks,
Pablo

[276 byte] By [PabloRincon] at [2007-12-17]
# 1
We do not have an explicit CustomAction.targets file now. All your custom tasks can now be inserted in the TFSBuild.proj (erstwhile called TeamBuild.proj) in custom targets like BeforeClean, AfterClean etc.

Anutthara at 2007-9-9 > top of Msdn Tech,Visual Studio Team System,Team Foundation Server - General...
# 2
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

AmitChattopadhyay at 2007-9-9 > top of Msdn Tech,Visual Studio Team System,Team Foundation Server - General...
# 3
Got it. It was nice to have them all in that file though, now I have to remember the names...

Thanks!!

PabloRincon at 2007-9-9 > top of Msdn Tech,Visual Studio Team System,Team Foundation Server - General...
# 4
Here is a blog that helps you upgrade from beta2 to beta3 automatically - http://blogs.msdn.com/manishagarwal/archive/2005/09/21/472229.aspx
Anutthara at 2007-9-9 > top of Msdn Tech,Visual Studio Team System,Team Foundation Server - General...

Visual Studio Team System

Site Classified