VS 2012 doesn't show Create Unit Tests wizard. However it can be used - see Where is the “Create Unit Tests” selection? andhttp://dl.my/2013/create... found the Wizard creates quite funny default for enumerator- to use constructor.PaymentType paymentType = new PaymentType (); // TODO: Initialize to an appropriate valueI would prefer t have first/default enum value, e.g. PaymentType paymentType =PaymentType.None ;I should suggest it to ALM Rangers, who ......
We have a service operation, for which it is very important to ensure that a client receives the status, that was determined at the end of operation.If client does receive the response, the server status should be "completed". Otherwise (in case of communication error), server status should be rollback and stay as "pending". The possible technical solutions were discussed and WCF Transactions support with 2PC(two phase commit) was selected. We implemented service operation with transaction commit/rollback ......
We upgraded to VS 2012 and TFS 2012 a month ago.I have a backupShelve.cmd that used to work before upgrade, but when I run it yesterday caused the errorUnable to determine the workspace. You may be able to correct this by running 'tf workspaces /collection:TeamProjectColl... The backupShelve.cmd file is the following call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 tf shelve /replace /comment:"Current backup" CurrentBackupMT01 /nopromptpause After some time I've ......