Is it possible to access the TFS API using C ++ (Native)

Is there a way to access the TFS API using Native C ++? I can access it using C # quite easily, but I was wondering if anyone tried to try it through native C ++.

My other option is to use C ++ / CLI - is anyone really lucky?

Cheers, Dan.

+4
source share
1 answer

The TFS API is defined in managed code, so you need some managed level to access it. There should be no problems accessing the API from C ++ / CLI.

+4
source

Source: https://habr.com/ru/post/1389817/


All Articles