show/hide this revision's text 2 added 7 characters in body

You will need to change your project settings in Visual Studio to create a DLL. In addition you will need to define dll entry points.

However, the VSS is a set of COM API's, so you can call them directly from C# with pinvoke, instead of using this wrapper C++ executable.

Since the SDK only contains libs, not DLL's you'll have to create a dll project to use it.

This is a good blog-how-to.

You'll need to download the VSS SDK (if you haven't already).

Decent article on pinvoke.

Hope this helps.

show/hide this revision's text 1

You will need to change your project settings in Visual Studio to create a DLL. In addition you will need to define dll entry points.

However, the VSS is a set of COM API's, so you can call them directly from C# with pinvoke, instead of using this wrapper C++ executable.

You'll need to download the VSS SDK (if you haven't already).

Decent article on pinvoke.

Hope this helps.