Joel Barsotti
Joel Barsotti

Reputation: 3089

How can I check-in the dll from a build into TFS 2015 with the new vNext Build?

I have a native c++ project that creates a DLL that is then used with a c# project.

Previously I was using some custom actions in XAML to check out the file replace it with the updated binary and then check it back in.

I can't seem to figure out how to do the same thing with new "scriptable" vnext build engine.

Upvotes: 0

Views: 389

Answers (1)

ds19
ds19

Reputation: 3165

After the build step that is actually building your C++ project add a new step (Batch Script, Command Line or PowerShell) that calls Checkout command then the Checkin command.

Upvotes: 2

Related Questions