hello there, a project gets built fine from Visual Studio without a problem from developers work station. Now we need to more it to DEV and UAT server. I've been struggling all day trying to get my ASP.NET project built with msbuild on a server with no Visual Studio installed (dev tools not permitted on servers) -
The type or namespace name 'Optimization' does not exist in the namespace 'System.Web'
The type or namespace name 'DotNetOpenAuth' could not be found
Couple attemps were made 1: Install Windows SDK - appears there has been a lot of discussions from Stackoverflow (Related but not exactly)[^]. You'd also need to ddd to environment variables PATH C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\ C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools (This did NOT help) 2: gacutil to install the dll's? (no vs command prompt - as said, no dev tool/Visual Studio permitted on server) 3: copy the dlls' to (i.e. same folder as MSBuild.exe): C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\ (This did NOT help) 4: Copy local = true (This did NOT help - the dll's apparent msbuild can't find already in bin folder of the ASP.NET application) It appears to be a bug with msbuild[^] Anyone has experience with this?