I had to download version 2.5 and used other directions to create static libraries. A debug build compiles just fine, but a release build gives me an unresolved external:
error LNK2001: unresolved external symbol "public: static class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const web::http::methods::POST" (?POST@methods@http@web@@2V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@B)
It worked fine in version 2.4, but we had to upgrade to 2.5 because of an XP bug.
I have to use a static link because the code needs to be in 1 all inclusive dll to use in a WiX extension DLL.
error LNK2001: unresolved external symbol "public: static class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const web::http::methods::POST" (?POST@methods@http@web@@2V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@B)
It worked fine in version 2.4, but we had to upgrade to 2.5 because of an XP bug.
I have to use a static link because the code needs to be in 1 all inclusive dll to use in a WiX extension DLL.