I am trying to build a ClickOnce deployment that includes the 3.0 framework as a dependency. I have dotnetfx3.exe in C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\NETFX30 (my registry entry for sdkInstallRootv2.0 points to C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\).
I have an entry in the msbuild project like this:
Code Snippet
<BootstrapperFile Include="Microsoft.Net.Framework.2.0">
<ProductName>.NET Framework 2.0</ProductName>
</BootstrapperFile>
but I can't figure out what I need to do to get the 3.0 framework included.
Documentation is frustratingly non-existant for using msbuild, which I find surprising considering that trying to use Visual Studio for targeting multiple environments is awkward at best.
Anyone know how I can get msbuild to include 3.0?
Thanks.
Colin