Error to connect using driver c++ in Windows

300 views
Skip to first unread message

Ariel David Calo

unread,
Oct 27, 2014, 10:02:10 AM10/27/14
to mongod...@googlegroups.com
Hi all

I continue with the same problem. I need your help. 

This is my problem.

My problem is Windows plataform. I had compile mongoDB driver c++ with: 

Microsoft Visual Studio Ultimate 2012, 
scons 2.3.2, 
mongo drive 26compat-2.6.5
boost 1.56

over Windows 7 64 bits (Spanish) and Windows 7 32 bits (Spanish)

I compile with the following options : 

C:\Python27\Scripts\scons --32 --release --full --use-system-boost --sharedclient --dynamic-windows --prefix=C:\mongo_driver_legacy\mongo_client_32_release --cpppath=C:\Temp\boost_1_56_0 --libpath=C:\Temp\boost_1_56_0\stage\lib install-mongoclient

I am using the shared library with the DLL.

But when I execute the application I get the following error:

2014-08-27T10:27:43.916-0300 getaddrinfo("???") failed: errno:11001 Host inconnu.
can't connect couldn't connect to server É?ù:27017(0.0.0.0), address resolved to 0.0.0.0

I tried run the program in Visual Studio 2012 and QT 5.3.2. The result is the same.

-----------------------------------------------------------------
Visual Studio 2012

#include "stdafx.h"
#include <cstdlib>
#include <iostream>
#include "mongo/client/dbclient.h"

void run() {
  mongo::DBClientConnection c;
  c.connect("localhost");
}

int _tmain(int argc, _TCHAR* argv[])
{
mongo::client::initialize();
    try {
        run();
        std::cout << "connected ok" << std::endl;
    } catch( const mongo::DBException &e ) {
        std::cout << "caught " << e.what() << std::endl;
    }
return 0;
}
------------------------------------------------------------------

QT 5.3.2

#include <QCoreApplication>
#include <QtCore>
#include <QTextCodec>
#include <qdebug.h>
#include <iostream>
#include <tchar.h>

#include "mongo/client/dbclient.h"
#include "mongo/bson/bson.h"

using namespace mongo;
using namespace bson;

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    try
    {

        QString hostname="localhost";
        QByteArray utf8 = hostname.toUtf8();

        std::string host(std::string(utf8.data(), utf8.size()));

        std::cout << host << std::endl;

        DBClientConnection db(true);
        db.connect(host);
    }
    catch(const DBException &e)
    {
        qDebug() << e.what();
    }

    return a.exec();
}

--------------------------------------------------------------------------------------

I run the application in debug step by step and when I am in the function connect (dbclientinterface.h line 1242):

void connect(const string& serverHostname) 
{
string errmsg;

if( !connect(HostAndPort(serverHostname), errmsg) )
throw ConnectException(string("can't connect ") + errmsg);
}

When I check the value of serverHostname in the debugger, the value seem a little bit different than "localhost", there is some random character before and after the value localhost.

serverHostname parameter is: "Ð\030\210\000localhost\000G\000îp\005\000\t\000\000\000\017\000\000\000z(G ÐûG\000¤üG\000\225o\005\000\002\000\000\000´üG\000ÉJ\005\000\001\000\000\000 \004\210\000\020í\207\000ª(G \000\000\000\000\000\000\000\000\000àý~\000\000\000\000\010`p\214\000\000\000\000\000\000H\000\000\000\000\000xüG\000$N7,øüG\000@L\005\000ö5\005 \000\000\000\000¼üG\000\rL\005\000ÈüG\000j3ât\000àý~\010ýG\000r\237Uw\000àý~Û \220_\000\000\000\000\000\000\000\000\000àý~\000\000\000\000\000\000\000\000\000\000\000\000ÔüG\000\000\000\000\000ÿÿÿÿõqYw\203\030\203(\000\000\000\000 ýG\000E\237Uw\000L\005\000\000àý~\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000L\005\000\000àý~\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\..." @0x47fc34

Do you have any idea ? 

Thanks in advance

Andrew Morrow

unread,
Oct 28, 2014, 8:16:16 AM10/28/14
to mongod...@googlegroups.com

Hi -

Are you building your application against the same windows runtime library as the driver library? You configured with --dynamic-windows, so you should be building your application with the /MD flag, or whatever IDE setting results in the same configuration.

Thanks,
Andrew


--
You received this message because you are subscribed to the Google Groups "mongodb-user"
group.
 
For other MongoDB technical support options, see: http://www.mongodb.org/about/support/.
---
You received this message because you are subscribed to the Google Groups "mongodb-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mongodb-user...@googlegroups.com.
To post to this group, send email to mongod...@googlegroups.com.
Visit this group at http://groups.google.com/group/mongodb-user.
To view this discussion on the web visit https://groups.google.com/d/msgid/mongodb-user/7345c764-b3ec-49a2-af66-9a5a67bce472%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Ariel David Calo

unread,
Oct 28, 2014, 4:09:38 PM10/28/14
to mongod...@googlegroups.com
Hello Andrew.

I setting /MD in Configuration Properties -> c/c++ -> Code Generation -> Runtime Library : Multi-threaded DLL (/MD) in property proyect Visual Studio 2012

Are there other places where I setting it???

I'm no expert in Visual Studio.

Thank you

Andrew Morrow

unread,
Oct 28, 2014, 4:19:02 PM10/28/14
to mongod...@googlegroups.com

Hi -

Could you provide the exact compiler and linker invocations that Visual Studio is emitting when building your example?

Thanks,
Andrew


Ariel David Calo

unread,
Oct 28, 2014, 5:30:24 PM10/28/14
to mongod...@googlegroups.com
This is the compiler and linker invocation. Thank you.

1>------ Build started: Project: TestMongoDB, Configuration: Debug Win32 ------
1>  stdafx.cpp
1>  TestMongoDB.cpp
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\assert_util.h(71): warning C4251: 'mongo::ExceptionInfo::msg' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of struct 'mongo::ExceptionInfo'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\assert_util.h(121): warning C4251: 'mongo::DBException::_shard' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBException'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\logger\logstream_builder.h(131): warning C4251: 'mongo::logger::LogstreamBuilder::_contextName' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::logger::LogstreamBuilder'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\logger\logstream_builder.h(132): warning C4251: 'mongo::logger::LogstreamBuilder::_severity' : class 'mongo::logger::LogSeverity' needs to have dll-interface to be used by clients of class 'mongo::logger::LogstreamBuilder'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\logger\log_severity.h(32) : see declaration of 'mongo::logger::LogSeverity'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\logger\logstream_builder.h(133): warning C4251: 'mongo::logger::LogstreamBuilder::_baseMessage' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::logger::LogstreamBuilder'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobj.h(557): warning C4251: 'mongo::BSONObj::_holder' : class 'boost::intrusive_ptr<T>' needs to have dll-interface to be used by clients of class 'mongo::BSONObj'
1>          with
1>          [
1>              T=mongo::BSONObj::Holder
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonmisc.h(201): warning C4275: non dll-interface class 'boost::noncopyable_::noncopyable' used as base for dll-interface class 'mongo::BSONObjBuilderValueStream'
1>          c:\temp\boost_1_56_0\boost\core\noncopyable.hpp(24) : see declaration of 'boost::noncopyable_::noncopyable'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonmisc.h(201) : see declaration of 'mongo::BSONObjBuilderValueStream'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonmisc.h(233): warning C4251: 'mongo::BSONObjBuilderValueStream::_fieldName' : class 'mongo::StringData' needs to have dll-interface to be used by clients of class 'mongo::BSONObjBuilderValueStream'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\base\string_data.h(43) : see declaration of 'mongo::StringData'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonmisc.h(238): warning C4251: 'mongo::BSONObjBuilderValueStream::_subobj' : class 'std::auto_ptr<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::BSONObjBuilderValueStream'
1>          with
1>          [
1>              _Ty=mongo::BSONObjBuilder
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobjbuilder.h(52): warning C4275: non dll-interface class 'mongo::BSONBuilderBase' used as base for dll-interface class 'mongo::BSONObjBuilder'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bson_builder_base.h(29) : see declaration of 'mongo::BSONBuilderBase'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobjbuilder.h(52) : see declaration of 'mongo::BSONObjBuilder'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobjbuilder.h(52): warning C4275: non dll-interface class 'boost::noncopyable_::noncopyable' used as base for dll-interface class 'mongo::BSONObjBuilder'
1>          c:\temp\boost_1_56_0\boost\core\noncopyable.hpp(24) : see declaration of 'boost::noncopyable_::noncopyable'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobjbuilder.h(52) : see declaration of 'mongo::BSONObjBuilder'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobjbuilder.h(695): warning C4251: 'mongo::BSONObjBuilder::_buf' : class 'mongo::_BufBuilder<Allocator>' needs to have dll-interface to be used by clients of class 'mongo::BSONObjBuilder'
1>          with
1>          [
1>              Allocator=mongo::TrivialAllocator
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobjbuilder.h(701): warning C4251: 'mongo::BSONObjBuilder::numStrs' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::BSONObjBuilder'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\sock.h(286): warning C4251: 'mongo::Socket::_local' : struct 'mongo::SockAddr' needs to have dll-interface to be used by clients of class 'mongo::Socket'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\sock.h(93) : see declaration of 'mongo::SockAddr'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\sock.h(287): warning C4251: 'mongo::Socket::_remote' : struct 'mongo::SockAddr' needs to have dll-interface to be used by clients of class 'mongo::Socket'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\sock.h(93) : see declaration of 'mongo::SockAddr'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\sock.h(298): warning C4251: 'mongo::Socket::_logLevel' : class 'mongo::logger::LogSeverity' needs to have dll-interface to be used by clients of class 'mongo::Socket'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\logger\log_severity.h(32) : see declaration of 'mongo::logger::LogSeverity'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(322): warning C4251: 'mongo::ConnectionString::_servers' : class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::ConnectionString'
1>          with
1>          [
1>              _Ty=mongo::HostAndPort
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(323): warning C4251: 'mongo::ConnectionString::_string' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::ConnectionString'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(324): warning C4251: 'mongo::ConnectionString::_setName' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::ConnectionString'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(326): warning C4251: 'mongo::ConnectionString::_connectHookMutex' : class 'mongo::mutex' needs to have dll-interface to be used by clients of class 'mongo::ConnectionString'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\concurrency\mutex.h(74) : see declaration of 'mongo::mutex'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(352): warning C4251: 'mongo::Query::ReadPrefField' : class 'mongo::BSONField<T>' needs to have dll-interface to be used by clients of class 'mongo::Query'
1>          with
1>          [
1>              T=mongo::BSONObj
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(353): warning C4251: 'mongo::Query::ReadPrefModeField' : class 'mongo::BSONField<T>' needs to have dll-interface to be used by clients of class 'mongo::Query'
1>          with
1>          [
1>              T=std::string
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(354): warning C4251: 'mongo::Query::ReadPrefTagsField' : class 'mongo::BSONField<T>' needs to have dll-interface to be used by clients of class 'mongo::Query'
1>          with
1>          [
1>              T=mongo::BSONArray
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(474): warning C4251: 'mongo::QuerySpec::_ns' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::QuerySpec'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(557): warning C4275: non dll-interface class 'boost::noncopyable_::noncopyable' used as base for dll-interface class 'mongo::DBClientInterface'
1>          c:\temp\boost_1_56_0\boost\core\noncopyable.hpp(24) : see declaration of 'boost::noncopyable_::noncopyable'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(557) : see declaration of 'mongo::DBClientInterface'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(601): warning C4251: 'mongo::DBClientWithCommands::_seenIndexes' : class 'std::set<_Kty>' needs to have dll-interface to be used by clients of class 'mongo::DBClientWithCommands'
1>          with
1>          [
1>              _Kty=std::string
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(604): warning C4251: 'mongo::DBClientWithCommands::_logLevel' : class 'mongo::logger::LogSeverity' needs to have dll-interface to be used by clients of class 'mongo::DBClientWithCommands'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\logger\log_severity.h(32) : see declaration of 'mongo::logger::LogSeverity'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(835): warning C4251: 'mongo::DBClientWithCommands::MRInline' : struct 'mongo::DBClientWithCommands::MROutput' needs to have dll-interface to be used by clients of class 'mongo::DBClientWithCommands'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(828) : see declaration of 'mongo::DBClientWithCommands::MROutput'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1046): warning C4251: 'mongo::DBClientWithCommands::_runCommandHook' : class 'boost::function<Signature>' needs to have dll-interface to be used by clients of class 'mongo::DBClientWithCommands'
1>          with
1>          [
1>              Signature=void (mongo::BSONObjBuilder *)
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1047): warning C4251: 'mongo::DBClientWithCommands::_postRunCommandHook' : class 'boost::function<Signature>' needs to have dll-interface to be used by clients of class 'mongo::DBClientWithCommands'
1>          with
1>          [
1>              Signature=void (const mongo::BSONObj &,const std::string &)
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1060): warning C4251: 'mongo::DBClientBase::ConnectionIdSequence' : class 'mongo::AtomicWord<_WordType>' needs to have dll-interface to be used by clients of class 'mongo::DBClientBase'
1>          with
1>          [
1>              _WordType=__int64
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1340): warning C4251: 'mongo::DBClientConnection::p' : class 'boost::scoped_ptr<T>' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          with
1>          [
1>              T=mongo::MessagingPort
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1341): warning C4251: 'mongo::DBClientConnection::server' : class 'boost::scoped_ptr<T>' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          with
1>          [
1>              T=mongo::SockAddr
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1344): warning C4251: 'mongo::DBClientConnection::autoReconnectBackoff' : class 'mongo::Backoff' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\time_support.h(104) : see declaration of 'mongo::Backoff'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1345): warning C4251: 'mongo::DBClientConnection::_server' : struct 'mongo::HostAndPort' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\hostandport.h(31) : see declaration of 'mongo::HostAndPort'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1346): warning C4251: 'mongo::DBClientConnection::_serverString' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1347): warning C4251: 'mongo::DBClientConnection::_serverAddrString' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1353): warning C4251: 'mongo::DBClientConnection::authCache' : class 'std::map<_Kty,_Ty>' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          with
1>          [
1>              _Kty=std::string,
1>              _Ty=mongo::BSONObj
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientinterface.h(1357): warning C4251: 'mongo::DBClientConnection::_numConnections' : struct 'mongo::AtomicUInt' needs to have dll-interface to be used by clients of class 'mongo::DBClientConnection'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\util\atomic_int.h(35) : see declaration of 'mongo::AtomicUInt'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(37): warning C4275: non dll-interface class 'boost::noncopyable_::noncopyable' used as base for dll-interface class 'mongo::DBClientCursorInterface'
1>          c:\temp\boost_1_56_0\boost\core\noncopyable.hpp(24) : see declaration of 'boost::noncopyable_::noncopyable'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(37) : see declaration of 'mongo::DBClientCursorInterface'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(222): warning C4251: 'mongo::DBClientCursor::batch' : class 'mongo::DBClientCursor::Batch' needs to have dll-interface to be used by clients of class 'mongo::DBClientCursor'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(205) : see declaration of 'mongo::DBClientCursor::Batch'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(224): warning C4251: 'mongo::DBClientCursor::_originalHost' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBClientCursor'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(225): warning C4251: 'mongo::DBClientCursor::ns' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBClientCursor'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(233): warning C4251: 'mongo::DBClientCursor::_putBack' : class 'std::stack<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::DBClientCursor'
1>          with
1>          [
1>              _Ty=mongo::BSONObj
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(237): warning C4251: 'mongo::DBClientCursor::_scopedHost' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBClientCursor'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclientcursor.h(238): warning C4251: 'mongo::DBClientCursor::_lazyHost' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBClientCursor'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(119): warning C4251: 'mongo::PoolForHost::_hostName' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::PoolForHost'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(120): warning C4251: 'mongo::PoolForHost::_pool' : class 'std::stack<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::PoolForHost'
1>          with
1>          [
1>              _Ty=mongo::PoolForHost::StoredConnection
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(153): warning C4275: non dll-interface class 'mongo::PeriodicTask' used as base for dll-interface class 'mongo::DBConnectionPool'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\background.h(131) : see declaration of 'mongo::PeriodicTask'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(153) : see declaration of 'mongo::DBConnectionPool'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(239): warning C4251: 'mongo::DBConnectionPool::_mutex' : class 'mongo::mutex' needs to have dll-interface to be used by clients of class 'mongo::DBConnectionPool'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\concurrency\mutex.h(74) : see declaration of 'mongo::mutex'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(240): warning C4251: 'mongo::DBConnectionPool::_name' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBConnectionPool'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(247): warning C4251: 'mongo::DBConnectionPool::_pools' : class 'std::map<_Kty,_Ty,_Pr>' needs to have dll-interface to be used by clients of class 'mongo::DBConnectionPool'
1>          with
1>          [
1>              _Kty=mongo::DBConnectionPool::PoolKey,
1>              _Ty=mongo::PoolForHost,
1>              _Pr=mongo::DBConnectionPool::poolKeyCompare
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(257): warning C4275: non dll-interface class 'boost::noncopyable_::noncopyable' used as base for dll-interface class 'mongo::AScopedConnection'
1>          c:\temp\boost_1_56_0\boost\core\noncopyable.hpp(24) : see declaration of 'boost::noncopyable_::noncopyable'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(257) : see declaration of 'mongo::AScopedConnection'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(277): warning C4251: 'mongo::AScopedConnection::_numConnections' : struct 'mongo::AtomicUInt' needs to have dll-interface to be used by clients of class 'mongo::AScopedConnection'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\util\atomic_int.h(35) : see declaration of 'mongo::AtomicUInt'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\connpool.h(361): warning C4251: 'mongo::ScopedDbConnection::_host' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::ScopedDbConnection'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(229): warning C4251: 'mongo::DBClientReplicaSet::_setName' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(231): warning C4251: 'mongo::DBClientReplicaSet::_masterHost' : struct 'mongo::HostAndPort' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\hostandport.h(31) : see declaration of 'mongo::HostAndPort'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(238): warning C4251: 'mongo::DBClientReplicaSet::_master' : class 'boost::shared_ptr<T>' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          with
1>          [
1>              T=mongo::DBClientConnection
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(241): warning C4251: 'mongo::DBClientReplicaSet::_lastSlaveOkHost' : struct 'mongo::HostAndPort' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\hostandport.h(31) : see declaration of 'mongo::HostAndPort'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(243): warning C4251: 'mongo::DBClientReplicaSet::_lastSlaveOkConn' : class 'boost::shared_ptr<T>' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          with
1>          [
1>              T=mongo::DBClientConnection
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(244): warning C4251: 'mongo::DBClientReplicaSet::_lastReadPref' : class 'boost::shared_ptr<T>' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          with
1>          [
1>              T=mongo::ReadPreferenceSetting
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(252): warning C4251: 'mongo::DBClientReplicaSet::_auths' : class 'std::map<_Kty,_Ty>' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          with
1>          [
1>              _Kty=std::string,
1>              _Ty=mongo::BSONObj
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(257): warning C4251: 'mongo::DBClientReplicaSet::_nodeSelectOracle' : class 'mongo::PseudoRandom' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\platform\random.h(27) : see declaration of 'mongo::PseudoRandom'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(273): warning C4251: 'mongo::DBClientReplicaSet::_lazyState' : class 'mongo::DBClientReplicaSet::LazyState' needs to have dll-interface to be used by clients of class 'mongo::DBClientReplicaSet'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(264) : see declaration of 'mongo::DBClientReplicaSet::LazyState'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\dbclient_rs.h(306): warning C4251: 'mongo::TagSet::_tags' : struct 'mongo::BSONArray' needs to have dll-interface to be used by clients of class 'mongo::TagSet'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\bson\bsonobj.h(587) : see declaration of 'mongo::BSONArray'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\gridfs.h(125): warning C4251: 'mongo::GridFS::_dbName' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::GridFS'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\gridfs.h(126): warning C4251: 'mongo::GridFS::_prefix' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::GridFS'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\gridfs.h(127): warning C4251: 'mongo::GridFS::_filesNS' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::GridFS'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\gridfs.h(128): warning C4251: 'mongo::GridFS::_chunksNS' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::GridFS'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(141): warning C4251: 'mongo::SyncClusterConnection::_address' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of class 'mongo::SyncClusterConnection'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(142): warning C4251: 'mongo::SyncClusterConnection::_connAddresses' : class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::SyncClusterConnection'
1>          with
1>          [
1>              _Ty=std::string
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(143): warning C4251: 'mongo::SyncClusterConnection::_conns' : class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::SyncClusterConnection'
1>          with
1>          [
1>              _Ty=mongo::DBClientConnection *
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(145): warning C4251: 'mongo::SyncClusterConnection::_lastErrors' : class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::SyncClusterConnection'
1>          with
1>          [
1>              _Ty=mongo::BSONObj
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(148): warning C4251: 'mongo::SyncClusterConnection::_customQueryHandler' : class 'boost::scoped_ptr<T>' needs to have dll-interface to be used by clients of class 'mongo::SyncClusterConnection'
1>          with
1>          [
1>              T=mongo::SyncClusterConnection::QueryHandler
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(150): warning C4251: 'mongo::SyncClusterConnection::_mutex' : class 'mongo::mutex' needs to have dll-interface to be used by clients of class 'mongo::SyncClusterConnection'
1>          c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\concurrency\mutex.h(74) : see declaration of 'mongo::mutex'
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(151): warning C4251: 'mongo::SyncClusterConnection::_lockTypes' : class 'std::map<_Kty,_Ty>' needs to have dll-interface to be used by clients of class 'mongo::SyncClusterConnection'
1>          with
1>          [
1>              _Kty=std::string,
1>              _Ty=int
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(205): warning C4251: 'mongo::UpdateNotTheSame::_addrs' : class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::UpdateNotTheSame'
1>          with
1>          [
1>              _Ty=std::string
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\client\syncclusterconnection.h(206): warning C4251: 'mongo::UpdateNotTheSame::_lastErrors' : class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class 'mongo::UpdateNotTheSame'
1>          with
1>          [
1>              _Ty=mongo::BSONObj
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\ssl_options.h(32): warning C4251: 'mongo::SSLGlobalParams::sslMode' : class 'mongo::AtomicWord<_WordType>' needs to have dll-interface to be used by clients of struct 'mongo::SSLGlobalParams'
1>          with
1>          [
1>              _WordType=int
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\ssl_options.h(34): warning C4251: 'mongo::SSLGlobalParams::sslPEMKeyFile' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of struct 'mongo::SSLGlobalParams'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\ssl_options.h(35): warning C4251: 'mongo::SSLGlobalParams::sslPEMKeyPassword' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of struct 'mongo::SSLGlobalParams'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\ssl_options.h(36): warning C4251: 'mongo::SSLGlobalParams::sslClusterFile' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of struct 'mongo::SSLGlobalParams'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\ssl_options.h(37): warning C4251: 'mongo::SSLGlobalParams::sslClusterPassword' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of struct 'mongo::SSLGlobalParams'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\ssl_options.h(38): warning C4251: 'mongo::SSLGlobalParams::sslCAFile' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of struct 'mongo::SSLGlobalParams'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>c:\mongo_driver_legacy\mongo_client_32_release\include\mongo\util\net\ssl_options.h(39): warning C4251: 'mongo::SSLGlobalParams::sslCRLFile' : class 'std::basic_string<_Elem,_Traits,_Alloc>' needs to have dll-interface to be used by clients of struct 'mongo::SSLGlobalParams'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>,
1>              _Alloc=std::allocator<char>
1>          ]
1>  TestMongoDB.vcxproj -> D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

Andrew Morrow

unread,
Oct 28, 2014, 5:48:02 PM10/28/14
to mongod...@googlegroups.com

Thanks, but this is only the warning output. I'd like to see the actual invocations of the 'cl' and 'link' tools, including compiler and link flags, include paths, etc. You can omit the warning output.

Thanks,
Andrew


Ariel David Calo

unread,
Oct 28, 2014, 6:21:33 PM10/28/14
to mongod...@googlegroups.com
Ohhh. I'm sorry.

1>------ Build started: Project: TestMongoDB, Configuration: Debug Win32 ------
1>Build started 28/10/2014 19:18:40.
1>Environment at start of build:
1>ALLUSERSPROFILE = C:\ProgramData
1>APPDATA = C:\Users\acalo.TELEFE\AppData\Roaming
1>CommonProgramFiles = C:\Program Files (x86)\Common Files
1>CommonProgramFiles(x86) = C:\Program Files (x86)\Common Files
1>CommonProgramW6432 = C:\Program Files\Common Files
1>COMPUTERNAME = WKS063884
1>ComSpec = C:\Windows\system32\cmd.exe
1>DEFLOGDIR = C:\ProgramData\McAfee\DesktopProtection
1>FP_NO_HOST_CHECK = NO
1>HOMEDRIVE = C:
1>HOMEPATH = \Users\acalo.TELEFE
1>LOCALAPPDATA = C:\Users\acalo.TELEFE\AppData\Local
1>LOGONSERVER = \\TEIDC03
1>MSBuildLoadMicrosoftTargetsReadOnly = true
1>NUMBER_OF_PROCESSORS = 8
1>OS = Windows_NT
1>Path = C:\Python27\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\PostgreSQL\9.3\lib;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\build-boost\include\boost-1_56\
1>PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
1>PkgDefApplicationConfigFile = C:\Users\acalo.TELEFE\AppData\Local\Microsoft\VisualStudio\11.0\devenv.exe.config
1>PROCESSOR_ARCHITECTURE = x86
1>PROCESSOR_ARCHITEW6432 = AMD64
1>PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 26 Stepping 4, GenuineIntel
1>PROCESSOR_LEVEL = 6
1>PROCESSOR_REVISION = 1a04
1>ProgramData = C:\ProgramData
1>ProgramFiles = C:\Program Files (x86)
1>ProgramFiles(x86) = C:\Program Files (x86)
1>ProgramW6432 = C:\Program Files
1>PSModulePath = C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
1>PUBLIC = C:\Users\Public
1>SESSIONNAME = Console
1>SystemDrive = C:
1>SystemRoot = C:\Windows
1>TEMP = C:\Users\ACALO~1.TEL\AppData\Local\Temp
1>TMP = C:\Users\ACALO~1.TEL\AppData\Local\Temp
1>UATDATA = C:\Windows\SysWOW64\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77
1>USERDNSDOMAIN = TELEFE.COM.AR
1>USERDOMAIN = TELEFE
1>USERNAME = acalo
1>USERPROFILE = C:\Users\acalo.TELEFE
1>VisualStudioDir = \\Tlf-file-svr\users\acalo\Visual Studio 2012
1>VisualStudioEdition = Microsoft Visual Studio Ultimate 2012
1>VisualStudioVersion = 11.0
1>VS110COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\
1>VSEDEFLOGDIR = C:\ProgramData\McAfee\DesktopProtection
1>VSLANG = 1033
1>windir = C:\Windows
1>windows_tracing_flags = 3
1>windows_tracing_logfile = C:\BVTBin\Tests\installpackage\csilogfile.log
1>WIX = C:\Program Files (x86)\WiX Toolset v3.7\
1>_NT_SYMBOL_PATH = D:\Symbols
1>__COMPAT_LAYER = ElevateCreateProcess
1>
1>Initial Properties:
1>__COMPAT_LAYER = ElevateCreateProcess
1>_AfterCompileWinFXInternalDependsOn = 
1>        PrepareResourcesForSatelliteAssemblies;
1>        MergeLocalizationDirectives;
1>        AfterCompileWinFX
1>    
1>_ApplicableDebuggers = Desktop
1>_BuildActionType = Build
1>_BuildSuffix = 
1>:VCEnd
1>_CompileTargetNameForLocalType = _CompileTemporaryAssembly
1>_DebugSymbolsProduced = true
1>_DeploymentApplicationManifestIdentity = TestMongoDB.exe
1>_DeploymentBuiltUpdateInterval = 0
1>_DeploymentBuiltUpdateIntervalUnits = Days
1>_DeploymentDeployManifestIdentity = TestMongoDB.application
1>_DeploymentFileMappingExtension = 
1>_DeploymentPublishableProjectDefault = true
1>_DeploymentTargetApplicationManifestFileName = TestMongoDB.exe.manifest
1>_DeploymentUrl = 
1>_DocumentationFileProduced = false
1>_FullFrameworkReferenceAssemblyPaths = C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0
1>_GetChildProjectCopyToOutputDirectoryItems = true
1>_ManifestDependsOn = 
1>      ;
1>      
1>      ;
1>      ComputeManifestInputsTargets;
1>    ;
1>      Manifest;
1>      ComputeManifestGeneratedLinkerInputs;
1>      LinkEmbedManifest;
1>    
1>_NT_SYMBOL_PATH = D:\Symbols
1>_OriginalConfiguration = Debug
1>_OriginalPlatform = Win32
1>_PlatformToolsetFriendlyNameFor_v100 = Visual Studio 2010 (v100)
1>_PlatformToolsetFriendlyNameFor_v110 = Visual Studio 2012 (v110)
1>_PlatformToolsetFriendlyNameFor_v110_xp = Visual Studio 2012 - Windows XP (v110_xp)
1>_PlatformToolsetFriendlyNameFor_v90 = Visual Studio 2008 (v90)
1>_PlatformToolsetShortNameFor_v100 = Visual Studio 2010
1>_PlatformToolsetShortNameFor_v90 = Visual Studio 2008
1>_ProjectDefaultTargets = Build
1>_PropertySheetDisplayName = Application
1>_RequireMCPass2ForMainAssembly = false
1>_RequireMCPass2ForSatelliteAssemblyOnly = false
1>_ResolveReferenceDependencies = false
1>_ResourceCompileDependsOn = 
1>      
1>      ;
1>      BeforeResourceCompile;
1>    ;
1>      ;
1>      MakeDirsForResourceCompile;
1>      ResourceCompile;
1>      
1>      ;
1>      AfterResourceCompile;
1>    
1>    
1>_ResourceNameInMainAssembly = TestMongoDB.g.resources
1>_SGenDllCreated = false
1>_SGenDllName = TestMongoDB.XmlSerializers.dll
1>_SGenGenerateSerializationAssembliesConfig = Off
1>_TargetFrameworkDirectories = C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0
1>_UpgradePlatformToolsetFor_v100 = v110
1>_UpgradePlatformToolsetFor_v110 = v110
1>_UpgradePlatformToolsetFor_v90 = v110
1>AddAdditionalExplicitAssemblyReferences = true
1>AddAppConfigToBuildOutputs = true
1>AdditionalExplicitAssemblyReferences = System.Core;
1>AfterBuildCompileTargets = 
1>      ;
1>      AfterBuildCompileEvent;
1>    
1>AfterBuildGenerateSourcesTargets = 
1>      
1>      ;
1>      AfterBuildGenerateSources;
1>    ;
1>      AfterBuildGenerateSourcesEvent;
1>    
1>AfterBuildLinkTargets = 
1>      ;RunMergeNativeCodeAnalysis;RunNativeCodeAnalysis;
1>      CreateSatelliteAssemblies;
1>      _Appverifier;
1>      _Deploy;
1>      PrepareForRun;
1>      PostBuildEvent;
1>    
1>AfterClCompileTargets = 
1>      ;
1>      AfterClCompile;
1>    
1>AfterImpLibTargets = 
1>      ;
1>      AfterImpLib;
1>    
1>AfterLibTargets = 
1>      ;
1>      AfterLib;
1>    
1>AfterLinkTargets = 
1>      ;
1>      AfterLink;
1>    
1>AfterManifestTargets = 
1>      ;
1>      AfterManifest;
1>    
1>AfterMidlTargets = 
1>      ;
1>      AfterMidl;
1>    
1>AfterResourceCompileTargets = 
1>      ;
1>      AfterResourceCompile;
1>    
1>AllowedReferenceAssemblyFileExtensions = 
1>      .winmd;
1>      .dll;
1>      .exe
1>    
1>AllowedReferenceRelatedFileExtensions = 
1>      .pdb;
1>      .xml;
1>      .pri
1>    
1>AllowLocalNetworkLoopback = true
1>AllProjectOutputGroupsDependsOn = 
1>      ;
1>      BuiltProjectOutputGroup;
1>      DebugSymbolsProjectOutputGroup;
1>      DocumentationProjectOutputGroup;
1>      SatelliteDllsProjectOutputGroup;
1>      SourceFilesProjectOutputGroup;
1>      ContentFilesProjectOutputGroup;
1>      SGenFilesOutputGroup
1>    
1>ALLUSERSPROFILE = C:\ProgramData
1>AlwaysCompileMarkupFilesInSeparateDomain = true
1>APPDATA = C:\Users\acalo.TELEFE\AppData\Roaming
1>AssemblyFoldersSuffix = AssemblyFoldersEx
1>AssemblyName = TestMongoDB
1>AssemblySearchPaths = 
1>      D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\FakesAssemblies;
1>      
1>      {CandidateAssemblyFiles};
1>      C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib;
1>      {HintPathFromItem};
1>      {TargetFrameworkDirectory};
1>      {Registry:Software\Microsoft\.NETFramework,v4.0,AssemblyFoldersEx};
1>      {AssemblyFolders};
1>      {GAC};
1>      {RawFileName};
1>      D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\
1>    
1>    
1>AssignTargetPathsDependsOn = 
1>Attach = false
1>AutoUnifyAssemblyReferences = false
1>AvailablePlatforms = Any CPU,x86,x64
1>BaseIntermediateOutputPath = obj\
1>BeforeBuildCompileTargets = 
1>      ;
1>    
1>BeforeBuildGenerateSourcesTargets = 
1>      
1>      ;
1>      BeforeBuildGenerateSources;
1>    ;
1>    
1>BeforeClCompileTargets = 
1>      ;
1>      BeforeClCompile;
1>    
1>BeforeImpLibTargets = 
1>      ;
1>      BeforeImpLib;
1>    
1>BeforeLibTargets = 
1>      ;
1>      BeforeLib;
1>    
1>BeforeLinkTargets = 
1>      ;
1>      BeforeLink;
1>    
1>BeforeManifestTargets = 
1>      ;
1>      BeforeManifest;
1>    
1>BeforeMidlTargets = 
1>      ;
1>      BeforeMidl;
1>    
1>BeforeResourceCompileTargets = 
1>      ;
1>      BeforeResourceCompile;
1>    
1>BuildCompileAction = _BuildCompileAction
1>BuildCompileTargets = 
1>      ;
1>      _ClCompile;
1>      _ResGen;
1>      _ResourceCompile;
1>      
1>      ;
1>      _ImpLib;
1>      _Lib;
1>    ;
1>    
1>BuildDependsOn = 
1>      _PrepareForBuild;
1>      
1>      ResolveReferences;
1>      PrepareForBuild;
1>      InitializeBuildStatus;
1>      BuildGenerateSources;
1>      BuildCompile;
1>      BuildLink;
1>    ;
1>      AfterBuild;
1>      FinalizeBuildStatus;
1>    
1>BuildGenerateSourcesAction = _BuildGenerateSourcesAction
1>BuildGenerateSourcesTargets = 
1>      ;
1>      PreBuildEvent;
1>      _Xsd;
1>      _Midl;
1>    
1>BuildingInsideVisualStudio = true
1>BuildingProject = true
1>BuildInParallel = true
1>BuildLibTargets = 
1>      ;
1>      _ImpLib;
1>      _Lib;
1>    
1>BuildLinkAction = _BuildLinkAction
1>BuildLinkTargets = 
1>      ;
1>      ComputeLegacyManifestEmbedding;
1>      _Link;
1>      _ALink;
1>      _Manifest;
1>      RegisterOutput;
1>      _XdcMake;
1>      _BscMake;
1>    
1>BuildProjectReferences = true
1>BuildSteps = 
1>      ResolveReferences;
1>      PrepareForBuild;
1>      InitializeBuildStatus;
1>      BuildGenerateSources;
1>      BuildCompile;
1>      BuildLink;
1>    
1>BuildSystem = MSBuild
1>BuildTaskAssembly = PresentationBuildTasks, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
1>BuiltProjectOutputGroupDependsOn = PrepareForBuild
1>CharacterSet = Unicode
1>CleanDependsOn = 
1>      
1>      _PrepareForClean;
1>      
1>      
1>      BeforeClean;
1>      UnmanagedUnregistration;
1>      CoreClean;
1>      CleanReferencedProjects;
1>      CleanPublishFolder;
1>      AfterClean
1>    ;
1>      EntityClean;
1>    ;
1>    ;
1>      CppClean
1>    
1>CleanFile = TestMongoDB.vcxproj.FileListAbsolute.txt
1>CLRSupport = false
1>ClYieldDuringToolExecution = true
1>CodeAnalysisApplyLogFileXsl = false
1>CodeAnalysisFailOnMissingRules = false
1>CodeAnalysisForceOutput = true
1>CodeAnalysisGenerateSuccessFile = true
1>CodeAnalysisIgnoreGeneratedCode = true
1>CodeAnalysisIgnoreInvalidTargets = true
1>CodeAnalysisIgnoreMissingIndirectReferences = false
1>CodeAnalysisInputAssembly = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe
1>CodeAnalysisLogFile = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe.CodeAnalysisLog.xml
1>CodeAnalysisModuleSuppressionsFile = GlobalSuppressions.cpp
1>CodeAnalysisOutputToConsole = false
1>CodeAnalysisOverrideRuleVisibilities = false
1>CodeAnalysisPath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Team Tools\Static Analysis Tools\FxCop\
1>CodeAnalysisQuiet = false
1>CodeAnalysisRuleDirectories = ;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Team Tools\Static Analysis Tools\FxCop\\Rules
1>CodeAnalysisRuleSet = NativeRecommendedRules.ruleset
1>CodeAnalysisRuleSetDirectories = ;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Team Tools\Static Analysis Tools\\Rule Sets
1>CodeAnalysisSaveMessagesToReport = Active
1>CodeAnalysisSearchGlobalAssemblyCache = true
1>CodeAnalysisStaticAnalysisDirectory = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Team Tools\Static Analysis Tools\
1>CodeAnalysisSucceededFile = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe.lastcodeanalysissucceeded
1>CodeAnalysisSummary = false
1>CodeAnalysisTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\CodeAnalysis\Microsoft.CodeAnalysis.targets
1>CodeAnalysisTimeout = 120
1>CodeAnalysisTLogFile = Debug\CodeAnalysis.read.1.tlog
1>CodeAnalysisTreatWarningsAsErrors = false
1>CodeAnalysisUpdateProject = false
1>CodeAnalysisUseTypeNameInSuppression = true
1>CodeAnalysisVerbose = false
1>CommonBuildOnlyTargets = 
1>      PrepareForBuild;
1>      ResolveReferences;
1>    
1>CommonProgramFiles = C:\Program Files (x86)\Common Files
1>CommonProgramW6432 = C:\Program Files\Common Files
1>CompileDependsOn = 
1>        
1>      ResolveReferences;
1>      ResolveKeySource;
1>      SetWin32ManifestProperties;
1>      _GenerateCompileInputs;
1>      BeforeCompile;
1>      _TimeStampBeforeCompile;
1>      CoreCompile;
1>      _TimeStampAfterCompile;
1>      AfterCompile;
1>    ;
1>        _AfterCompileWinFXInternal
1>    
1>CompileLicxFilesDependsOn = 
1>CompileRdlFilesDependsOn = PrepareRdlFiles;RunRdlCompiler
1>CompileTargetNameForTemporaryAssembly = CompileTemporaryAssembly
1>ComputeCompileInputsTargets = 
1>      
1>      ;
1>      ComputeMIDLGeneratedCompileInputs;
1>    ;
1>      ComputeCLInputPDBName;
1>      ComputeReferenceCLInput
1>    
1>ComputeImpLibInputsTargets = 
1>        
1>      
1>      
1>      
1>      ;
1>      ComputeRCGeneratedLibInputs;
1>    ;
1>      ComputeRCGeneratedImpLibInputs;
1>    ;
1>      ComputeCustomBuildOutput;
1>    ;
1>      ComputeCLGeneratedImpLibInputs;
1>    ;
1>        ComputeImpLibInputsFromProject;
1>      
1>ComputeIntermediateSatelliteAssembliesDependsOn = 
1>      CreateManifestResourceNames
1>    
1>ComputeLibInputsTargets = 
1>      ComputeLibAdditionalOptions;
1>      
1>      
1>        
1>      
1>      
1>      ;
1>      ComputeRCGeneratedLibInputs;
1>    ;
1>      ComputeCustomBuildOutput;
1>    ;
1>      ComputeCLGeneratedLibInputs;
1>    ;
1>        ComputeLibInputsFromProject;
1>      ;
1>      ComputeReferenceLibInputs;
1>    
1>    
1>ComputeLinkInputsTargets = 
1>      
1>        
1>      
1>      
1>      
1>      ;
1>      ComputeRCGeneratedLinkInputs;
1>    ;
1>      ComputeManifestGeneratedLinkerInputs;
1>    ;
1>      ComputeCustomBuildOutput;
1>    ;
1>      ComputeCLGeneratedLinkInputs;
1>    ;
1>        ComputeLinkInputsFromProject;
1>      ;
1>      ComputeReferenceLinkInputs;
1>    
1>ComputeManifestInputsTargets = 
1>      ;
1>      ComputeManifestInputsTargets;
1>    
1>COMPUTERNAME = WKS063884
1>ComReferenceExecuteAsTool = false
1>ComReferenceNoClassMembers = false
1>ComSpec = C:\Windows\system32\cmd.exe
1>Configuration = Debug
1>ConfigurationName = Debug
1>ConfigurationType = Application
1>ConsiderPlatformAsProcessorArchitecture = true
1>ContentFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths;PrepareForBuild;AssignTargetPaths;MakeDirsForFxc
1>ContinueOnError = false
1>CoreBuildDependsOn = 
1>      BuildOnlySettings;
1>      PrepareForBuild;
1>      PreBuildEvent;
1>      ResolveReferences;
1>      PrepareResources;
1>      ResolveKeySource;
1>      Compile;
1>      ExportWindowsMDFile;
1>      UnmanagedUnregistration;
1>      GenerateSerializationAssemblies;
1>      CreateSatelliteAssemblies;
1>      GenerateManifests;
1>      GetTargetPath;
1>      PrepareForRun;
1>      UnmanagedRegistration;
1>      IncrementalClean;
1>      PostBuildEvent
1>    
1>CoreCleanDependsOn = 
1>CoreCompileDependsOn = 
1>        DesignTimeXamlMarkupCompilation;
1>        
1>          DesignTimeMarkupCompilation;
1>          
1>      
1>    
1>CoreCppCleanDependsOn = 
1>CoreResGenDependsOn = 
1>CppCleanDependsOn = 
1>      BeforeCppClean;
1>      ;
1>      CoreCppClean;
1>      AfterCppClean;
1>    ;PGInstrumentedClean
1>CppCleanLogFile = TestMongoDB.Build.CppClean.log
1>CreateCustomManifestResourceNamesDependsOn = 
1>CreateHardLinksForCopyAdditionalFilesIfPossible = false
1>CreateManifestResourceNamesDependsOn = 
1>CreateSatelliteAssembliesDependsOn = 
1>      _GenerateSatelliteAssemblyInputs;
1>      ComputeIntermediateSatelliteAssemblies;
1>      GenerateSatelliteAssemblies
1>    
1>CRTDefinitionalFile = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\VCProjectDefault\Microsoft.AppX.VCFrameworkReferences.xml
1>CrtSDKReferenceInclude = Microsoft.VCLibs, Version=11.0
1>CrtSDKReferenceVersion = 11.0
1>CurrentSolutionConfigurationContents = <SolutionConfiguration>
1><ProjectConfiguration Project="{cfdcfb13-2557-4104-9969-9e374c752e62}" AbsolutePath="D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj">Debug|Win32</ProjectConfiguration>
1></SolutionConfiguration>
1>CustomAfterMicrosoftCommonProps = C:\Program Files (x86)\MSBuild\v4.0\Custom.After.Microsoft.Common.props
1>CustomAfterMicrosoftCommonTargets = C:\Program Files (x86)\MSBuild\v4.0\Custom.After.Microsoft.Common.Targets
1>CustomBeforeMicrosoftCommonProps = C:\Program Files (x86)\MSBuild\v4.0\Custom.Before.Microsoft.Common.props
1>CustomBeforeMicrosoftCommonTargets = C:\Program Files (x86)\MSBuild\v4.0\Custom.Before.Microsoft.Common.Targets
1>CustomBuildAfterTargets = BscMake
1>CustomBuildBeforeTargets = PostBuildEvent
1>CustomBuildToolAfterTargets = PreBuildEvent
1>CustomBuildToolBeforeTargets = Midl
1>DebugCppRuntimeFilesPath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\redist\Debug_NonRedist\x86
1>DebuggerFlavor = WindowsLocalDebugger
1>DebuggerLaunchApplication = true
1>DebuggerRequireAuthentication = true
1>DebuggerType = NativeOnly
1>DebugSymbols = true
1>DebugSymbolsProjectOutputGroupDependsOn = 
1>DefaultLanguageSourceExtension = .cpp
1>DefaultPlatformToolset = v110
1>DefaultToolArchitecture = Native32Bit
1>DEFLOGDIR = C:\ProgramData\McAfee\DesktopProtection
1>DelayImplib = Delayimp.lib
1>DelaySign = 
1>DeploymentType = Installed
1>DesignTimeIntermediateOutputPath = Debug\InProcessTempFiles\
1>DesignTimeResolveAssemblyReferencesDependsOn = 
1>      GetFrameworkPaths;
1>      GetReferenceAssemblyPaths;
1>      ResolveReferences
1>    
1>DevEnvDir = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\
1>DocumentationProjectOutputGroupDependsOn = ResolvedXDCMake;ComputeCLCompileGeneratedXDCFiles
1>DocumentLibraryDependencies = true
1>EmbeddedWin32Manifest = 
1>EmbedManifest = true
1>EmbedManifestBy = LINK
1>EnableManagedIncrementalBuild = false
1>EntityDeployDependsOn = 
1>EntityDeployIntermediateResourcePath = Debug\edmxResourcesToEmbed\
1>ExcludePath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\include;C:\Program Files (x86)\Windows Kits\8.0\Include\um;C:\Program Files (x86)\Windows Kits\8.0\Include\shared;C:\Program Files (x86)\Windows Kits\8.0\Include\winrt;;C:\Windows\Microsoft.NET\Framework\v4.0.30319\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib;
1>ExecutablePath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin;C:\Program Files (x86)\Windows Kits\8.0\bin\x86;;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\bin;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\ide;C:\Program Files (x86)\HTML Help Workshop;C:\Windows\Microsoft.NET\Framework\v4.0.30319\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\;C:\Windows\SysWow64;;C:\Python27\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\PostgreSQL\9.3\lib;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\build-boost\include\boost-1_56\;
1>ExpandSDKAllowedReferenceExtensions = 
1>      .winmd;
1>      .dll
1>    
1>ExpandSDKReferencesDependsOn = 
1>      ResolveSDKReferences
1>    
1>ExtensionsToDeleteOnClean = *.cdf;*.cache;*.obj;*.ilk;*.resources;*.tlb;*.tli;*.tlh;*.tmp;*.rsp;*.pgc;*.pgd;*.meta;*.tlog;*.manifest;*.res;*.pch;*.exp;*.idb;*.rep;*.xdc;*.pdb;*_manifest.rc;*.bsc;*.sbr;*.xml;*.metagen;*.bi;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe.manifest;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.tlb;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.pdb;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.bsc;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.ilk;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe.intermediate.manifest;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe.CodeAnalysisLog.xml;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe.lastcodeanalysissucceeded
1>FakesBinPath = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Fakes
1>FakesContinueOnError = false
1>FakesGenerateBeforeBuildDependsOn = 
1>      ;
1>      ResolveFakesReferences;
1>      BuildFakesAssemblies;
1>    
1>FakesImported = true
1>FakesIntermediatePath = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug\Fakes
1>FakesOutputPath = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\FakesAssemblies
1>FakesTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Fakes\Microsoft.QualityTools.Testing.Fakes.targets
1>FakesTasks = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Fakes\Microsoft.QualityTools.Testing.Fakes.Tasks.dll
1>FakesToolsPath = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Fakes
1>FakesVerbosity = Warning
1>FP_NO_HOST_CHECK = NO
1>Framework20Dir = @(_TargetFramework20DirectoryItem)
1>Framework30Dir = @(_TargetFramework30DirectoryItem)
1>Framework35Dir = @(_TargetFramework35DirectoryItem)
1>Framework40Dir = @(_TargetFramework40DirectoryItem)
1>FrameworkDir = C:\Windows\Microsoft.NET\Framework\
1>FrameworkDir_110 = C:\Windows\Microsoft.NET\Framework\
1>FrameworkPathOverride = C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0
1>FrameworkRegistryBase = Software\Microsoft\.NETFramework
1>FrameworkSdkDir = C:\Program Files (x86)\Windows Kits\8.0\
1>FrameworkSDKRoot = C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\
1>FrameworkVersion = v4.5
1>FullReferenceAssemblyNames = Full
1>FxCompileAfterTargets = CustomBuild
1>FxCompileBeforeTargets = Midl
1>GenerateClickOnceManifests = 
1>GeneratedFileExtension = .g.cpp
1>GenerateManifest = true
1>GenerateManifestsDependsOn = 
1>      SetWin32ManifestProperties;
1>      GenerateApplicationManifest;
1>      GenerateDeploymentManifest
1>    
1>GenerateTargetFrameworkAttribute = false
1>GetCopyToOutputDirectoryItemsDependsOn = 
1>      AssignTargetPaths;
1>      _SplitProjectReferencesByFileExistence
1>    
1>GetFrameworkPathsDependsOn = 
1>GetReferenceAssemblyPathsDependsOn = 
1>        ;
1>        GetWinFXPath
1>    
1>GetTargetPathDependsOn = 
1>GPURefDebuggerBreakOnAllThreads = GPURefBreakOncePerWarp
1>HighEntropyVA = false
1>HOMEDRIVE = C:
1>HOMEPATH = \Users\acalo.TELEFE
1>HostInBrowser = false
1>IgnoreImportLibrary = false
1>ImplicitlyExpandDesignTimeFacadesDependsOn = 
1>      ;
1>      GetReferenceAssemblyPaths
1>    
1>ImportByWildcardAfterMicrosoftCommonTargets = true
1>ImportByWildcardAfterMicrosoftNetFrameworkProps = true
1>ImportByWildcardAfterMicrosoftNetFrameworkTargets = true
1>ImportByWildcardBeforeMicrosoftCommonTargets = true
1>ImportByWildcardBeforeMicrosoftNetFrameworkProps = true
1>ImportByWildcardBeforeMicrosoftNetFrameworkTargets = true
1>ImportUserLocationsByWildcardAfterMicrosoftCommonTargets = true
1>ImportUserLocationsByWildcardAfterMicrosoftNetFrameworkProps = true
1>ImportUserLocationsByWildcardAfterMicrosoftNetFrameworkTargets = true
1>ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets = true
1>ImportUserLocationsByWildcardBeforeMicrosoftNetFrameworkProps = true
1>ImportUserLocationsByWildcardBeforeMicrosoftNetFrameworkTargets = true
1>IncludePath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\include;C:\Program Files (x86)\Windows Kits\8.0\Include\um;C:\Program Files (x86)\Windows Kits\8.0\Include\shared;C:\Program Files (x86)\Windows Kits\8.0\Include\winrt;;
1>IncludeVersionInInteropName = true
1>IntDir = Debug\
1>IntermediateOutputPath = Debug\
1>InteropOutputPath = Interop\
1>IsApplication = true
1>Keyword = Win32Proj
1>LangID = 1033
1>LangName = en-US
1>Language = C++
1>LastBuildState = Debug\TestMongoDB.lastbuildstate
1>LastBuildUnsuccessful = Debug\TestMongoDB.unsuccessfulbuild
1>LibraryPath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Windows Kits\8.0\lib\win8\um\x86;;
1>LibraryWPath = C:\Program Files (x86)\Windows Kits\8.0\References\CommonConfiguration\Neutral
1>LinkCompiled = true
1>LinkIncremental = true
1>LoadTimeSensitiveProperties = 
1>      ;
1>    
1>LoadTimeSensitiveTargets = 
1>      ;
1>      XamlMarkupCompilePass1;
1>    
1>LOCALAPPDATA = C:\Users\acalo.TELEFE\AppData\Local
1>LocalDebuggerAttach = False
1>LocalDebuggerCommand = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe
1>LocalDebuggerDebuggerType = Auto
1>LocalDebuggerMergeEnvironment = true
1>LocalDebuggerSQLDebugging = False
1>LocalDebuggerWorkingDirectory = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\
1>LocalGPUDebuggerTargetType = {F4453496-1DB8-47F8-A7D5-31EBDDC2EC96}
1>LocalizationDirectivesToLocFile = None
1>LOGONSERVER = \\TEIDC03
1>ManagedAssembly = false
1>ManagedIncrementalBuildProcessDependencyGraphAfterTarget = 
1>      ClCompile
1>    
1>ManagedIncrementalBuildProcessDependencyGraphBeforeTarget = 
1>      ClCompile
1>    
1>MarkupCompilePass2ForMainAssemblyDependsOn = 
1>                     GenerateTemporaryTargetAssembly;
1>                     MarkupCompilePass2;
1>                     AfterMarkupCompilePass2;
1>                     CleanupTemporaryTargetAssembly
1>       
1>MaxTargetPath = 100
1>MergedOutputCodeAnalysisFile = Debug\vc.nativecodeanalysis.all.xml
1>MetagenInputTarget = Link
1>MetaGenTargets = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\\Microsoft.MetaGen.targets
1>MicrosoftCommonPropsHasBeenImported = true
1>MidlYieldDuringToolExecution = true
1>MpiDebuggerCleanupDeployment = True
1>MpiDebuggerDebuggerType = Auto
1>MpiDebuggerDeployCommonRuntime = True
1>MpiDebuggerNetworkSecurityMode = AnyAddress
1>MpiDebuggerSchedulerNode = localhost/1
1>MpiDebuggerSchedulerTimeout = 5000
1>MsAppxPackageTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\AppxPackage\Microsoft.AppXPackage.Targets
1>MSBuildAllProjects = ;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj;C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj.user;C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.NETFramework.props;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj;C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets;D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj.user;C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.NETFramework.targets;C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Xaml.targets
1>MSBuildBinPath = C:\Windows\Microsoft.NET\Framework\v4.0.30319
1>MSBuildExtensionsPath = C:\Program Files (x86)\MSBuild
1>MSBuildExtensionsPath32 = C:\Program Files (x86)\MSBuild
1>MSBuildExtensionsPath64 = C:\Program Files\MSBuild
1>MSBuildLoadMicrosoftTargetsReadOnly = true
1>MSBuildNodeCount = 8
1>MSBuildProgramFiles32 = C:\Program Files (x86)
1>MSBuildProjectDefaultTargets = Build
1>MSBuildProjectDirectory = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB
1>MSBuildProjectDirectoryNoRoot = Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB
1>MSBuildProjectExtension = .vcxproj
1>MSBuildProjectFile = TestMongoDB.vcxproj
1>MSBuildProjectFullPath = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj
1>MSBuildProjectName = TestMongoDB
1>MSBuildRuntimeVersion = 4.0.30319
1>MSBuildStartupDirectory = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE
1>MSBuildToolsPath = C:\Windows\Microsoft.NET\Framework\v4.0.30319
1>MSBuildToolsPath32 = C:\Windows\Microsoft.NET\Framework\v4.0.30319\
1>MSBuildToolsRoot = C:\Windows\Microsoft.NET\Framework\
1>MSBuildToolsVersion = 4.0
1>MSBuildUserExtensionsPath = C:\Users\acalo.TELEFE\AppData\Local\Microsoft\MSBuild
1>MsTestToolsTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\TeamTest\Microsoft.TeamTest.targets
1>NativeCodeAnalysisTLogFile = Debug\NativeCodeAnalysis.read.1.tlog
1>NativeExecutablePath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin;C:\Program Files (x86)\Windows Kits\8.0\bin\x86;;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\bin;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\ide;C:\Program Files (x86)\HTML Help Workshop;C:\Windows\Microsoft.NET\Framework\v4.0.30319\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\;C:\Windows\SysWow64;;C:\Python27\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\PostgreSQL\9.3\lib;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\build-boost\include\boost-1_56\;
1>NUMBER_OF_PROCESSORS = 8
1>OnlyReferenceAndBuildProjectsEnabledInSolutionConfiguration = true
1>OS = Windows_NT
1>OSVersion = 5.1.2600.0
1>OutDir = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\
1>OutDirWasSpecified = false
1>OutputPath = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\
1>OutputType = exe
1>OverwriteReadOnlyFiles = false
1>Path = C:\Python27\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\PostgreSQL\9.3\lib;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\build-boost\include\boost-1_56\
1>PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
1>PkgDefApplicationConfigFile = C:\Users\acalo.TELEFE\AppData\Local\Microsoft\VisualStudio\11.0\devenv.exe.config
1>Platform = Win32
1>Platform_Actual = Win32
1>PlatformArchitecture = 32
1>PlatformName = Win32
1>PlatformPropsFound = true
1>PlatformShortName = x86
1>PlatformTarget = x86
1>PlatformTargetAsMSBuildArchitecture = x86
1>PlatformTargetAsMSBuildArchitectureExplicitlySet = false
1>PlatformTargetsFound = true
1>PlatformToolset = v110
1>PlatformToolsetVersion = 110
1>PostBuildEventDependsOn = 
1>PostBuildEventUseInBuild = true
1>PreBuildEventDependsOn = 
1>PreBuildEventUseInBuild = true
1>Prefer32Bit = false
1>PreLinkEventUseInBuild = true
1>PrepareForBuildDependsOn = PlatformPrepareForBuild;GetFrameworkPaths;GetReferenceAssemblyPaths
1>PrepareForRunDependsOn = 
1>      CopyFilesToOutputDirectory
1>    
1>PrepareResourceNamesDependsOn = 
1>                    AssignWinFXEmbeddedResource;
1>                    
1>      AssignTargetPaths;
1>      SplitResourcesByCulture;
1>      CreateManifestResourceNames;
1>      CreateCustomManifestResourceNames
1>    
1>      
1>PrepareResourcesDependsOn = 
1>      XamlMarkupCompilePass1;
1>      XamlMarkupCompilePass2;
1>      
1>                MarkupCompilePass1;
1>                AfterMarkupCompilePass1;
1>                MarkupCompilePass2ForMainAssembly;
1>                FileClassification;
1>                MainResourcesGeneration;
1>                
1>      PrepareResourceNames;
1>      ResGen;
1>      CompileLicxFiles
1>    ;CompileRdlFiles
1>       
1>    
1>PROCESSOR_ARCHITECTURE = x86
1>PROCESSOR_ARCHITEW6432 = AMD64
1>PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 26 Stepping 4, GenuineIntel
1>PROCESSOR_LEVEL = 6
1>PROCESSOR_REVISION = 1a04
1>ProcessorArchitecture = x86
1>ProgramData = C:\ProgramData
1>ProgramFiles = C:\Program Files (x86)
1>ProgramW6432 = C:\Program Files
1>ProjectDesignTimeAssemblyResolutionSearchPaths = 
1>      {CandidateAssemblyFiles};
1>      C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib;
1>      {HintPathFromItem};
1>      {TargetFrameworkDirectory};
1>      {Registry:Software\Microsoft\.NETFramework,v4.0,AssemblyFoldersEx};
1>      {RawFileName};
1>      D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\
1>    
1>ProjectDir = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\
1>ProjectEvaluationFingerprint = Debug|Win32|D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\|
1>ProjectExt = .vcxproj
1>ProjectFileName = TestMongoDB.vcxproj
1>ProjectFlavor = Client
1>ProjectGuid = {CFDCFB13-2557-4104-9969-9E374C752E62}
1>ProjectName = TestMongoDB
1>ProjectPath = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj
1>PSModulePath = C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
1>PUBLIC = C:\Users\Public
1>PublishableProject = true
1>PublishBuildDependsOn = 
1>            BuildOnlySettings;
1>            PrepareForBuild;
1>            ResolveReferences;
1>            PrepareResources;
1>            ResolveKeySource;
1>            PrepareResourcesForSatelliteAssemblies;
1>            GenerateSerializationAssemblies;
1>            CreateSatelliteAssemblies;
1>        
1>PublishDependsOn = 
1>      SetGenerateManifests;
1>      Build;
1>      PublishOnly
1>    
1>PublishDir = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\app.publish\
1>PublishOnlyDependsOn = 
1>      SetGenerateManifests;
1>      PublishBuild;
1>      BeforePublish;
1>      GenerateManifests;
1>      CopyFilesToOutputDirectory;
1>      CleanPublishFolder;
1>      _CopyFilesToPublishFolder;
1>      _DeploymentGenerateBootstrapper;
1>      ResolveKeySource;
1>      _DeploymentSignClickOnceDeployment;
1>      AfterPublish
1>    
1>RebuildDependsOn = 
1>      _PrepareForRebuild;
1>      
1>      BeforeRebuild;
1>      Clean;
1>      Build;
1>      AfterRebuild;
1>    ;
1>    
1>ReferencePath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib
1>RemoteDebuggerAttach = False
1>RemoteDebuggerConnection = RemoteWithAuthentication
1>RemoteDebuggerDebuggerType = Auto
1>RemoteDebuggerDeployDebugCppRuntime = true
1>RemoteDebuggerServerName = WKS063884
1>RemoteDebuggerSQLDebugging = False
1>RemoteDebuggerWorkingDirectory = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\
1>RemoteGPUDebuggerTargetType = {F4453496-1DB8-47F8-A7D5-31EBDDC2EC96}
1>ReportingServicesTargets = C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\ReportingServices\Microsoft.ReportingServices.targets
1>ResGenDependsOn = ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen
1>ResGenExecuteAsTool = false
1>ResolveAssemblyReferencesDependsOn = _PrepareForReferenceResolution;
1>      
1>      GetFrameworkPaths;
1>      GetReferenceAssemblyPaths;
1>      PrepareForBuild;
1>      ResolveSDKReferences;
1>      ExpandSDKReferences;
1>    ;
1>      FakesGenerateBeforeBuild;
1>    
1>ResolveReferencesDependsOn = _PrepareForReferenceResolution;ComputeCrtSDKReference;
1>      
1>      
1>      BeforeResolveReferences;
1>      AssignProjectConfiguration;
1>      ResolveProjectReferences;
1>      ResolveNativeReferences;
1>      ResolveAssemblyReferences;
1>      ResolveComReferences;
1>      AfterResolveReferences
1>    ;
1>      ImplicitlyExpandDesignTimeFacades
1>    ;
1>      ResolveTestReferences
1>    
1>ResolveSDKReferencesDependsOn = _PrepareForReferenceResolution;ComputeCrtSDKReference;
1>      GetInstalledSDKLocations
1>    
1>RootNamespace = TestMongoDB
1>RunAfterInstall = true
1>RunCodeAnalysisDependsOn = ;ClCompile;RunMergeNativeCodeAnalysis
1>RunCodeAnalysisInputs = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe
1>RunDependsOn = 
1>RunMergeNativeCodeAnalysisDependsOn = ClCompile
1>RunNativeCodeAnalysisInputs = 
1>SatelliteDllsProjectOutputGroupDependsOn = PrepareForBuild;PrepareResourceNames
1>SDK35ToolsPath = C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\
1>SDK40ToolsPath = C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\
1>SDKRedistOutputGroupDependsOn = ResolveSDKReferences;ExpandSDKReferences
1>SDKReferenceDirectoryRoot = C:\Users\acalo.TELEFE\AppData\Local\Microsoft SDKs;C:\Program Files (x86)\Microsoft SDKs
1>SDKReferenceRegistryRoot = Software\Microsoft\Microsoft SDKs
1>SESSIONNAME = Console
1>SGenFilesOutputGroupDependsOn = 
1>SGenShouldGenerateSerializer = true
1>SGenUseProxyTypes = true
1>SkipCopyBuildProduct = true
1>SkipCopyUnchangedFiles = true
1>SolutionDir = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\
1>SolutionExt = .sln
1>SolutionFileName = TestMongoDB.sln
1>SolutionName = TestMongoDB
1>SolutionPath = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB.sln
1>SourceFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths
1>SourcePath = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\src\mfc;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\src\mfcm;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\src\atl;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\crt\src;
1>SQLDebugging = false
1>SystemDrive = C:
1>SystemRoot = C:\Windows
1>TargetCulture = *
1>TargetDeployManifestFileName = TestMongoDB.application
1>TargetDir = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\
1>TargetedFrameworkDir = @(_TargetedFrameworkDirectoryItem)
1>TargetedRuntimeVersion = v4.0.30319
1>TargetedSDKArchitecture = x86
1>TargetedSDKConfiguration = Debug
1>TargetExt = .exe
1>TargetFileName = TestMongoDB.exe
1>TargetFrameworkAsMSBuildRuntime = CLR4
1>TargetFrameworkIdentifier = .NETFramework
1>TargetFrameworkMoniker = .NETFramework,Version=v4.0
1>TargetFrameworkMonikerAssemblyAttributesPath = C:\Users\acalo.TELEFE\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cpp
1>TargetFrameworkMonikerDisplayName = .NET Framework 4
1>TargetFrameworkSDKToolsDirectory = C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\
1>TargetFrameworkVersion = v4.0
1>TargetName = TestMongoDB
1>TargetPath = D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe
1>TargetPlatformIdentifier = Windows
1>TargetPlatformMoniker = Windows,Version=7.0
1>TargetPlatformRegistryBase = Software\Microsoft\Microsoft SDKs\Windows
1>TargetPlatformSdkPath = 
1>TargetPlatformVersion = 7.0
1>TargetPlatformVersionOptions = 7.0;8.0
1>TargetPlatformWinMDLocation = C:\Program Files (x86)\Windows Kits\8.0\References\CommonConfiguration\Neutral
1>TargetRuntime = Managed
1>TaskKeyToken = 31bf3856ad364e35
1>TaskVersion = 4.0.0.0
1>TEMP = C:\Users\ACALO~1.TEL\AppData\Local\Temp
1>TLogLocation = Debug\
1>TMP = C:\Users\ACALO~1.TEL\AppData\Local\Temp
1>ToolsetPropsFound = true
1>ToolsetTargetsFound = true
1>TrackFileAccess = true
1>UATDATA = C:\Windows\SysWOW64\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77
1>UnmanagedRegistrationDependsOn = 
1>UnmanagedUnregistrationDependsOn = 
1>UpgradeSubsetToProfile = true
1>UseCommonOutputDirectory = false
1>UseDebugLibraries = true
1>UseOfATL = false
1>UseOfMFC = false
1>USERDNSDOMAIN = TELEFE.COM.AR
1>USERDOMAIN = TELEFE
1>USERNAME = acalo
1>USERPROFILE = C:\Users\acalo.TELEFE
1>UserRootDir = C:\Users\acalo.TELEFE\AppData\Local\Microsoft\MSBuild\v4.0
1>UseSourcePath = true
1>VCInstallDir = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\
1>VCInstallDir_110 = C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\
1>VCTargetsPath = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\
1>VCTargetsPath10 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\
1>VCTargetsPath11 = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\
1>VCTargetsPathEffective = C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\
1>Version = 1.0.0.0
1>VisualStudioDir = \\Tlf-file-svr\users\acalo\Visual Studio 2012
1>VisualStudioEdition = Microsoft Visual Studio Ultimate 2012
1>VisualStudioVersion = 11.0
1>VS110COMNTOOLS = C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\
1>VSEDEFLOGDIR = C:\ProgramData\McAfee\DesktopProtection
1>VSIDEResolvedNonMSBuildProjectOutputs = <VSIDEResolvedNonMSBuildProjectOutputs />
1>VSInstallDir = C:\Program Files (x86)\Microsoft Visual Studio 11.0\
1>VSInstallDir_110 = C:\Program Files (x86)\Microsoft Visual Studio 11.0\
1>VSLANG = 1033
1>WebBrowserDebuggerDebuggerType = Auto
1>WebReference_EnableLegacyEventingModel = false
1>WebReference_EnableProperties = true
1>WebReference_EnableSQLTypes = true
1>WebServiceDebuggerDebuggerType = Auto
1>WebServiceDebuggerSQLDebugging = False
1>WholeProgramOptimization = false
1>WholeProgramOptimizationAvailabilityInstrument = true
1>WholeProgramOptimizationAvailabilityOptimize = true
1>WholeProgramOptimizationAvailabilityTrue = true
1>WholeProgramOptimizationAvailabilityUpdate = true
1>windir = C:\Windows
1>windows_tracing_flags = 3
1>windows_tracing_logfile = C:\BVTBin\Tests\installpackage\csilogfile.log
1>WindowsAppContainer = false
1>WindowsSDK_ExecutablePath_arm = C:\Program Files (x86)\Windows Kits\8.0\bin\arm;
1>WindowsSDK_ExecutablePath_x64 = C:\Program Files (x86)\Windows Kits\8.0\bin\x64;;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\x64
1>WindowsSDK_ExecutablePath_x86 = C:\Program Files (x86)\Windows Kits\8.0\bin\x86;;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools
1>WindowsSDK_IncludePath = C:\Program Files (x86)\Windows Kits\8.0\Include\um;C:\Program Files (x86)\Windows Kits\8.0\Include\shared;C:\Program Files (x86)\Windows Kits\8.0\Include\winrt;
1>WindowsSDK_LibraryPath_arm = C:\Program Files (x86)\Windows Kits\8.0\lib\win8\um\arm;
1>WindowsSDK_LibraryPath_x64 = C:\Program Files (x86)\Windows Kits\8.0\lib\win8\um\x64;
1>WindowsSDK_LibraryPath_x86 = C:\Program Files (x86)\Windows Kits\8.0\lib\win8\um\x86;
1>WindowsSDK_MetadataPath = C:\Program Files (x86)\Windows Kits\8.0\References\CommonConfiguration\Neutral
1>WindowsSDK80Path = C:\Program Files (x86)\Windows Kits\8.0\
1>WindowsSdkDir = C:\Program Files (x86)\Windows Kits\8.0\
1>WindowsSdkDir_80 = C:\Program Files (x86)\Windows Kits\8.0\
1>WindowsSdkDir_80A = C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\
1>WinMDAssembly = false
1>WIX = C:\Program Files (x86)\WiX Toolset v3.7\
1>WMSJSProject = WJProject
1>WMSJSProjectDirectory = JavaScript
1>XamlBuildTaskAssemblyName = XamlBuildTask, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
1>XamlBuildTaskLocation = C:\Windows\Microsoft.NET\Framework\v4.0.30319
1>XamlDebuggingInformation = true
1>XamlGenCodeFileNames = TestMongoDB.vcxproj.XamlGeneratedCodeFileListAbsolute.txt
1>XamlGenMarkupFileNames = TestMongoDB.vcxproj.XamlGeneratedXamlFileListAbsolute.txt
1>XamlPass2FlagFile = TestMongoDB.vcxproj.XamlPass2Flag.txt
1>XamlRequiresCompilationPass2 = false
1>XamlTemporaryAssemblyName = TestMongoDB
1>YieldDuringToolExecution = true
1>
1>Building with tools version "4.0".
1>Target "_CheckForInvalidConfigurationAndPlatform: (TargetId:2)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (entry point):
1>Task "Error" skipped, due to false condition; ( '$(_InvalidConfigurationError)' == 'true' ) was evaluated as ( '' == 'true' ).
1>Task "Warning" skipped, due to false condition; ( '$(_InvalidConfigurationWarning)' == 'true' ) was evaluated as ( '' == 'true' ).
1>Using "Message" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "Message" (TaskId:2)
1>  Task Parameter:Text=Configuration=Debug (TaskId:2)
1>  Task Parameter:Importance=Low (TaskId:2)
1>  Configuration=Debug (TaskId:2)
1>Done executing task "Message". (TaskId:2)
1>Task "Message" (TaskId:3)
1>  Task Parameter:Text=Platform=Win32 (TaskId:3)
1>  Task Parameter:Importance=Low (TaskId:3)
1>  Platform=Win32 (TaskId:3)
1>Done executing task "Message". (TaskId:3)
1>Task "Error" skipped, due to false condition; ('$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')) was evaluated as ('D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\' != '' and !HasTrailingSlash('D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\')).
1>Task "Error" skipped, due to false condition; ('$(BaseIntermediateOutputPath)' != '' and !HasTrailingSlash('$(BaseIntermediateOutputPath)')) was evaluated as ('obj\' != '' and !HasTrailingSlash('obj\')).
1>Task "Error" skipped, due to false condition; ('$(IntermediateOutputPath)' != '' and !HasTrailingSlash('$(IntermediateOutputPath)')) was evaluated as ('Debug\' != '' and !HasTrailingSlash('Debug\')).
1>Done building target "_CheckForInvalidConfigurationAndPlatform" in project "TestMongoDB.vcxproj".: (TargetId:2)
1>Target "_PrepareForBuild: (TargetId:3)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.BuildSteps.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Task "CreateItem" skipped, due to false condition; ('%(CustomBuild.IncludeFileToTool)'!='') was evaluated as (''!='').
1>Done building target "_PrepareForBuild" in project "TestMongoDB.vcxproj".: (TargetId:3)
1>Target "_PrepareForReferenceResolution: (TargetId:4)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveReferences" depends on it):
1>Task "Message" skipped, due to false condition; ('$(_REFERENCE_DEBUG)'=='true') was evaluated as (''=='true').
1>Done building target "_PrepareForReferenceResolution" in project "TestMongoDB.vcxproj".: (TargetId:4)
1>Target "ComputeCrtSDKReference" skipped, due to false condition; ('@(ClCompile)'!='' and '$(WindowsAppContainer)'=='true' and '$(UseCrtSDKReference)' != 'false') was evaluated as ('stdafx.cpp;TestMongoDB.cpp'!='' and 'false'=='true' and '' != 'false').
1>Target "BeforeResolveReferences: (TargetId:5)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveReferences" depends on it):
1>Done building target "BeforeResolveReferences" in project "TestMongoDB.vcxproj".: (TargetId:5)
1>Target "AssignProjectConfiguration: (TargetId:6)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveReferences" depends on it):
1>Using "AssignProjectConfiguration" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "AssignProjectConfiguration" (TaskId:4)
1>  Task Parameter:CurrentProject=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj (TaskId:4)
1>  Task Parameter:CurrentProjectConfiguration=Debug (TaskId:4)
1>  Task Parameter:CurrentProjectPlatform=Win32 (TaskId:4)
1>  Task Parameter:OutputType=exe (TaskId:4)
1>  Task Parameter:ResolveConfigurationPlatformUsingMappings=False (TaskId:4)
1>  Task Parameter:SolutionConfigurationContents=<SolutionConfiguration>
1>  <ProjectConfiguration Project="{cfdcfb13-2557-4104-9969-9e374c752e62}" AbsolutePath="D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj">Debug|Win32</ProjectConfiguration>
1>  </SolutionConfiguration> (TaskId:4)
1>  Task Parameter:OnlyReferenceAndBuildProjectsEnabledInSolutionConfiguration=True (TaskId:4)
1>  Task Parameter:ShouldUnsetParentConfigurationAndPlatform=True (TaskId:4)
1>Done executing task "AssignProjectConfiguration". (TaskId:4)
1>Done building target "AssignProjectConfiguration" in project "TestMongoDB.vcxproj".: (TargetId:6)
1>Target "AssignProjectConfiguration" skipped. Previously built successfully.
1>Target "_SplitProjectReferencesByFileExistence: (TargetId:7)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveProjectReferences" depends on it):
1>Task "ResolveNonMSBuildProjectOutput" skipped, due to false condition; ('$(BuildingInsideVisualStudio)'=='true' and '@(ProjectReferenceWithConfiguration)'!='') was evaluated as ('true'=='true' and ''!='').
1>Done building target "_SplitProjectReferencesByFileExistence" in project "TestMongoDB.vcxproj".: (TargetId:7)
1>Target "_RemoveNameMetadataFromProjectReferenceItems" skipped, due to false condition; ('@(ProjectReference)'!='') was evaluated as (''!='').
1>Target "ResolveProjectReferences: (TargetId:8)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveReferences" depends on it):
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and ('$(BuildingInsideVisualStudio)' == 'true' or '$(BuildProjectReferences)' != 'true') and '$(VisualStudioVersion)' != '10.0' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and ('true' == 'true' or 'true' != 'true') and '11.0' != '10.0' and '' != '').
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and ('$(BuildingInsideVisualStudio)' == 'true' or '$(BuildProjectReferences)' != 'true') and '$(VisualStudioVersion)' == '10.0' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and ('true' == 'true' or 'true' != 'true') and '11.0' == '10.0' and '' != '').
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '$(BuildingInsideVisualStudio)' != 'true' and '$(BuildProjectReferences)' == 'true' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and 'true' != 'true' and 'true' == 'true' and '' != '').
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '$(BuildingProject)' == 'true' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and 'true' == 'true' and '' != '').
1>Task "Warning" skipped, due to false condition; ('@(ProjectReferenceWithConfiguration)' != '' and '@(_MSBuildProjectReferenceNonexistent)' != '') was evaluated as ('' != '' and '' != '').
1>Done building target "ResolveProjectReferences" in project "TestMongoDB.vcxproj".: (TargetId:8)
1>Target "ResolveNativeReferences" skipped, due to false condition; ('@(NativeReference)'!='') was evaluated as (''!='').
1>Target "_PrepareForReferenceResolution" skipped. Previously built successfully.
1>Target "GetFrameworkPaths: (TargetId:9)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.NETFramework.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveAssemblyReferences" depends on it):
1>Done building target "GetFrameworkPaths" in project "TestMongoDB.vcxproj".: (TargetId:9)
1>Target "GetWinFXPath" skipped, due to false condition; (('@(Page)' != '' or '@(ApplicationDefinition)' != '' or '@(Resource)' != '') and ('$(GetWinFXNativePath)' != '' or '$(GetWinFXWoWPath)' != '' )) was evaluated as (('' != '' or '' != '' or '' != '') and ('' != '' or '' != '' )).
1>Target "GetReferenceAssemblyPaths: (TargetId:10)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveAssemblyReferences" depends on it):
1>Task "GetReferenceAssemblyPaths" skipped, due to false condition; ('$(TargetFrameworkMoniker)' != '' and ('$(_TargetFrameworkDirectories)' == '' or '$(_FullFrameworkReferenceAssemblyPaths)' == '')) was evaluated as ('' != '' and ('C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0' == '' or 'C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0' == '')).
1>Done building target "GetReferenceAssemblyPaths" in project "TestMongoDB.vcxproj".: (TargetId:10)
1>Target "SetBuildDefaultEnvironmentVariables: (TargetId:11)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.Cpp.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "PrepareForBuild" depends on it):
1>Using "SetEnv" task from assembly "Microsoft.Build.CppTasks.Common.v110, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "SetEnv" (TaskId:5)
1>  Task Parameter:Name=PATH (TaskId:5)
1>  Task Parameter:Value=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin;C:\Program Files (x86)\Windows Kits\8.0\bin\x86;;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\bin;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\ide;C:\Program Files (x86)\HTML Help Workshop;C:\Windows\Microsoft.NET\Framework\v4.0.30319\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\;C:\Windows\SysWow64;;C:\Python27\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\PostgreSQL\9.3\lib;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\build-boost\include\boost-1_56\; (TaskId:5)
1>  Task Parameter:Prefix=False (TaskId:5)
1>  PATH=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin;C:\Program Files (x86)\Windows Kits\8.0\bin\x86;;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\bin;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\tools;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\ide;C:\Program Files (x86)\HTML Help Workshop;C:\Windows\Microsoft.NET\Framework\v4.0.30319\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\;C:\Windows\SysWow64;;C:\Python27\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\PostgreSQL\9.3\lib;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\build-boost\include\boost-1_56\; (TaskId:5)
1>Done executing task "SetEnv". (TaskId:5)
1>Task "SetEnv" skipped, due to false condition; ('$(_IsNativeEnvironment)' == 'true') was evaluated as ('' == 'true').
1>Task "SetEnv" (TaskId:6)
1>  Task Parameter:Name=LIB (TaskId:6)
1>  Task Parameter:Value=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Windows Kits\8.0\lib\win8\um\x86;; (TaskId:6)
1>  Task Parameter:Prefix=False (TaskId:6)
1>  LIB=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Windows Kits\8.0\lib\win8\um\x86;; (TaskId:6)
1>Done executing task "SetEnv". (TaskId:6)
1>Task "SetEnv" (TaskId:7)
1>  Task Parameter:Name=LIBPATH (TaskId:7)
1>  Task Parameter:Value=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib (TaskId:7)
1>  Task Parameter:Prefix=False (TaskId:7)
1>  LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib (TaskId:7)
1>Done executing task "SetEnv". (TaskId:7)
1>Task "SetEnv" (TaskId:8)
1>  Task Parameter:Name=INCLUDE (TaskId:8)
1>  Task Parameter:Value=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\include;C:\Program Files (x86)\Windows Kits\8.0\Include\um;C:\Program Files (x86)\Windows Kits\8.0\Include\shared;C:\Program Files (x86)\Windows Kits\8.0\Include\winrt;; (TaskId:8)
1>  Task Parameter:Prefix=False (TaskId:8)
1>  INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\include;C:\Program Files (x86)\Windows Kits\8.0\Include\um;C:\Program Files (x86)\Windows Kits\8.0\Include\shared;C:\Program Files (x86)\Windows Kits\8.0\Include\winrt;; (TaskId:8)
1>Done executing task "SetEnv". (TaskId:8)
1>Done building target "SetBuildDefaultEnvironmentVariables" in project "TestMongoDB.vcxproj".: (TargetId:11)
1>Target "SetUserMacroEnvironmentVariables" skipped, due to false condition; ('@(BuildMacro)' != '') was evaluated as ('' != '').
1>Target "GetResolvedWinMD: (TargetId:12)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "PrepareForBuild" depends on it):
1>Done building target "GetResolvedWinMD" in project "TestMongoDB.vcxproj".: (TargetId:12)
1>Target "PlatformPrepareForBuild: (TargetId:13)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.Cpp.Platform.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "PrepareForBuild" depends on it):
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(ConfigurationPlatformExists)' != 'true') was evaluated as (''!='true' and 'true' != 'true').
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(ToolsetTargetsFound)' != 'true' and '$(PlatformToolset)' == 'v100') was evaluated as (''!='true' and 'true' != 'true' and 'v110' == 'v100').
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(ToolsetTargetsFound)' != 'true' and '$(PlatformToolset)' == 'v90') was evaluated as (''!='true' and 'true' != 'true' and 'v110' == 'v90').
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(ToolsetTargetsFound)' != 'true' and '$(PlatformToolset)' != 'v90' and '$(PlatformToolset)' != 'v100') was evaluated as (''!='true' and 'true' != 'true' and 'v110' != 'v90' and 'v110' != 'v100').
1>Done building target "PlatformPrepareForBuild" in project "TestMongoDB.vcxproj".: (TargetId:13)
1>Target "GetFrameworkPaths" skipped. Previously built successfully.
1>Target "GetReferenceAssemblyPaths" skipped. Previously built successfully.
1>Target "PrepareForBuild: (TargetId:14)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveAssemblyReferences" depends on it):
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(ConfigurationPlatformExists)' != 'true') was evaluated as (''!='true' and 'true' != 'true').
1>Using "MakeDir" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "MakeDir" (TaskId:9)
1>  Task Parameter:Directories=Debug\ (TaskId:9)
1>Done executing task "MakeDir". (TaskId:9)
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(WindowsAppContainer)'=='true' and '$(ConfigurationType)'!='Application' and '$(ConfigurationType)'!='DynamicLibrary' and '$(ConfigurationType)'!='StaticLibrary') was evaluated as (''!='true' and 'false'=='true' and 'Application'!='Application' and 'Application'!='DynamicLibrary' and 'Application'!='StaticLibrary').
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(VCInstallDir)'=='' and '$(UseEnv)' != 'true' and ($(TargetFrameworkVersion)=='v3.5' or $(TargetFrameworkVersion)=='v3.0' or $(TargetFrameworkVersion)=='v2.0' )) was evaluated as (''!='true' and 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\'=='' and '' != 'true' and (v4.0=='v3.5' or v4.0=='v3.0' or v4.0=='v2.0' )).
1>Task "VCMessage" skipped, due to false condition; ('$(DesignTimeBuild)'!='true' and '$(VCInstallDir)'=='' and '$(UseEnv)' != 'true' and '$(PlatformToolset)'=='v90') was evaluated as (''!='true' and 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\'=='' and '' != 'true' and 'v110'=='v90').
1>Task "VCMessage" skipped, due to false condition; ('$(VCInstallDir)'=='' and '$(UseEnv)' != 'true') was evaluated as ('C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\'=='' and '' != 'true').
1>Task "VCMessage" skipped, due to false condition; ('$(WindowsSDKDir)'=='' and '$(UseEnv)' != 'true') was evaluated as ('C:\Program Files (x86)\Windows Kits\8.0\'=='' and '' != 'true').
1>Task "VCMessage" skipped, due to false condition; ('$(IntDirTrailingSlashWarning)'=='true') was evaluated as (''=='true').
1>Task "VCMessage" skipped, due to false condition; ('$(OutDirTrailingSlashWarning)'=='true') was evaluated as (''=='true').
1>Task "VCMessage" skipped, due to false condition; ('%(CompatibilityIssues.Identity)' != '' and '$(DesignTimeBuild)'!='true') was evaluated as ('' != '' and ''!='true').
1>Task "MakeDir" (TaskId:10)
1>  Task Parameter:
1>      Directories=
1>          Debug\
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\
1>          Debug\ (TaskId:10)
1>Done executing task "MakeDir". (TaskId:10)
1>Done building target "PrepareForBuild" in project "TestMongoDB.vcxproj".: (TargetId:14)
1>Target "_PrepareForReferenceResolution" skipped. Previously built successfully.
1>Target "ComputeCrtSDKReference" skipped, due to false condition; ('@(ClCompile)'!='' and '$(WindowsAppContainer)'=='true' and '$(UseCrtSDKReference)' != 'false') was evaluated as ('stdafx.cpp;TestMongoDB.cpp'!='' and 'false'=='true' and '' != 'false').
1>Target "GetInstalledSDKLocations: (TargetId:15)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveSDKReferences" depends on it):
1>Task "GetInstalledSDKLocations" skipped, due to false condition; ('@(SDKReference)' != '') was evaluated as ('' != '').
1>Done building target "GetInstalledSDKLocations" in project "TestMongoDB.vcxproj".: (TargetId:15)
1>Target "ResolveSDKReferences: (TargetId:16)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveAssemblyReferences" depends on it):
1>Task "ResolveSDKReference" skipped, due to false condition; ('@(SDKReference)'!='') was evaluated as (''!='').
1>Done building target "ResolveSDKReferences" in project "TestMongoDB.vcxproj".: (TargetId:16)
1>Target "ResolveSDKReferences" skipped. Previously built successfully.
1>Target "ExpandSDKReferences: (TargetId:17)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveAssemblyReferences" depends on it):
1>Task "GetSDKReferenceFiles" skipped, due to false condition; ('@(ResolvedSDKReference)'!='') was evaluated as (''!='').
1>Done building target "ExpandSDKReferences" in project "TestMongoDB.vcxproj".: (TargetId:17)
1>Target "FakesGenerateBeforeBuild" skipped, due to false condition; (@(Fakes) != '' AND $(BuildingProject)) was evaluated as ( != '' AND true).
1>Target "ResolveAssemblyReferences: (TargetId:18)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveReferences" depends on it):
1>Task "ResolveAssemblyReference" skipped, due to false condition; ('@(Reference)'!='' or '@(_ResolvedProjectReferencePaths)'!='' or '@(_ExplicitReference)' != '') was evaluated as (''!='' or ''!='' or '' != '').
1>Done building target "ResolveAssemblyReferences" in project "TestMongoDB.vcxproj".: (TargetId:18)
1>Target "ResolveComReferences" skipped, due to false condition; ('@(COMReference)'!='' or '@(COMFileReference)'!='') was evaluated as (''!='' or ''!='').
1>Target "AfterResolveReferences: (TargetId:19)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ResolveReferences" depends on it):
1>Done building target "AfterResolveReferences" in project "TestMongoDB.vcxproj".: (TargetId:19)
1>Target "ImplicitlyExpandDesignTimeFacades" skipped, due to false condition; ('$(ImplicitlyExpandDesignTimeFacades)' == 'true') was evaluated as ('' == 'true').
1>Target "ResolveTestReferences" skipped, due to false condition; ('@(Shadow)'!='') was evaluated as (''!='').
1>Target "ResolveReferences: (TargetId:20)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Done building target "ResolveReferences" in project "TestMongoDB.vcxproj".: (TargetId:20)
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "InitializeBuildStatus: (TargetId:21)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Using "ReadLinesFromFile" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "ReadLinesFromFile" (TaskId:11)
1>  Task Parameter:File=Debug\TestMongoDB.lastbuildstate (TaskId:11)
1>Done executing task "ReadLinesFromFile". (TaskId:11)
1>Using "WriteLinesToFile" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "WriteLinesToFile" (TaskId:12)
1>  Task Parameter:Overwrite=True (TaskId:12)
1>  Task Parameter:File=Debug\TestMongoDB.lastbuildstate (TaskId:12)
1>  Task Parameter:
1>      Lines=
1>          #v4.0:v110:false
1>          Debug|Win32|D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\| (TaskId:12)
1>Done executing task "WriteLinesToFile". (TaskId:12)
1>Using "Touch" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "Touch" (TaskId:13)
1>  Task Parameter:AlwaysCreate=True (TaskId:13)
1>  Task Parameter:Files=Debug\TestMongoDB.unsuccessfulbuild (TaskId:13)
1>  Creating "Debug\TestMongoDB.unsuccessfulbuild" because "AlwaysCreate" was specified. (TaskId:13)
1>Done executing task "Touch". (TaskId:13)
1>Done building target "InitializeBuildStatus" in project "TestMongoDB.vcxproj".: (TargetId:21)
1>Target "AssignProjectConfiguration" skipped. Previously built successfully.
1>Target "_SplitProjectReferencesByFileExistence" skipped. Previously built successfully.
1>Target "BuildGenerateSourcesTraverse: (TargetId:22)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "BuildGenerateSources" depends on it):
1>Task "MSBuild" skipped, due to false condition; ('$(BuildPassReferences)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '@(_MSBuildProjectReferenceExistent)' != '' and '%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true') was evaluated as ('' == 'true' and '' != '' and '' != '' and '' == 'true').
1>Done building target "BuildGenerateSourcesTraverse" in project "TestMongoDB.vcxproj".: (TargetId:22)
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "ResolveReferences" skipped. Previously built successfully.
1>Target "BeforeBuildGenerateSources: (TargetId:23)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.BuildSteps.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildGenerateSourcesAction" depends on it):
1>Done building target "BeforeBuildGenerateSources" in project "TestMongoDB.vcxproj".: (TargetId:23)
1>Target "PreBuildEvent: (TargetId:24)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildGenerateSourcesAction" depends on it):
1>Task "Message" skipped, due to false condition; ('%(PreBuildEvent.Message)' != '' and '%(PreBuildEvent.Command)' != '') was evaluated as ('' != '' and '' != '').
1>Task "Exec" skipped, due to false condition; ('%(PreBuildEvent.Command)' != '') was evaluated as ('' != '').
1>Done building target "PreBuildEvent" in project "TestMongoDB.vcxproj".: (TargetId:24)
1>Target "CustomBuild" skipped, due to false condition; ('@(CustomBuild)' != '') was evaluated as ('' != '').
1>Target "FxCompile" skipped, due to false condition; ('@(FxCompile)' != '') was evaluated as ('' != '').
1>Target "Xsd" skipped, due to false condition; ('@(Xsd)' != '') was evaluated as ('' != '').
1>Target "_Xsd: (TargetId:25)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildGenerateSourcesAction" depends on it):
1>Done building target "_Xsd" in project "TestMongoDB.vcxproj".: (TargetId:25)
1>Target "MakeDirsForMidl: (TargetId:26)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Midl" depends on it):
1>Task "Makedir" (TaskId:14)
1>Done executing task "Makedir". (TaskId:14)
1>Done building target "MakeDirsForMidl" in project "TestMongoDB.vcxproj".: (TargetId:26)
1>Target "Midl" skipped, due to false condition; ('@(Midl)' != '') was evaluated as ('' != '').
1>Target "CustomBuild" skipped, due to false condition; ('@(CustomBuild)' != '') was evaluated as ('' != '').
1>Target "FxCompile" skipped, due to false condition; ('@(FxCompile)' != '') was evaluated as ('' != '').
1>Target "ComputeMIDLGeneratedCompileInputs: (TargetId:27)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Midl" depends on it):
1>Done building target "ComputeMIDLGeneratedCompileInputs" in project "TestMongoDB.vcxproj".: (TargetId:27)
1>Target "AfterMidl: (TargetId:28)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Midl" depends on it):
1>Done building target "AfterMidl" in project "TestMongoDB.vcxproj".: (TargetId:28)
1>Target "_Midl: (TargetId:29)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildGenerateSourcesAction" depends on it):
1>Done building target "_Midl" in project "TestMongoDB.vcxproj".: (TargetId:29)
1>Target "AfterBuildGenerateSources: (TargetId:30)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.BuildSteps.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildGenerateSourcesAction" depends on it):
1>Done building target "AfterBuildGenerateSources" in project "TestMongoDB.vcxproj".: (TargetId:30)
1>Target "AfterBuildGenerateSourcesEvent: (TargetId:31)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildGenerateSourcesAction" depends on it):
1>Done building target "AfterBuildGenerateSourcesEvent" in project "TestMongoDB.vcxproj".: (TargetId:31)
1>Target "_BuildGenerateSourcesAction: (TargetId:32)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "BuildGenerateSources" depends on it):
1>Done building target "_BuildGenerateSourcesAction" in project "TestMongoDB.vcxproj".: (TargetId:32)
1>Target "BuildGenerateSources: (TargetId:33)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Done building target "BuildGenerateSources" in project "TestMongoDB.vcxproj".: (TargetId:33)
1>Target "AssignProjectConfiguration" skipped. Previously built successfully.
1>Target "_SplitProjectReferencesByFileExistence" skipped. Previously built successfully.
1>Target "BuildCompileTraverse: (TargetId:34)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "BuildCompile" depends on it):
1>Task "MSBuild" skipped, due to false condition; ('$(BuildPassReferences)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '@(_MSBuildProjectReferenceExistent)' != ''  and '%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true') was evaluated as ('' == 'true' and '' != '' and '' != ''  and '' == 'true').
1>Done building target "BuildCompileTraverse" in project "TestMongoDB.vcxproj".: (TargetId:34)
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "ResolveReferences" skipped. Previously built successfully.
1>Target "BeforeClCompile: (TargetId:35)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ClCompile" depends on it):
1>Done building target "BeforeClCompile" in project "TestMongoDB.vcxproj".: (TargetId:35)
1>Target "ComputeMIDLGeneratedCompileInputs" skipped. Previously built successfully.
1>Target "ComputeCLInputPDBName: (TargetId:36)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ClCompile" depends on it):
1>Done building target "ComputeCLInputPDBName" in project "TestMongoDB.vcxproj".: (TargetId:36)
1>Target "ResolveReferences" skipped. Previously built successfully.
1>Target "ComputeReferenceCLInput: (TargetId:37)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ClCompile" depends on it):
1>Task "WriteLinesToFile" skipped, due to false condition; (('@(_ReferenceCopyLocalPaths)'!='') and '$(DesignTimeBuild)' != 'true') was evaluated as ((''!='') and '' != 'true').
1>Task "Message" skipped, due to false condition; ('$(_REFERENCE_DEBUG)'=='true') was evaluated as (''=='true').
1>Done building target "ComputeReferenceCLInput" in project "TestMongoDB.vcxproj".: (TargetId:37)
1>Target "MakeDirsForCl: (TargetId:38)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ClCompile" depends on it):
1>Task "MakeDir" (TaskId:15)
1>  Task Parameter:
1>      Directories=
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug (TaskId:15)
1>Done executing task "MakeDir". (TaskId:15)
1>Done building target "MakeDirsForCl" in project "TestMongoDB.vcxproj".: (TargetId:38)
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "SetBuildDefaultEnvironmentVariables" skipped. Previously built successfully.
1>Target "SetUserMacroEnvironmentVariables" skipped, due to false condition; ('@(BuildMacro)' != '') was evaluated as ('' != '').
1>Target "_SelectedFiles: (TargetId:39)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "SelectClCompile" depends on it):
1>Done building target "_SelectedFiles" in project "TestMongoDB.vcxproj".: (TargetId:39)
1>Target "ComputeMIDLGeneratedCompileInputs" skipped. Previously built successfully.
1>Target "ComputeCLInputPDBName" skipped. Previously built successfully.
1>Target "ComputeReferenceCLInput" skipped. Previously built successfully.
1>Target "_SelectedFiles" skipped. Previously built successfully.
1>Target "SelectCustomBuild: (TargetId:40)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "SelectClCompile" depends on it):
1>Done building target "SelectCustomBuild" in project "TestMongoDB.vcxproj".: (TargetId:40)
1>Target "SelectClCompile: (TargetId:41)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ClCompile" depends on it):
1>Done building target "SelectClCompile" in project "TestMongoDB.vcxproj".: (TargetId:41)
1>Target "GenerateTargetFrameworkMonikerAttribute" skipped, due to false condition; ('$(GenerateTargetFrameworkAttribute)' == 'true') was evaluated as ('false' == 'true').
1>Target "ManagedIncrementalBuildPreProcessDependencyGraph" skipped, due to false condition; ('@(ClCompile)' != '' and '$(EnableManagedIncrementalBuild)' == 'True') was evaluated as ('stdafx.cpp;TestMongoDB.cpp' != '' and 'false' == 'True').
1>Target "ClCompile: (TargetId:42)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ClCompile" depends on it):
1>Using "Delete" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "Delete" (TaskId:16)
1>  Task Parameter:Files=Debug\TestMongoDB.pch (TaskId:16)
1>  File "Debug\TestMongoDB.pch" doesn't exist. Skipping. (TaskId:16)
1>Done executing task "Delete". (TaskId:16)
1>Using "CL" task from assembly "Microsoft.Build.CppTasks.Common.v110, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "CL" (TaskId:17)
1>  Task Parameter:BuildingInIde=True (TaskId:17)
1>  Task Parameter:
1>      Sources=
1>          stdafx.cpp
1>                  AcceptableNonZeroExitCodes=
1>                  AdditionalIncludeDirectories=C:\mongo_driver_legacy\mongo_client_32_release\include;C:\Temp\boost_1_56_0;
1>                  AssemblerListingLocation=
1>                  AssemblerOutput=NoListing
1>                  BasicRuntimeChecks=EnableFastChecks
1>                  BrowseInformation=false
1>                  BrowseInformationFile=Debug\
1>                  BufferSecurityCheck=true
1>                  CallingConvention=Cdecl
1>                  CompileAs=CompileAsCpp
1>                  DebugInformationFormat=EditAndContinue
1>                  DisableLanguageExtensions=false
1>                  EnableEnhancedInstructionSet=NotSet
1>                  EnableFiberSafeOptimizations=false
1>                  EnablePREfast=false
1>                  ErrorReporting=Prompt
1>                  ExceptionHandling=Sync
1>                  ExpandAttributedSource=false
1>                  FavorSizeOrSpeed=Neither
1>                  FloatingPointModel=Precise
1>                  ForceConformanceInForLoopScope=true
1>                  ForcedIncludeFiles=
1>                  ForcedUsingFiles=
1>                  GenerateXMLDocumentationFiles=false
1>                  IgnoreStandardIncludePath=false
1>                  ImpLibCompiled=
1>                  InlineFunctionExpansion=Default
1>                  IntrinsicFunctions=false
1>                  LibCompiled=
1>                  LinkCompiled=true
1>                  MinimalRebuild=true
1>                  MinimalRebuildFromTracking=true
1>                  ObjectFileName=Debug\
1>                  OmitDefaultLibName=false
1>                  OmitFramePointers=false
1>                  Optimization=Disabled
1>                  PrecompiledHeader=Create
1>                  PrecompiledHeaderFile=stdafx.h
1>                  PrecompiledHeaderOutputFile=Debug\TestMongoDB.pch
1>                  PreprocessKeepComments=false
1>                  PreprocessorDefinitions=WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;
1>                  PreprocessSuppressLineNumbers=false
1>                  PreprocessToFile=false
1>                  ProgramDataBaseFileName=Debug\vc110.pdb
1>                  RuntimeLibrary=MultiThreadedDLL
1>                  SDLCheck=true
1>                  ShowIncludes=false
1>                  SmallerTypeCheck=false
1>                  StructMemberAlignment=Default
1>                  SuppressStartupBanner=false
1>                  TrackerLogDirectory=Debug\
1>                  TreatWarningAsError=false
1>                  TreatWChar_tAsBuiltInType=true
1>                  UndefineAllPreprocessorDefinitions=false
1>                  UseFullPaths=false
1>                  UseUnicodeForAssemblerListing=
1>                  WarningLevel=TurnOffAllWarnings
1>                  WholeProgramOptimization=false
1>                  WinRTNoStdLib=false
1>                  XMLDocumentationFileName=Debug\ (TaskId:17)
1>  Task Parameter:
1>      AdditionalIncludeDirectories=
1>          C:\mongo_driver_legacy\mongo_client_32_release\include
1>          C:\Temp\boost_1_56_0 (TaskId:17)
1>  Task Parameter:AssemblerOutput=NoListing (TaskId:17)
1>  Task Parameter:BasicRuntimeChecks=EnableFastChecks (TaskId:17)
1>  Task Parameter:BrowseInformation=False (TaskId:17)
1>  Task Parameter:BrowseInformationFile=Debug\ (TaskId:17)
1>  Task Parameter:BufferSecurityCheck=True (TaskId:17)
1>  Task Parameter:CallingConvention=Cdecl (TaskId:17)
1>  Task Parameter:CompileAs=CompileAsCpp (TaskId:17)
1>  Task Parameter:DebugInformationFormat=EditAndContinue (TaskId:17)
1>  Task Parameter:DisableLanguageExtensions=False (TaskId:17)
1>  Task Parameter:EnableEnhancedInstructionSet=NotSet (TaskId:17)
1>  Task Parameter:EnableFiberSafeOptimizations=False (TaskId:17)
1>  Task Parameter:EnablePREfast=False (TaskId:17)
1>  Task Parameter:ErrorReporting=Prompt (TaskId:17)
1>  Task Parameter:ExceptionHandling=Sync (TaskId:17)
1>  Task Parameter:
1>      ExcludedInputPaths=
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\include
1>          C:\Program Files (x86)\Windows Kits\8.0\Include\um
1>          C:\Program Files (x86)\Windows Kits\8.0\Include\shared
1>          C:\Program Files (x86)\Windows Kits\8.0\Include\winrt
1>          C:\Windows\Microsoft.NET\Framework\v4.0.30319\
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib (TaskId:17)
1>  Task Parameter:ExpandAttributedSource=False (TaskId:17)
1>  Task Parameter:FavorSizeOrSpeed=Neither (TaskId:17)
1>  Task Parameter:FloatingPointModel=Precise (TaskId:17)
1>  Task Parameter:ForceConformanceInForLoopScope=True (TaskId:17)
1>  Task Parameter:GenerateXMLDocumentationFiles=False (TaskId:17)
1>  Task Parameter:IgnoreStandardIncludePath=False (TaskId:17)
1>  Task Parameter:InlineFunctionExpansion=Default (TaskId:17)
1>  Task Parameter:IntrinsicFunctions=False (TaskId:17)
1>  Task Parameter:MinimalRebuild=True (TaskId:17)
1>  Task Parameter:ObjectFileName=Debug\ (TaskId:17)
1>  Task Parameter:OmitDefaultLibName=False (TaskId:17)
1>  Task Parameter:OmitFramePointers=False (TaskId:17)
1>  Task Parameter:Optimization=Disabled (TaskId:17)
1>  Task Parameter:PrecompiledHeader=Create (TaskId:17)
1>  Task Parameter:PrecompiledHeaderFile=stdafx.h (TaskId:17)
1>  Task Parameter:PrecompiledHeaderOutputFile=Debug\TestMongoDB.pch (TaskId:17)
1>  Task Parameter:PreprocessKeepComments=False (TaskId:17)
1>  Task Parameter:
1>      PreprocessorDefinitions=
1>          WIN32
1>          _DEBUG
1>          _CONSOLE
1>          _CRT_SECURE_NO_WARNINGS
1>          _UNICODE
1>          UNICODE (TaskId:17)
1>  Task Parameter:PreprocessSuppressLineNumbers=False (TaskId:17)
1>  Task Parameter:PreprocessToFile=False (TaskId:17)
1>  Task Parameter:ProgramDataBaseFileName=Debug\vc110.pdb (TaskId:17)
1>  Task Parameter:RuntimeLibrary=MultiThreadedDLL (TaskId:17)
1>  Task Parameter:SDLCheck=True (TaskId:17)
1>  Task Parameter:ShowIncludes=False (TaskId:17)
1>  Task Parameter:SmallerTypeCheck=False (TaskId:17)
1>  Task Parameter:StructMemberAlignment=Default (TaskId:17)
1>  Task Parameter:SuppressStartupBanner=False (TaskId:17)
1>  Task Parameter:TreatWarningAsError=False (TaskId:17)
1>  Task Parameter:TreatWChar_tAsBuiltInType=True (TaskId:17)
1>  Task Parameter:UndefineAllPreprocessorDefinitions=False (TaskId:17)
1>  Task Parameter:UseFullPaths=False (TaskId:17)
1>  Task Parameter:WarningLevel=TurnOffAllWarnings (TaskId:17)
1>  Task Parameter:WholeProgramOptimization=False (TaskId:17)
1>  Task Parameter:WinRTNoStdLib=False (TaskId:17)
1>  Task Parameter:XMLDocumentationFileName=Debug\ (TaskId:17)
1>  Task Parameter:TrackerLogDirectory=Debug\ (TaskId:17)
1>  Task Parameter:TrackFileAccess=True (TaskId:17)
1>  Task Parameter:MinimalRebuildFromTracking=True (TaskId:17)
1>  Task Parameter:ToolArchitecture=Native32Bit (TaskId:17)
1>  Task Parameter:YieldDuringToolExecution=True (TaskId:17)
1>  Forcing recompile of all source files due to missing PDB "Debug\vc110.pdb". (TaskId:17)
1>  Environment Variables passed to tool: (TaskId:17)
1>    VS_UNICODE_OUTPUT=1336 (TaskId:17)
1>  Tracking command: (TaskId:17)
1>  C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\Tracker.exe /d C:\Windows\Microsoft.NET\Framework\v4.0.30319\FileTracker.dll /i D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug /r D:\DESARROLLOS\PROYECTO_MAM\TEMP\TESTMONGODB\TESTMONGODB\STDAFX.CPP /b MSBuildConsole_CancelEvent1a310b7c3f20407ca7b6eb339d04e490  /c "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\CL.exe"  /c /IC:\mongo_driver_legacy\mongo_client_32_release\include /IC:\Temp\boost_1_56_0 /ZI /nologo- /W0 /WX- /sdl /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _CRT_SECURE_NO_WARNINGS /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MD /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yc"stdafx.h" /Fp"Debug\TestMongoDB.pch" /Fo"Debug\\" /Fd"Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt stdafx.cpp (TaskId:17)
1>  Microsoft (R) C/C++ Optimizing Compiler Version 17.00.61030 for x86 (TaskId:17)
1>  Copyright (C) Microsoft Corporation.  All rights reserved. (TaskId:17)
1>   (TaskId:17)
1>  cl /c /IC:\mongo_driver_legacy\mongo_client_32_release\include /IC:\Temp\boost_1_56_0 /ZI /nologo- /W0 /WX- /sdl /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _CRT_SECURE_NO_WARNINGS /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MD /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yc"stdafx.h" /Fp"Debug\TestMongoDB.pch" /Fo"Debug\\" /Fd"Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt stdafx.cpp (TaskId:17)
1>cl : Command line warning D9035: option 'nologo-' has been deprecated and will be removed in a future release
1>   (TaskId:17)
1>  stdafx.cpp (TaskId:17)
1>Done executing task "CL". (TaskId:17)
1>Task "CL" skipped, due to false condition; ('%(ClCompile.PrecompiledHeader)' == 'Create' and '%(ClCompile.ExcludedFromBuild)'!='true' and '%(ClCompile.CompilerIteration)' == '') was evaluated as ('Use' == 'Create' and ''!='true' and '' == '').
1>Task "CL" skipped, due to false condition; ('%(ClCompile.PrecompiledHeader)' != 'Create' and '%(ClCompile.ExcludedFromBuild)'!='true' and '%(ClCompile.CompilerIteration)' == '') was evaluated as ('Create' != 'Create' and ''!='true' and '' == '').
1>Task "CL" (TaskId:18)
1>  Task Parameter:BuildingInIde=True (TaskId:18)
1>  Task Parameter:
1>      Sources=
1>          TestMongoDB.cpp
1>                  AcceptableNonZeroExitCodes=
1>                  AdditionalIncludeDirectories=C:\mongo_driver_legacy\mongo_client_32_release\include;C:\Temp\boost_1_56_0;
1>                  AssemblerListingLocation=
1>                  AssemblerOutput=NoListing
1>                  BasicRuntimeChecks=EnableFastChecks
1>                  BrowseInformation=false
1>                  BrowseInformationFile=Debug\
1>                  BufferSecurityCheck=true
1>                  CallingConvention=Cdecl
1>                  CompileAs=CompileAsCpp
1>                  DebugInformationFormat=EditAndContinue
1>                  DisableLanguageExtensions=false
1>                  EnableEnhancedInstructionSet=NotSet
1>                  EnableFiberSafeOptimizations=false
1>                  EnablePREfast=false
1>                  ErrorReporting=Prompt
1>                  ExceptionHandling=Sync
1>                  ExpandAttributedSource=false
1>                  FavorSizeOrSpeed=Neither
1>                  FloatingPointModel=Precise
1>                  ForceConformanceInForLoopScope=true
1>                  ForcedIncludeFiles=
1>                  ForcedUsingFiles=
1>                  GenerateXMLDocumentationFiles=false
1>                  IgnoreStandardIncludePath=false
1>                  ImpLibCompiled=
1>                  InlineFunctionExpansion=Default
1>                  IntrinsicFunctions=false
1>                  LibCompiled=
1>                  LinkCompiled=true
1>                  MinimalRebuild=true
1>                  MinimalRebuildFromTracking=true
1>                  ObjectFileName=Debug\
1>                  OmitDefaultLibName=false
1>                  OmitFramePointers=false
1>                  Optimization=Disabled
1>                  PrecompiledHeader=Use
1>                  PrecompiledHeaderFile=stdafx.h
1>                  PrecompiledHeaderOutputFile=Debug\TestMongoDB.pch
1>                  PreprocessKeepComments=false
1>                  PreprocessorDefinitions=WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;_UNICODE;UNICODE;
1>                  PreprocessSuppressLineNumbers=false
1>                  PreprocessToFile=false
1>                  ProgramDataBaseFileName=Debug\vc110.pdb
1>                  RuntimeLibrary=MultiThreadedDLL
1>                  SDLCheck=true
1>                  ShowIncludes=false
1>                  SmallerTypeCheck=false
1>                  StructMemberAlignment=Default
1>                  SuppressStartupBanner=false
1>                  TrackerLogDirectory=Debug\
1>                  TreatWarningAsError=false
1>                  TreatWChar_tAsBuiltInType=true
1>                  UndefineAllPreprocessorDefinitions=false
1>                  UseFullPaths=false
1>                  UseUnicodeForAssemblerListing=
1>                  WarningLevel=TurnOffAllWarnings
1>                  WholeProgramOptimization=false
1>                  WinRTNoStdLib=false
1>                  XMLDocumentationFileName=Debug\ (TaskId:18)
1>  Task Parameter:
1>      AdditionalIncludeDirectories=
1>          C:\mongo_driver_legacy\mongo_client_32_release\include
1>          C:\Temp\boost_1_56_0 (TaskId:18)
1>  Task Parameter:AssemblerOutput=NoListing (TaskId:18)
1>  Task Parameter:BasicRuntimeChecks=EnableFastChecks (TaskId:18)
1>  Task Parameter:BrowseInformation=False (TaskId:18)
1>  Task Parameter:BrowseInformationFile=Debug\ (TaskId:18)
1>  Task Parameter:BufferSecurityCheck=True (TaskId:18)
1>  Task Parameter:CallingConvention=Cdecl (TaskId:18)
1>  Task Parameter:CompileAs=CompileAsCpp (TaskId:18)
1>  Task Parameter:DebugInformationFormat=EditAndContinue (TaskId:18)
1>  Task Parameter:DisableLanguageExtensions=False (TaskId:18)
1>  Task Parameter:EnableEnhancedInstructionSet=NotSet (TaskId:18)
1>  Task Parameter:EnableFiberSafeOptimizations=False (TaskId:18)
1>  Task Parameter:EnablePREfast=False (TaskId:18)
1>  Task Parameter:ErrorReporting=Prompt (TaskId:18)
1>  Task Parameter:ExceptionHandling=Sync (TaskId:18)
1>  Task Parameter:
1>      ExcludedInputPaths=
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\include
1>          C:\Program Files (x86)\Windows Kits\8.0\Include\um
1>          C:\Program Files (x86)\Windows Kits\8.0\Include\shared
1>          C:\Program Files (x86)\Windows Kits\8.0\Include\winrt
1>          C:\Windows\Microsoft.NET\Framework\v4.0.30319\
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\lib
1>          C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib (TaskId:18)
1>  Task Parameter:ExpandAttributedSource=False (TaskId:18)
1>  Task Parameter:FavorSizeOrSpeed=Neither (TaskId:18)
1>  Task Parameter:FloatingPointModel=Precise (TaskId:18)
1>  Task Parameter:ForceConformanceInForLoopScope=True (TaskId:18)
1>  Task Parameter:GenerateXMLDocumentationFiles=False (TaskId:18)
1>  Task Parameter:IgnoreStandardIncludePath=False (TaskId:18)
1>  Task Parameter:InlineFunctionExpansion=Default (TaskId:18)
1>  Task Parameter:IntrinsicFunctions=False (TaskId:18)
1>  Task Parameter:MinimalRebuild=True (TaskId:18)
1>  Task Parameter:ObjectFileName=Debug\ (TaskId:18)
1>  Task Parameter:OmitDefaultLibName=False (TaskId:18)
1>  Task Parameter:OmitFramePointers=False (TaskId:18)
1>  Task Parameter:Optimization=Disabled (TaskId:18)
1>  Task Parameter:PrecompiledHeader=Use (TaskId:18)
1>  Task Parameter:PrecompiledHeaderFile=stdafx.h (TaskId:18)
1>  Task Parameter:PrecompiledHeaderOutputFile=Debug\TestMongoDB.pch (TaskId:18)
1>  Task Parameter:PreprocessKeepComments=False (TaskId:18)
1>  Task Parameter:
1>      PreprocessorDefinitions=
1>          WIN32
1>          _DEBUG
1>          _CONSOLE
1>          _CRT_SECURE_NO_WARNINGS
1>          _UNICODE
1>          UNICODE (TaskId:18)
1>  Task Parameter:PreprocessSuppressLineNumbers=False (TaskId:18)
1>  Task Parameter:PreprocessToFile=False (TaskId:18)
1>  Task Parameter:ProgramDataBaseFileName=Debug\vc110.pdb (TaskId:18)
1>  Task Parameter:RuntimeLibrary=MultiThreadedDLL (TaskId:18)
1>  Task Parameter:SDLCheck=True (TaskId:18)
1>  Task Parameter:ShowIncludes=False (TaskId:18)
1>  Task Parameter:SmallerTypeCheck=False (TaskId:18)
1>  Task Parameter:StructMemberAlignment=Default (TaskId:18)
1>  Task Parameter:SuppressStartupBanner=False (TaskId:18)
1>  Task Parameter:TreatWarningAsError=False (TaskId:18)
1>  Task Parameter:TreatWChar_tAsBuiltInType=True (TaskId:18)
1>  Task Parameter:UndefineAllPreprocessorDefinitions=False (TaskId:18)
1>  Task Parameter:UseFullPaths=False (TaskId:18)
1>  Task Parameter:WarningLevel=TurnOffAllWarnings (TaskId:18)
1>  Task Parameter:WholeProgramOptimization=False (TaskId:18)
1>  Task Parameter:WinRTNoStdLib=False (TaskId:18)
1>  Task Parameter:XMLDocumentationFileName=Debug\ (TaskId:18)
1>  Task Parameter:TrackerLogDirectory=Debug\ (TaskId:18)
1>  Task Parameter:TrackFileAccess=True (TaskId:18)
1>  Task Parameter:MinimalRebuildFromTracking=True (TaskId:18)
1>  Task Parameter:ToolArchitecture=Native32Bit (TaskId:18)
1>  Task Parameter:YieldDuringToolExecution=True (TaskId:18)
1>  Read Tracking Logs: (TaskId:18)
1>   Debug\cl.read.1.tlog (TaskId:18)
1>  Outputs for D:\DESARROLLOS\PROYECTO_MAM\TEMP\TESTMONGODB\TESTMONGODB\TESTMONGODB.CPP: (TaskId:18)
1>   D:\DESARROLLOS\PROYECTO_MAM\TEMP\TESTMONGODB\TESTMONGODB\DEBUG\TESTMONGODB.OBJ (TaskId:18)
1>  TestMongoDB.cpp will be compiled as it was not found in the tracking log. (TaskId:18)
1>  Environment Variables passed to tool: (TaskId:18)
1>    VS_UNICODE_OUTPUT=1452 (TaskId:18)
1>  Tracking command: (TaskId:18)
1>  C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\Tracker.exe /d C:\Windows\Microsoft.NET\Framework\v4.0.30319\FileTracker.dll /i D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug /r D:\DESARROLLOS\PROYECTO_MAM\TEMP\TESTMONGODB\TESTMONGODB\TESTMONGODB.CPP /b MSBuildConsole_CancelEventf080c4b1e7f0468f9e80a426497d2e4a  /c "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\CL.exe"  /c /IC:\mongo_driver_legacy\mongo_client_32_release\include /IC:\Temp\boost_1_56_0 /ZI /nologo- /W0 /WX- /sdl /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _CRT_SECURE_NO_WARNINGS /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MD /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\TestMongoDB.pch" /Fo"Debug\\" /Fd"Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt TestMongoDB.cpp (TaskId:18)
1>  Microsoft (R) C/C++ Optimizing Compiler Version 17.00.61030 for x86 (TaskId:18)
1>  Copyright (C) Microsoft Corporation.  All rights reserved. (TaskId:18)
1>   (TaskId:18)
1>  cl /c /IC:\mongo_driver_legacy\mongo_client_32_release\include /IC:\Temp\boost_1_56_0 /ZI /nologo- /W0 /WX- /sdl /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _CRT_SECURE_NO_WARNINGS /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MD /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\TestMongoDB.pch" /Fo"Debug\\" /Fd"Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt TestMongoDB.cpp (TaskId:18)
1>cl : Command line warning D9035: option 'nologo-' has been deprecated and will be removed in a future release
1>   (TaskId:18)
1>  TestMongoDB.cpp (TaskId:18)
1>Done executing task "CL". (TaskId:18)
1>Done building target "ClCompile" in project "TestMongoDB.vcxproj".: (TargetId:42)
1>Target "ManagedIncrementalBuildPostProcessDependencyGraph" skipped, due to false condition; ('@(ClCompile)' != '' and '$(EnableManagedIncrementalBuild)' == 'True') was evaluated as ('stdafx.cpp;TestMongoDB.cpp' != '' and 'false' == 'True').
1>Target "AfterClCompile: (TargetId:43)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ClCompile" depends on it):
1>Done building target "AfterClCompile" in project "TestMongoDB.vcxproj".: (TargetId:43)
1>Target "_ClCompile: (TargetId:44)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildCompileAction" depends on it):
1>Done building target "_ClCompile" in project "TestMongoDB.vcxproj".: (TargetId:44)
1>Target "_ResGen" skipped, due to false condition; ('@(EmbeddedResource)'!='') was evaluated as (''!='').
1>Target "BeforeResourceCompile: (TargetId:45)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ResourceCompile" depends on it):
1>Done building target "BeforeResourceCompile" in project "TestMongoDB.vcxproj".: (TargetId:45)
1>Target "MakeDirsForResourceCompile: (TargetId:46)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ResourceCompile" depends on it):
1>Task "MakeDir" (TaskId:19)
1>  Task Parameter:Directories=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug (TaskId:19)
1>Done executing task "MakeDir". (TaskId:19)
1>Done building target "MakeDirsForResourceCompile" in project "TestMongoDB.vcxproj".: (TargetId:46)
1>Target "ResourceCompile" skipped, due to false condition; ('@(ResourceCompile)' != '') was evaluated as ('' != '').
1>Target "AfterResourceCompile: (TargetId:47)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_ResourceCompile" depends on it):
1>Done building target "AfterResourceCompile" in project "TestMongoDB.vcxproj".: (TargetId:47)
1>Target "_ResourceCompile: (TargetId:48)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildCompileAction" depends on it):
1>Done building target "_ResourceCompile" in project "TestMongoDB.vcxproj".: (TargetId:48)
1>Target "_ImpLib" skipped, due to false condition; ('$(ImpLibCompiled)' == 'true') was evaluated as ('' == 'true').
1>Target "_Lib" skipped, due to false condition; ('$(LibCompiled)' == 'true') was evaluated as ('' == 'true').
1>Target "AfterBuildCompileEvent: (TargetId:49)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildCompileAction" depends on it):
1>Done building target "AfterBuildCompileEvent" in project "TestMongoDB.vcxproj".: (TargetId:49)
1>Target "_BuildCompileAction: (TargetId:50)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "BuildCompile" depends on it):
1>Done building target "_BuildCompileAction" in project "TestMongoDB.vcxproj".: (TargetId:50)
1>Target "BuildCompile: (TargetId:51)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Done building target "BuildCompile" in project "TestMongoDB.vcxproj".: (TargetId:51)
1>Target "AssignProjectConfiguration" skipped. Previously built successfully.
1>Target "_SplitProjectReferencesByFileExistence" skipped. Previously built successfully.
1>Target "BuildLinkTraverse: (TargetId:52)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "BuildLink" depends on it):
1>Task "MSBuild" skipped, due to false condition; ('$(BuildPassReferences)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '@(_MSBuildProjectReferenceExistent)' != ''  and '%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true') was evaluated as ('' == 'true' and '' != '' and '' != ''  and '' == 'true').
1>Done building target "BuildLinkTraverse" in project "TestMongoDB.vcxproj".: (TargetId:52)
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "ResolveReferences" skipped. Previously built successfully.
1>Target "ComputeLegacyManifestEmbedding: (TargetId:53)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Task "VCMessage" skipped, due to false condition; ('$(RevertManifestEmbedding)' == 'true' and '$(_LegacyManifestEmbeddingDebug)' == 'true') was evaluated as ('' == 'true' and '' == 'true').
1>Done building target "ComputeLegacyManifestEmbedding" in project "TestMongoDB.vcxproj".: (TargetId:53)
1>Target "BeforeLink: (TargetId:54)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "BeforeLink" in project "TestMongoDB.vcxproj".: (TargetId:54)
1>Target "ComputeRCOutputs: (TargetId:55)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ComputeRCGeneratedLinkInputs" depends on it):
1>Done building target "ComputeRCOutputs" in project "TestMongoDB.vcxproj".: (TargetId:55)
1>Target "ComputeRCGeneratedLinkInputs: (TargetId:56)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "ComputeRCGeneratedLinkInputs" in project "TestMongoDB.vcxproj".: (TargetId:56)
1>Target "ComputeManifestGeneratedLinkerInputs: (TargetId:57)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "ComputeManifestGeneratedLinkerInputs" in project "TestMongoDB.vcxproj".: (TargetId:57)
1>Target "ComputeCustomBuildOutput: (TargetId:58)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Task "CreateItem" skipped, due to false condition; ('%(CustomBuildDirsToMake.OutputFileToTool)'!='') was evaluated as (''!='').
1>Task "MakeDir" (TaskId:20)
1>Done executing task "MakeDir". (TaskId:20)
1>Done building target "ComputeCustomBuildOutput" in project "TestMongoDB.vcxproj".: (TargetId:58)
1>Target "ComputeMIDLGeneratedCompileInputs" skipped. Previously built successfully.
1>Target "ComputeCLInputPDBName" skipped. Previously built successfully.
1>Target "ComputeReferenceCLInput" skipped. Previously built successfully.
1>Target "ComputeCLOutputs: (TargetId:59)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "ComputeCLGeneratedLinkInputs" depends on it):
1>Done building target "ComputeCLOutputs" in project "TestMongoDB.vcxproj".: (TargetId:59)
1>Target "ComputeCLGeneratedLinkInputs: (TargetId:60)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "ComputeCLGeneratedLinkInputs" in project "TestMongoDB.vcxproj".: (TargetId:60)
1>Target "ComputeLinkInputsFromProject: (TargetId:61)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "ComputeLinkInputsFromProject" in project "TestMongoDB.vcxproj".: (TargetId:61)
1>Target "ComputeReferenceLinkInputs" skipped, due to false condition; (@(ProjectReference) != '') was evaluated as ( != '').
1>Target "ComputeManifestInputsTargets: (TargetId:62)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "ComputeManifestInputsTargets" in project "TestMongoDB.vcxproj".: (TargetId:62)
1>Target "ManifestResourceCompile" skipped, due to false condition; ('$(EmbedManifestBy)' == 'LINK' and '@(Manifest)' != '') was evaluated as ('LINK' == 'LINK' and '' != '').
1>Target "AssignWinFXEmbeddedResource" skipped, due to false condition; ('@(WinFXEmbeddedResource)' != '') was evaluated as ('' != '').
1>Target "AssignTargetPaths: (TargetId:63)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "PrepareResourceNames" depends on it):
1>Using "AssignTargetPath" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "AssignTargetPath" (TaskId:21)
1>  Task Parameter:RootFolder=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB (TaskId:21)
1>Done executing task "AssignTargetPath". (TaskId:21)
1>Task "AssignTargetPath" (TaskId:22)
1>  Task Parameter:RootFolder=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB (TaskId:22)
1>Done executing task "AssignTargetPath". (TaskId:22)
1>Task "AssignTargetPath" (TaskId:23)
1>  Task Parameter:RootFolder=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB (TaskId:23)
1>Done executing task "AssignTargetPath". (TaskId:23)
1>Task "AssignTargetPath" (TaskId:24)
1>  Task Parameter:RootFolder=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB (TaskId:24)
1>Done executing task "AssignTargetPath". (TaskId:24)
1>Task "AssignTargetPath" skipped, due to false condition; ('@(_DeploymentBaseManifestWithTargetPath)'=='' and '%(None.Extension)'=='.manifest') was evaluated as (''=='' and ''=='.manifest').
1>Done building target "AssignTargetPaths" in project "TestMongoDB.vcxproj".: (TargetId:63)
1>Target "AssignTargetPaths" skipped. Previously built successfully.
1>Target "SplitResourcesByCulture: (TargetId:64)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "PrepareResourceNames" depends on it):
1>Task "Warning" skipped, due to false condition; ('@(ResxWithNoCulture)'!='') was evaluated as (''!='').
1>Task "Warning" skipped, due to false condition; ('@(ResxWithCulture)'!='') was evaluated as (''!='').
1>Task "Warning" skipped, due to false condition; ('@(NonResxWithCulture)'!='') was evaluated as (''!='').
1>Task "Warning" skipped, due to false condition; ('@(NonResxWithNoCulture)'!='') was evaluated as (''!='').
1>Using "AssignCulture" task from assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "AssignCulture" (TaskId:25)
1>Done executing task "AssignCulture". (TaskId:25)
1>Done building target "SplitResourcesByCulture" in project "TestMongoDB.vcxproj".: (TargetId:64)
1>Target "CreateManifestResourceNames" skipped, due to false condition; ('@(EmbeddedResource)' != '') was evaluated as ('' != '').
1>Target "CreateCustomManifestResourceNames: (TargetId:65)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "PrepareResourceNames" depends on it):
1>Done building target "CreateCustomManifestResourceNames" in project "TestMongoDB.vcxproj".: (TargetId:65)
1>Target "PrepareResourceNames: (TargetId:66)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "PrepareResourceNames" in project "TestMongoDB.vcxproj".: (TargetId:66)
1>Target "MakeDirsForLink: (TargetId:67)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Task "MakeDir" (TaskId:26)
1>  Task Parameter:
1>      Directories=
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug
1>          D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\ (TaskId:26)
1>Done executing task "MakeDir". (TaskId:26)
1>Done building target "MakeDirsForLink" in project "TestMongoDB.vcxproj".: (TargetId:67)
1>Target "DoLinkOutputFilesMatch: (TargetId:68)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Task "VCMessage" skipped, due to false condition; ('@(_OutputFileFromLink)' == '') was evaluated as ('D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe' == '').
1>Task "VCMessage" skipped, due to false condition; ('@(_OutputFileFromLink)' != '' and '%(_OutputFileFromLink.FullPath)' != '$([System.IO.Path]::GetFullPath($(TargetPath)))') was evaluated as ('D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe' != '' and 'D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe' != 'D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe').
1>Task "VCMessage" skipped, due to false condition; ('@(_OutputFileFromLink)' != '' and '%(_OutputFileFromLink.Extension)' != '$(TargetExt)') was evaluated as ('D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe' != '' and '.exe' != '.exe').
1>Task "VCMessage" skipped, due to false condition; ('@(_OutputFileFromLink)' != '' and '%(_OutputFileFromLink.Filename)' != '$(TargetName)') was evaluated as ('D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe' != '' and 'TestMongoDB' != 'TestMongoDB').
1>Done building target "DoLinkOutputFilesMatch" in project "TestMongoDB.vcxproj".: (TargetId:68)
1>Target "PreLinkEvent: (TargetId:69)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Task "Message" skipped, due to false condition; ('%(PreLinkEvent.Message)' != '' and '%(PreLinkEvent.Command)' != '') was evaluated as ('' != '' and '' != '').
1>Task "Exec" skipped, due to false condition; ('%(PreLinkEvent.Command)' != '') was evaluated as ('' != '').
1>Done building target "PreLinkEvent" in project "TestMongoDB.vcxproj".: (TargetId:69)
1>Target "ComputeLinkSwitches: (TargetId:70)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Link" depends on it):
1>Done building target "ComputeLinkSwitches" in project "TestMongoDB.vcxproj".: (TargetId:70)
1>Target "Link: (TargetId:71)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Using "Link" task from assembly "Microsoft.Build.CppTasks.Common.v110, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "Link" (TaskId:27)
1>  Task Parameter:BuildingInIde=True (TaskId:27)
1>  Task Parameter:
1>      Sources=
1>          Debug\stdafx.obj
1>                  AcceptableNonZeroExitCodes=
1>                  AdditionalDependencies=mongoclient.lib;libmongoclient.lib;boost_thread-vc110-mt-1_56.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;
1>                  AdditionalLibraryDirectories=C:\mongo_driver_legacy\mongo_client_32_release\lib;C:\Temp\boost_1_56_0\stage\lib;
1>                  AllowIsolation=true
1>                  CLRImageType=Default
1>                  DataExecutionPrevention=true
1>                  DelaySign=
1>                  Driver=NotSet
1>                  EnableUAC=true
1>                  GenerateDebugInformation=true
1>                  GenerateMapFile=false
1>                  IgnoreEmbeddedIDL=false
1>                  ImportLibrary=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.lib
1>                  KeyFile=
1>                  LinkErrorReporting=PromptImmediately
1>                  ManifestEmbed=true
1>                  ManifestFile=
1>                  ManifestInput=;;;
1>                  MapExports=false
1>                  MinimalRebuildFromTracking=true
1>                  NoEntryPoint=false
1>                  OutputFile=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe
1>                  PerUserRedirection=false
1>                  Profile=false
1>                  ProfileGuidedDatabase=
1>                  ProgramDatabaseFile=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.pdb
1>                  RandomizedBaseAddress=true
1>                  RegisterOutput=false
1>                  SetChecksum=false
1>                  ShowProgress=NotSet
1>                  SubSystem=Console
1>                  SuppressStartupBanner=true
1>                  SwapRunFromCD=false
1>                  SwapRunFromNET=false
1>                  TargetMachine=MachineX86
1>                  TrackerLogDirectory=Debug\
1>                  TurnOffAssemblyGeneration=false
1>                  TypeLibraryResourceID=1
1>                  UACExecutionLevel=AsInvoker
1>                  UACUIAccess=false
1>                  WindowsMetadataFile=
1>                  WindowsMetadataKeyContainer=
1>                  WindowsMetadataLinkDelaySign=
1>                  WindowsMetadataLinkKeyFile=
1>                  WindowsMetadataSignHash=
1>          Debug\TestMongoDB.obj
1>                  AcceptableNonZeroExitCodes=
1>                  AdditionalDependencies=mongoclient.lib;libmongoclient.lib;boost_thread-vc110-mt-1_56.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;
1>                  AdditionalLibraryDirectories=C:\mongo_driver_legacy\mongo_client_32_release\lib;C:\Temp\boost_1_56_0\stage\lib;
1>                  AllowIsolation=true
1>                  CLRImageType=Default
1>                  DataExecutionPrevention=true
1>                  DelaySign=
1>                  Driver=NotSet
1>                  EnableUAC=true
1>                  GenerateDebugInformation=true
1>                  GenerateMapFile=false
1>                  IgnoreEmbeddedIDL=false
1>                  ImportLibrary=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.lib
1>                  KeyFile=
1>                  LinkErrorReporting=PromptImmediately
1>                  ManifestEmbed=true
1>                  ManifestFile=
1>                  ManifestInput=;;;
1>                  MapExports=false
1>                  MinimalRebuildFromTracking=true
1>                  NoEntryPoint=false
1>                  OutputFile=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe
1>                  PerUserRedirection=false
1>                  Profile=false
1>                  ProfileGuidedDatabase=
1>                  ProgramDatabaseFile=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.pdb
1>                  RandomizedBaseAddress=true
1>                  RegisterOutput=false
1>                  SetChecksum=false
1>                  ShowProgress=NotSet
1>                  SubSystem=Console
1>                  SuppressStartupBanner=true
1>                  SwapRunFromCD=false
1>                  SwapRunFromNET=false
1>                  TargetMachine=MachineX86
1>                  TrackerLogDirectory=Debug\
1>                  TurnOffAssemblyGeneration=false
1>                  TypeLibraryResourceID=1
1>                  UACExecutionLevel=AsInvoker
1>                  UACUIAccess=false
1>                  WindowsMetadataFile=
1>                  WindowsMetadataKeyContainer=
1>                  WindowsMetadataLinkDelaySign=
1>                  WindowsMetadataLinkKeyFile=
1>                  WindowsMetadataSignHash= (TaskId:27)
1>  Task Parameter:
1>      AdditionalDependencies=
1>          mongoclient.lib
1>          libmongoclient.lib
1>          boost_thread-vc110-mt-1_56.lib
1>          kernel32.lib
1>          user32.lib
1>          gdi32.lib
1>          winspool.lib
1>          comdlg32.lib
1>          advapi32.lib
1>          shell32.lib
1>          ole32.lib
1>          oleaut32.lib
1>          uuid.lib
1>          odbc32.lib
1>          odbccp32.lib (TaskId:27)
1>  Task Parameter:
1>      AdditionalLibraryDirectories=
1>          C:\mongo_driver_legacy\mongo_client_32_release\lib
1>          C:\Temp\boost_1_56_0\stage\lib (TaskId:27)
1>  Task Parameter:AllowIsolation=True (TaskId:27)
1>  Task Parameter:CLRImageType=Default (TaskId:27)
1>  Task Parameter:DataExecutionPrevention=True (TaskId:27)
1>  Task Parameter:Driver=NotSet (TaskId:27)
1>  Task Parameter:EnableUAC=True (TaskId:27)
1>  Task Parameter:LinkErrorReporting=PromptImmediately (TaskId:27)
1>  Task Parameter:GenerateDebugInformation=True (TaskId:27)
1>  Task Parameter:GenerateManifest=True (TaskId:27)
1>  Task Parameter:GenerateMapFile=False (TaskId:27)
1>  Task Parameter:IgnoreEmbeddedIDL=False (TaskId:27)
1>  Task Parameter:ImportLibrary=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.lib (TaskId:27)
1>  Task Parameter:LinkIncremental=True (TaskId:27)
1>  Task Parameter:ManifestEmbed=True (TaskId:27)
1>  Task Parameter:MapExports=False (TaskId:27)
1>  Task Parameter:OutputFile=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe (TaskId:27)
1>  Task Parameter:Profile=False (TaskId:27)
1>  Task Parameter:ProgramDatabaseFile=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.pdb (TaskId:27)
1>  Task Parameter:RandomizedBaseAddress=True (TaskId:27)
1>  Task Parameter:NoEntryPoint=False (TaskId:27)
1>  Task Parameter:SetChecksum=False (TaskId:27)
1>  Task Parameter:ShowProgress=NotSet (TaskId:27)
1>  Task Parameter:SubSystem=Console (TaskId:27)
1>  Task Parameter:SuppressStartupBanner=True (TaskId:27)
1>  Task Parameter:SwapRunFromCD=False (TaskId:27)
1>  Task Parameter:SwapRunFromNET=False (TaskId:27)
1>  Task Parameter:TargetMachine=MachineX86 (TaskId:27)
1>  Task Parameter:TurnOffAssemblyGeneration=False (TaskId:27)
1>  Task Parameter:TypeLibraryResourceID=1 (TaskId:27)
1>  Task Parameter:UACExecutionLevel=AsInvoker (TaskId:27)
1>  Task Parameter:UACUIAccess=False (TaskId:27)
1>  Task Parameter:TrackerLogDirectory=Debug\ (TaskId:27)
1>  Task Parameter:TrackFileAccess=True (TaskId:27)
1>  Task Parameter:MinimalRebuildFromTracking=True (TaskId:27)
1>  Task Parameter:ToolArchitecture=Native32Bit (TaskId:27)
1>  Environment Variables passed to tool: (TaskId:27)
1>    VS_UNICODE_OUTPUT=1336 (TaskId:27)
1>  Tracking command: (TaskId:27)
1>  C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\Tracker.exe /a /d C:\Windows\Microsoft.NET\Framework\v4.0.30319\FileTracker.dll /i D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\Debug /r "D:\DESARROLLOS\PROYECTO_MAM\TEMP\TESTMONGODB\TESTMONGODB\DEBUG\STDAFX.OBJ|D:\DESARROLLOS\PROYECTO_MAM\TEMP\TESTMONGODB\TESTMONGODB\DEBUG\TESTMONGODB.OBJ" /b MSBuildConsole_CancelEvent2b7cb716647e4f4eabf00634fc652dd4  /c "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\link.exe"  /ERRORREPORT:PROMPT /OUT:"D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe" /INCREMENTAL /NOLOGO /LIBPATH:C:\mongo_driver_legacy\mongo_client_32_release\lib /LIBPATH:C:\Temp\boost_1_56_0\stage\lib mongoclient.lib libmongoclient.lib "boost_thread-vc110-mt-1_56.lib" kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.lib" /MACHINE:X86 Debug\stdafx.obj
1>  Debug\TestMongoDB.obj (TaskId:27)
1>Done executing task "Link". (TaskId:27)
1>Task "Message" (TaskId:28)
1>  Task Parameter:Text=TestMongoDB.vcxproj -> D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe (TaskId:28)
1>  Task Parameter:Importance=High (TaskId:28)
1>  TestMongoDB.vcxproj -> D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\Debug\TestMongoDB.exe (TaskId:28)
1>Done executing task "Message". (TaskId:28)
1>Done building target "Link" in project "TestMongoDB.vcxproj".: (TargetId:71)
1>Target "MetaGenInputsOutputs" skipped, due to false condition; ('$(EnableManagedIncrementalBuild)' == 'True') was evaluated as ('false' == 'True').
1>Target "ComputeMetaGenInputs" skipped, due to false condition; ('$(CLRSupport)'!='' and '$(CLRSupport)'!='false') was evaluated as ('false'!='' and 'false'!='false').
1>Target "MetaGen" skipped, due to false condition; ('@(MetaGen)' != '') was evaluated as ('' != '').
1>Target "ComputeLinkImportLibraryOutputsForClean: (TargetId:72)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Task "WriteLinesToFile" skipped, due to false condition; ('@(_LinkImportLibrary)' != '') was evaluated as ('' != '').
1>Done building target "ComputeLinkImportLibraryOutputsForClean" in project "TestMongoDB.vcxproj".: (TargetId:72)
1>Target "AfterLink: (TargetId:73)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_Link" depends on it):
1>Done building target "AfterLink" in project "TestMongoDB.vcxproj".: (TargetId:73)
1>Target "_Link: (TargetId:74)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "_Link" in project "TestMongoDB.vcxproj".: (TargetId:74)
1>Target "_ALink: (TargetId:75)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "_ALink" in project "TestMongoDB.vcxproj".: (TargetId:75)
1>Target "ComputeLegacyManifestEmbedding" skipped. Previously built successfully.
1>Target "_Manifest: (TargetId:76)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Task "CallTarget" skipped, due to false condition; ('$(LegacyManifestEmbedding)' == 'true') was evaluated as ('' == 'true').
1>Done building target "_Manifest" in project "TestMongoDB.vcxproj".: (TargetId:76)
1>Target "RegisterOutput: (TargetId:77)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Task "Exec" skipped, due to false condition; ('$(ConfigurationType)'=='DynamicLibrary' and '%(Link.RegisterOutput)'=='true' and '%(Link.PerUserRedirection)'!='true') was evaluated as ('Application'=='DynamicLibrary' and 'false'=='true' and 'false'!='true').
1>Task "Exec" skipped, due to false condition; ('$(ConfigurationType)'=='DynamicLibrary' and '%(Link.RegisterOutput)'=='true' and '%(Link.PerUserRedirection)'=='true') was evaluated as ('Application'=='DynamicLibrary' and 'false'=='true' and 'false'=='true').
1>Task "Exec" skipped, due to false condition; ('$(ConfigurationType)'=='Application' and '%(Link.RegisterOutput)'=='true' and '%(Link.PerUserRedirection)'!='true') was evaluated as ('Application'=='Application' and 'false'=='true' and 'false'!='true').
1>Task "Exec" skipped, due to false condition; ('$(ConfigurationType)'=='Application' and '%(Link.RegisterOutput)'=='true' and '%(Link.PerUserRedirection)'=='true') was evaluated as ('Application'=='Application' and 'false'=='true' and 'false'=='true').
1>Task "VCMessage" skipped, due to false condition; ('$(_RegisterOutputExitCode)' != '' and '$(_RegisterOutputExitCode)' != '0') was evaluated as ('' != '' and '' != '0').
1>Done building target "RegisterOutput" in project "TestMongoDB.vcxproj".: (TargetId:77)
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "ResolveReferences" skipped. Previously built successfully.
1>Target "ResolvedXDCMake: (TargetId:78)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_XdcMake" depends on it):
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.Extension)' == '.vcxproj' and '@(ProjectReferenceWithConfiguration)' != '' and '@(_MSBuildProjectReferenceExistent)' != '' and '$(_ClCompileGenerateXMLDocumentationFiles)' == 'true') was evaluated as ('' == '.vcxproj' and '' != '' and '' != '' and '' == 'true').
1>Done building target "ResolvedXDCMake" in project "TestMongoDB.vcxproj".: (TargetId:78)
1>Target "ComputeCLCompileGeneratedXDCFiles: (TargetId:79)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_XdcMake" depends on it):
1>Done building target "ComputeCLCompileGeneratedXDCFiles" in project "TestMongoDB.vcxproj".: (TargetId:79)
1>Target "MakeDirsForXdcMake: (TargetId:80)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_XdcMake" depends on it):
1>Task "MakeDir" (TaskId:29)
1>Done executing task "MakeDir". (TaskId:29)
1>Done building target "MakeDirsForXdcMake" in project "TestMongoDB.vcxproj".: (TargetId:80)
1>Target "XdcMake" skipped, due to false condition; ('@(XdcMake)' != '') was evaluated as ('' != '').
1>Target "_XdcMake: (TargetId:81)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "_XdcMake" in project "TestMongoDB.vcxproj".: (TargetId:81)
1>Target "ComputeCLCompileGeneratedSbrFiles: (TargetId:82)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BscMake" depends on it):
1>Done building target "ComputeCLCompileGeneratedSbrFiles" in project "TestMongoDB.vcxproj".: (TargetId:82)
1>Target "MakeDirsForBscMake: (TargetId:83)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BscMake" depends on it):
1>Task "MakeDir" (TaskId:30)
1>Done executing task "MakeDir". (TaskId:30)
1>Done building target "MakeDirsForBscMake" in project "TestMongoDB.vcxproj".: (TargetId:83)
1>Target "BscMake" skipped, due to false condition; ('@(BscMake)' != '') was evaluated as ('' != '').
1>Target "CustomBuildStep" skipped, due to false condition; ('@(CustomBuildStep)' != '' and '$(SelectedFiles)'=='') was evaluated as ('' != '' and ''=='').
1>Target "_BscMake: (TargetId:84)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "_BscMake" in project "TestMongoDB.vcxproj".: (TargetId:84)
1>Target "RunMergeNativeCodeAnalysis" skipped, due to false condition; ('$(Language)'=='C++' and '$(RunCodeAnalysisOnThisProject)'=='true') was evaluated as ('C++'=='C++' and ''=='true').
1>Target "RunNativeCodeAnalysis" skipped, due to false condition; ('$(Language)'=='C++' and '$(RunCodeAnalysisOnThisProject)'=='true') was evaluated as ('C++'=='C++' and ''=='true').
1>Target "_GenerateSatelliteAssemblyInputs: (TargetId:85)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "CreateSatelliteAssemblies" depends on it):
1>Task "Warning" skipped, due to false condition; ('@(ManifestResourceWithCulture)'!='' and '%(ManifestResourceWithCulture.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
1>Task "Warning" skipped, due to false condition; ('@(ManifestNonResxWithCultureOnDisk)'!='' and '%(ManifestNonResxWithCultureOnDisk.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
1>Done building target "_GenerateSatelliteAssemblyInputs" in project "TestMongoDB.vcxproj".: (TargetId:85)
1>Target "ComputeIntermediateSatelliteAssemblies" skipped, due to false condition; (@(ReferenceSatellitePaths->'%(DestinationSubDirectory)') != '') was evaluated as ( != '').
1>Target "GenerateSatelliteAssemblies" skipped, due to false condition; ('@(_SatelliteAssemblyResourceInputs)' != '') was evaluated as ('' != '').
1>Target "CreateSatelliteAssemblies: (TargetId:86)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "CreateSatelliteAssemblies" in project "TestMongoDB.vcxproj".: (TargetId:86)
1>Target "_Appverifier: (TargetId:87)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "_Appverifier" in project "TestMongoDB.vcxproj".: (TargetId:87)
1>Target "_Deploy: (TargetId:88)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "_Deploy" in project "TestMongoDB.vcxproj".: (TargetId:88)
1>Target "ComputeIntermediateSatelliteAssemblies" skipped, due to false condition; (@(ReferenceSatellitePaths->'%(DestinationSubDirectory)') != '') was evaluated as ( != '').
1>Target "_CopyFilesMarkedCopyLocal" skipped, due to false condition; ('@(ReferenceCopyLocalPaths)' != '') was evaluated as ('' != '').
1>Target "AssignTargetPaths" skipped. Previously built successfully.
1>Target "_SplitProjectReferencesByFileExistence" skipped. Previously built successfully.
1>Target "GetCopyToOutputDirectoryXamlAppDefs: (TargetId:89)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Xaml.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "GetCopyToOutputDirectoryItems" depends on it):
1>Task "AssignTargetPath" (TaskId:31)
1>  Task Parameter:RootFolder=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB (TaskId:31)
1>Done executing task "AssignTargetPath". (TaskId:31)
1>Done building target "GetCopyToOutputDirectoryXamlAppDefs" in project "TestMongoDB.vcxproj".: (TargetId:89)
1>Target "GetCopyToOutputDirectoryItems: (TargetId:90)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_CopySourceItemsToOutputDirectory" depends on it):
1>Task "MSBuild" skipped, due to false condition; ('@(_MSBuildProjectReferenceExistent)' != '' and '$(_GetChildProjectCopyToOutputDirectoryItems)' == 'true' and '%(_MSBuildProjectReferenceExistent.Private)' != 'false' and '$(UseCommonOutputDirectory)' != 'true') was evaluated as ('' != '' and 'true' == 'true' and '' != 'false' and 'false' != 'true').
1>Task "AssignTargetPath" (TaskId:32)
1>  Task Parameter:RootFolder=D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB (TaskId:32)
1>Done executing task "AssignTargetPath". (TaskId:32)
1>Done building target "GetCopyToOutputDirectoryItems" in project "TestMongoDB.vcxproj".: (TargetId:90)
1>Target "_CopyOutOfDateSourceItemsToOutputDirectory" skipped, due to false condition; ( '@(_SourceItemsToCopyToOutputDirectory)' != '' ) was evaluated as ( '' != '' ).
1>Target "_CopyOutOfDateSourceItemsToOutputDirectoryAlways" skipped, due to false condition; ( '@(_SourceItemsToCopyToOutputDirectoryAlways)' != '' ) was evaluated as ( '' != '' ).
1>Target "_CopySourceItemsToOutputDirectory: (TargetId:91)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "CopyFilesToOutputDirectory" depends on it):
1>Done building target "_CopySourceItemsToOutputDirectory" in project "TestMongoDB.vcxproj".: (TargetId:91)
1>Target "_CopyAppConfigFile" skipped, due to false condition; ( '@(AppConfigWithTargetPath)' != '' ) was evaluated as ( '' != '' ).
1>Target "_CopyManifestFiles" skipped, due to false condition; ( '$(_DeploymentCopyApplicationManifest)'=='true' or '$(GenerateClickOnceManifests)'=='true' ) was evaluated as ( ''=='true' or ''=='true' ).
1>Target "_CheckForCompileOutputs: (TargetId:92)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "CopyFilesToOutputDirectory" depends on it):
1>Done building target "_CheckForCompileOutputs" in project "TestMongoDB.vcxproj".: (TargetId:92)
1>Target "_SGenCheckForOutputs" skipped, due to false condition; ('$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')) was evaluated as ('Off' == 'On' or (''!='' and 'Off' == 'Auto')).
1>Target "CopyFilesToOutputDirectory: (TargetId:93)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "PrepareForRun" depends on it):
1>Task "Copy" skipped, due to false condition; ('$(CopyBuildOutputToOutputDirectory)' == 'true' and '$(SkipCopyBuildProduct)' != 'true') was evaluated as ('true' == 'true' and 'true' != 'true').
1>Task "Message" skipped, due to false condition; ('$(CopyBuildOutputToOutputDirectory)' == 'true' and '$(SkipCopyBuildProduct)'!='true') was evaluated as ('true' == 'true' and 'true'!='true').
1>Task "Copy" skipped, due to false condition; ('@(AddModules)' != '') was evaluated as ('' != '').
1>Task "Copy" skipped, due to false condition; ('$(_SGenDllCreated)'=='true') was evaluated as ('false'=='true').
1>Task "Copy" skipped, due to false condition; ('$(_DebugSymbolsProduced)'=='true' and '$(SkipCopyingSymbolsToOutputDirectory)' != 'true' and '$(CopyOutputSymbolsToOutputDirectory)'=='true') was evaluated as ('false'=='true' and '' != 'true' and 'true'=='true').
1>Task "Copy" skipped, due to false condition; ('$(_DocumentationFileProduced)'=='true') was evaluated as ('false'=='true').
1>Task "Copy" skipped, due to false condition; ('@(IntermediateSatelliteAssembliesWithTargetPath)' != '') was evaluated as ('' != '').
1>Task "Copy" skipped, due to false condition; ('@(ReferenceComWrappersToCopyLocal)' != '' or '@(ResolvedIsolatedComModules)' != '' or '@(_DeploymentLooseManifestFile)' != '' or '@(NativeReferenceFile)' != '' ) was evaluated as ('' != '' or '' != '' or '' != '' or '' != '' ).
1>Task "Copy" skipped, due to false condition; ('$(SkipCopyWinMDArtifact)' != 'true' and '@(WinMDExpArtifacts)' != '') was evaluated as ('' != 'true' and '' != '').
1>Task "Message" skipped, due to false condition; ('$(SkipCopyWinMDArtifact)' != 'true' and '$(_WindowsMetadataOutputPath)' != '') was evaluated as ('' != 'true' and '' != '').
1>Done building target "CopyFilesToOutputDirectory" in project "TestMongoDB.vcxproj".: (TargetId:93)
1>Target "PrepareForRun: (TargetId:94)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Done building target "PrepareForRun" in project "TestMongoDB.vcxproj".: (TargetId:94)
1>Target "CustomBuildStep" skipped, due to false condition; ('@(CustomBuildStep)' != '' and '$(SelectedFiles)'=='') was evaluated as ('' != '' and ''=='').
1>Target "PostBuildEvent: (TargetId:95)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "_BuildLinkAction" depends on it):
1>Task "Message" skipped, due to false condition; ('%(PostBuildEvent.Message)' != '' and '%(PostBuildEvent.Command)' != '') was evaluated as ('' != '' and '' != '').
1>Task "Exec" skipped, due to false condition; ('%(PostBuildEvent.Command)' != '') was evaluated as ('' != '').
1>Done building target "PostBuildEvent" in project "TestMongoDB.vcxproj".: (TargetId:95)
1>Target "_BuildLinkAction: (TargetId:96)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "BuildLink" depends on it):
1>Done building target "_BuildLinkAction" in project "TestMongoDB.vcxproj".: (TargetId:96)
1>Target "BuildLink: (TargetId:97)" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Done building target "BuildLink" in project "TestMongoDB.vcxproj".: (TargetId:97)
1>Target "AfterBuild: (TargetId:98)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.BuildSteps.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Done building target "AfterBuild" in project "TestMongoDB.vcxproj".: (TargetId:98)
1>Target "FinalizeBuildStatus: (TargetId:99)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (target "Build" depends on it):
1>Task "Delete" (TaskId:33)
1>  Task Parameter:Files=Debug\TestMongoDB.unsuccessfulbuild (TaskId:33)
1>  Deleting file "Debug\TestMongoDB.unsuccessfulbuild". (TaskId:33)
1>Done executing task "Delete". (TaskId:33)
1>Task "Touch" (TaskId:34)
1>  Task Parameter:Files=Debug\TestMongoDB.lastbuildstate (TaskId:34)
1>  Touching "Debug\TestMongoDB.lastbuildstate". (TaskId:34)
1>Done executing task "Touch". (TaskId:34)
1>Done building target "FinalizeBuildStatus" in project "TestMongoDB.vcxproj".: (TargetId:99)
1>Target "Build: (TargetId:100)" in file "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.BuildSteps.Targets" from project "D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj" (entry point):
1>Done building target "Build" in project "TestMongoDB.vcxproj".: (TargetId:100)
1>
1>Project Performance Summary:
1>     6829 ms  D:\Desarrollos\Proyecto_MAM\Temp\TestMongoDB\TestMongoDB\TestMongoDB.vcxproj   1 calls
1>               6829 ms  Build                                      1 calls
1>
1>Target Performance Summary:
1>        0 ms  AfterBuildCompileEvent                     1 calls
1>        0 ms  ComputeManifestGeneratedLinkerInputs       1 calls
1>        0 ms  ResolveReferences                          1 calls
1>        0 ms  SelectClCompile                            1 calls
1>        0 ms  GetCopyToOutputDirectoryXamlAppDefs        1 calls
1>        0 ms  _CheckForCompileOutputs                    1 calls
1>        0 ms  GetResolvedWinMD                           1 calls
1>        0 ms  _Manifest                                  1 calls
1>        0 ms  _SelectedFiles                             1 calls
1>        0 ms  ComputeCLCompileGeneratedXDCFiles          1 calls
1>        0 ms  _PrepareForBuild                           1 calls
1>        0 ms  _Midl                                      1 calls
1>        0 ms  SelectCustomBuild                          1 calls
1>        0 ms  _ClCompile                                 1 calls
1>        0 ms  CreateCustomManifestResourceNames          1 calls
1>        0 ms  BeforeLink                                 1 calls
1>        0 ms  AfterBuild                                 1 calls
1>        0 ms  ComputeCLInputPDBName                      1 calls
1>        0 ms  _BuildLinkAction                           1 calls
1>        0 ms  PostBuildEvent                             1 calls
1>        0 ms  AfterBuildGenerateSources                  1 calls
1>        0 ms  BuildCompileTraverse                       1 calls
1>        0 ms  ExpandSDKReferences                        1 calls
1>        0 ms  BuildGenerateSources                       1 calls
1>        0 ms  _CopySourceItemsToOutputDirectory          1 calls
1>        0 ms  ComputeLinkImportLibraryOutputsForClean    1 calls
1>        0 ms  GetFrameworkPaths                          1 calls
1>        0 ms  AfterResourceCompile                       1 calls
1>        0 ms  _Xsd                                       1 calls
1>        0 ms  ComputeCustomBuildOutput                   1 calls
1>        0 ms  MakeDirsForBscMake                         1 calls
1>        0 ms  ComputeLinkSwitches                        1 calls
1>        0 ms  _GenerateSatelliteAssemblyInputs           1 calls
1>        0 ms  MakeDirsForResourceCompile                 1 calls
1>        0 ms  _ResourceCompile                           1 calls
1>        0 ms  ComputeLinkInputsFromProject               1 calls
1>        0 ms  Build                                      1 calls
1>        0 ms  _Link                                      1 calls
1>        0 ms  ComputeManifestInputsTargets               1 calls
1>        0 ms  ComputeRCOutputs                           1 calls
1>        0 ms  _XdcMake                                   1 calls
1>        0 ms  CreateSatelliteAssemblies                  1 calls
1>        0 ms  BeforeResourceCompile                      1 calls
1>        0 ms  AfterMidl                                  1 calls
1>        0 ms  ComputeMIDLGeneratedCompileInputs          1 calls
1>        0 ms  _Deploy                                    1 calls
1>        0 ms  AfterResolveReferences                     1 calls
1>        0 ms  PreLinkEvent                               1 calls
1>        0 ms  DoLinkOutputFilesMatch                     1 calls
1>        0 ms  ComputeReferenceCLInput                    1 calls
1>        0 ms  PrepareForRun                              1 calls
1>        0 ms  PreBuildEvent                              1 calls
1>        0 ms  MakeDirsForMidl                            1 calls
1>        0 ms  _BscMake                                   1 calls
1>        0 ms  BeforeClCompile                            1 calls
1>        0 ms  _Appverifier                               1 calls
1>        0 ms  BuildLink                                  1 calls
1>        0 ms  ComputeCLCompileGeneratedSbrFiles          1 calls
1>        0 ms  ResolveSDKReferences                       1 calls
1>        0 ms  _ALink                                     1 calls
1>        0 ms  ComputeCLGeneratedLinkInputs               1 calls
1>        0 ms  ResolveProjectReferences                   1 calls
1>        0 ms  BuildGenerateSourcesTraverse               1 calls
1>        0 ms  ComputeLegacyManifestEmbedding             1 calls
1>        0 ms  _BuildGenerateSourcesAction                1 calls
1>        0 ms  AfterBuildGenerateSourcesEvent             1 calls
1>        0 ms  BeforeResolveReferences                    1 calls
1>        0 ms  AfterLink                                  1 calls
1>        0 ms  _PrepareForReferenceResolution             1 calls
1>        0 ms  PrepareForBuild                            1 calls
1>        0 ms  BeforeBuildGenerateSources                 1 calls
1>        0 ms  AfterClCompile                             1 calls
1>        0 ms  PrepareResourceNames                       1 calls
1>        0 ms  GetInstalledSDKLocations                   1 calls
1>        0 ms  ResolvedXDCMake                            1 calls
1>        0 ms  AssignProjectConfiguration                 1 calls
1>        0 ms  SplitResourcesByCulture                    1 calls
1>        0 ms  ComputeRCGeneratedLinkInputs               1 calls
1>        0 ms  BuildCompile                               1 calls
1>        0 ms  _BuildCompileAction                        1 calls
1>        1 ms  CopyFilesToOutputDirectory                 1 calls
1>        1 ms  AssignTargetPaths                          1 calls
1>        1 ms  MakeDirsForLink                            1 calls
1>        1 ms  _SplitProjectReferencesByFileExistence     1 calls
1>        1 ms  GetCopyToOutputDirectoryItems              1 calls
1>        1 ms  ComputeCLOutputs                           1 calls
1>        1 ms  FinalizeBuildStatus                        1 calls
1>        1 ms  ResolveAssemblyReferences                  1 calls
1>        1 ms  RegisterOutput                             1 calls
1>        1 ms  MakeDirsForCl                              1 calls
1>        1 ms  BuildLinkTraverse                          1 calls
1>        1 ms  GetReferenceAssemblyPaths                  1 calls
1>        1 ms  PlatformPrepareForBuild                    1 calls
1>        1 ms  MakeDirsForXdcMake                         1 calls
1>        1 ms  SetBuildDefaultEnvironmentVariables        1 calls
1>        1 ms  InitializeBuildStatus                      1 calls
1>        3 ms  _CheckForInvalidConfigurationAndPlatform   1 calls
1>     1218 ms  Link                                       1 calls
1>     5591 ms  ClCompile                                  1 calls
1>
1>Task Performance Summary:
1>        0 ms  AssignCulture                              1 calls
1>        0 ms  ReadLinesFromFile                          1 calls
1>        0 ms  AssignProjectConfiguration                 1 calls
1>        0 ms  MakeDir                                    9 calls
1>        0 ms  Message                                    3 calls
1>        0 ms  WriteLinesToFile                           1 calls
1>        0 ms  AssignTargetPath                           6 calls
1>        1 ms  SetEnv                                     4 calls
1>        1 ms  Touch                                      2 calls
1>        1 ms  Delete                                     2 calls
1>     1217 ms  Link                                       1 calls
1>     5590 ms  CL                                         2 calls
1>
1>Build succeeded.
1>
1>Time Elapsed 00:00:06.83
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========


...

Ariel David Calo

unread,
Oct 30, 2014, 8:25:57 AM10/30/14
to mongod...@googlegroups.com
Hi Andrew

In this days, I compiled static mongo driver c++

Boost librery
b2 install --prefix="C:\TRABAJOS\Personal\Desarrollos\Mongo_Driver\Packet\boost_1_56_0" --build-dir="C:\TRABAJOS\Personal\Desarrollos\Mongo_Driver\Packet\boost_1_56_0" --build-type=complete toolset=msvc stage

Mongo librery
C:\Python27\Scripts\scons --64 --release --use-system-boost --full --prefix=C:\TRABAJOS\Personal\Desarrollos\Mongo_Driver\Packet\mongo_client_64bits_26compat_2_6_5 --cpppath=C:\TRABAJOS\Personal\Desarrollos\Mongo_Driver\Packet\boost_1_56_0\include\boost-1_56 --libpath=C:\TRABAJOS\Personal\Desarrollos\Mongo_Driver\Packet\boost_1_56_0\lib install-mongoclient

But when I call from Visual Studio show me this error

main.obj : error LNK2019: unresolved external symbol "class boost::system::error_category const & __cdecl boost::system::system_category(void)" (?system_category@system@boost@@YAAEBVerror_category@12@XZ) referenced in function "void __cdecl boost::system::`dynamic initializer for 'native_ecat''(void)" (??__Enative_ecat@system@boost@@YAXXZ)
main.obj : error LNK2019: unresolved external symbol "class boost::system::error_category const & __cdecl boost::system::generic_category(void)" (?generic_category@system@boost@@YAAEBVerror_category@12@XZ) referenced in function "void __cdecl boost::system::`dynamic initializer for 'errno_ecat''(void)" (??__Eerrno_ecat@system@boost@@YAXXZ)
main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl mongo::DBClientConnection::DBClientConnection(bool,class mongo::DBClientReplicaSet *,double)" (__imp_??0DBClientConnection@mongo@@QEAA@_NPEAVDBClientReplicaSet@1@N@Z) referenced in function main
main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __cdecl mongo::DBClientConnection::~DBClientConnection(void)" (__imp_??1DBClientConnection@mongo@@UEAA@XZ) referenced in function main
main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __cdecl mongo::DBClientConnection::connect(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (__imp_?connect@DBClientConnection@mongo@@QEAAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function main
debug\MongoConnect.exe : fatal error LNK1120: 5 unresolved externals

Can you help me with this??
Ohhh. I'm sorry.

<di
...

Andrew Morrow

unread,
Oct 30, 2014, 9:51:15 AM10/30/14
to mongod...@googlegroups.com

Hi -

When you link an application against a static archive, you must also link the application against all of the dependencies of that archive. Archives, unlike DLLs or shared objects, do not record their dependencies. I suspect that you need to add the boost system library to the link line of your application.

Also, please be aware, if you are not already, that if you intend to consume the client library statically, then all translation units must have STATIC_LIBMONGOCLIENT defined before including dbclient.h or bson.h. This prevents expansion of the dllimport/dllexport macros which would otherwise break linking.

Thanks,
Andrew



--
You received this message because you are subscribed to the Google Groups "mongodb-user"
group.
 
For other MongoDB technical support options, see: http://www.mongodb.org/about/support/.
---
You received this message because you are subscribed to the Google Groups "mongodb-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mongodb-user...@googlegroups.com.
To post to this group, send email to mongod...@googlegroups.com.
Visit this group at http://groups.google.com/group/mongodb-user.

Ariel David Calo

unread,
Nov 2, 2014, 10:13:48 AM11/2/14
to mongod...@googlegroups.com
Hi Andrew

Finally I was able to compile the driver.

I used this parameters in Windows:

Boost 1.56.0

b2 install --prefix="C:\Packet\boost_1_56_0-64Bits" --build-dir="C:\Packet\boost_1_56_0-64Bits" --build-type=complete toolset=msvc address-model=64 stage


MongoDB Driver C++

C:\Python27\Scripts\scons --64 --release --use-system-boost --full --dynamic-windows --sharedclient  --prefix=C:\Packet\mongo_client\Release --cpppath=C:\Packet\boost_1_56_0-64Bits\include\boost-1_56 --libpath=C:\Packet\boost_1_56_0-64Bits\lib install-mongoclient

C:\Python27\Scripts\scons --64 --dbg=on --opt=off --use-system-boost --full --dynamic-windows --sharedclient  --prefix=C:\Packet\mongo_client\Debug --cpppath=C:\Packet\boost_1_56_0-64Bits\include\boost-1_56 --libpath=C:\Packet\boost_1_56_0-64Bits\lib install-mongoclient

My Opereting System is: Windows 7 64 bits and update my Visual Studio to VS2013 and QT 5.3.2


Thank you for your help. Now I can continue my project in three environments: Windows, Linux and Mac-OsX
Ohhh. I'm sorry.

1>LastBuildState = Debug\TestMongoDB.lastbuildstate</
...
Reply all
Reply to author
Forward
0 new messages