Reputation: 3089
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
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