Search code examples
.net.net-3.5c++-cli.net-client-profile

C++/CLI: is it possible to target the .NET 3.5 Client Profile using Visual Studio 2008?


I have a C++/CLI library that I'd like to target the .NET 3.5 SP1 Client Profile, but the client profile does not appear in the list of available frameworks. Is it possible to do this?

enter image description here


Solution

  • It's possible – if not through the UI, then at least by manually editing your App.config file:

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <startup>
            <supportedRuntime version="v2.0.50727" sku="Client" />
        </startup>
    </configuration>
    

    Edit your App.config file so that its supportedRuntime element matches the above.