Sign In
Eugene Zakhareyev @ MSDN
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
3.5
Administrator
Best practices
check-in policy
CodePlex
MSBuild
Pages
PDB
Personal
Reference
SDK
StyleCop
TFS
TFS2008
TFS2010
Tools
VC++
Version Control
VS2008
VS2010
WIT
Archive
Archives
May 2010
(3)
April 2010
(4)
January 2010
(2)
November 2009
(1)
August 2009
(2)
May 2009
(4)
April 2009
(3)
March 2009
(2)
MSDN Blogs
>
Eugene Zakhareyev @ MSDN
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Eugene Zakhareyev @ MSDN
What do you need to build VC++ in 2010?
Posted
over 2 years ago
by
Eugenez12
0
Comments
As you probably know, Visual C++ projects in VS 2010 use MSBuild to build. That works fine when you have Visual Studio installed, but can you build your C++ stuff without Visual Studio installed? One could build C#/VB projects with only .NET Framework...
Eugene Zakhareyev @ MSDN
MSBuild resources reference page
Posted
over 2 years ago
by
Eugenez12
0
Comments
.NET 4.0 and MSBuild 4.0 are out there now, but resources are still ramping up. So as a quick time saver, I have created the biggest most complete no-nonsense 100% satisfaction guarantee MSBuild resources reference page . :) That will be updated as newer...
Eugene Zakhareyev @ MSDN
StyleCop Check-in Policy updated (v. 1.3)
Posted
over 2 years ago
by
Eugenez12
0
Comments
I have updated TFS check-in policy for StyleCop 4.3.3.0 and also compiled a version for TFS 2010 (now that it has RTM’ed). The sources and MSIs (one for TFS 2008 and one for TFS 2010) are now available at MSDN Code Gallery . Enjoy!
Eugene Zakhareyev @ MSDN
TFS2010: Connecting using TFS 2008 object model
Posted
over 2 years ago
by
Eugenez12
0
Comments
Can you connect to TFS 2010 server using 2008 client? Sure you can! There are couple of gotchas to be aware of, specifically you’d be better off installing an update for TFS 2008; if you do not the following message comes up: Grant Holliday wrote very...
Eugene Zakhareyev @ MSDN
TFS2010: Who am I? (getting logged in user info)
Posted
over 2 years ago
by
Eugenez12
0
Comments
When you login to TFS using object model, sometimes it may be useful to get information about logged in user (such as domain, account, email etc.). In TFS 2008 object model, one would get the logged in user display name, domain name, account name and...
Eugene Zakhareyev @ MSDN
TFS2010: Getting connected in new object model
Posted
over 2 years ago
by
Eugenez12
0
Comments
When starting up with TFS 2010 object model, there are few gotchas to be aware of (especially if you did coding for TFS OM 2005/2008 in the past). See my previous post for high-level details: In 2008 one would establish connection to TFS as follows ...
Eugene Zakhareyev @ MSDN
TFS2010: And the tools are there too!
Posted
over 2 years ago
by
Eugenez12
1
Comments
In my previous post , I was talking about using making your custom tools ready for TFS 2010 with SDK. But what about other tools, say you? And not to worry, here you go (and I included not only TFS but VS tools as well): Team Foundation Server Power...
Eugene Zakhareyev @ MSDN
TFS2010: And there is an SDK for that!
Posted
over 2 years ago
by
Eugenez12
0
Comments
So may be now you have finally got your hands on Beta 2 of TFS 2010 (for example, using one of the excellent VHDs prepared by Brian Randell ) and it is time to see how your custom applications written for 2008 fare (do not worry, you will be fine!). Here...
Eugene Zakhareyev @ MSDN
TFS Destroy – friend or foe?
Posted
over 3 years ago
by
Eugenez12
0
Comments
While everyone else is blogging about VS 2010 Beta 2 , I thought it still may be worth publishing this post that talks about VS 2008 behavior (yes, the old release ;). One of the features missing in VS 2005 and added in VS 2008 was destroy command ; people...
Eugene Zakhareyev @ MSDN
Disposing of checkin policy
Posted
over 3 years ago
by
Eugenez12
0
Comments
Recently while I was fixing up StyleCop checkin policy , I came across one small not-so-obvious snippet of knowledge worthwhile to share. Any custom checkin policy inherits from PolicyBase , which in turn implements IDisposable . Meaning – if you need...
Eugene Zakhareyev @ MSDN
New check-in policy for VSS fans: keywords expanded
Posted
over 3 years ago
by
Eugenez12
0
Comments
One of the much-talked-about missing features of TFS is the keyword expansion feature. You know, the ability to place the template in the beginning of every single file and then have every revision tracked in the body of the file (in addition to tracking...
Eugene Zakhareyev @ MSDN
Every developer must read on PDB files
Posted
over 3 years ago
by
Eugenez12
1
Comments
Usually I try not to repost the links, but in this case just could not; I must recommend absolutely awesome super concise and informative post on benefits of PDBs from John Robbins (author of debugging Necronomicon if you don’t know). And to add what...
Eugene Zakhareyev @ MSDN
Work Item customization tidbits: custom controls (part 14 of X)
Posted
over 3 years ago
by
Eugenez12
1
Comments
In one of my previous posts I mentioned that I consider custom controls in WI one of the most complex types of customization to implement. Since I got asked related question let me expand on the topic. Custom work item controls provide a way to implement...
Eugene Zakhareyev @ MSDN
Work Item customization tidbits: limits of complexity (part 13 of X)
Posted
over 3 years ago
by
Eugenez12
2
Comments
Today I’d like to talk about WIT customization recommendations that will mostly become applicable as your custom Work Item types increase in complexity. Keep the number of custom fields limited (per TFS server) One can have a maximum of 1024 fields...
Eugene Zakhareyev @ MSDN
MSBuild UsingTask gotchas
Posted
over 3 years ago
by
Eugenez12
1
Comments
One significant drawback of MSBuild UsingTask element is that you must specify exactly the task name you are importing. That is if the assembly you are importing contains 200 tasks, you will have to import them explicitly one by one. And since you probably...
Eugene Zakhareyev @ MSDN
Branching off renamed trunk
Posted
over 3 years ago
by
Eugenez12
1
Comments
Recently I got asked a small but unobvious branching question. Suppose you have a folder named FolderName , and for some reason you have renamed it to NewFolderName . All is well, but now you decided you want to create a branch from that folder, and to...
Eugene Zakhareyev @ MSDN
Work Item customization tidbits: (part 12 of X)
Posted
over 3 years ago
by
Eugenez12
3
Comments
In my previous posts I have discussed various bits that are important know before taking on Work Item types customization. Today I’d like to talk more about approaching the whole process. I would like to advocate a conservative approach, since in most...
Eugene Zakhareyev @ MSDN
TFS Administrator chores – space offender strikes again!
Posted
over 3 years ago
by
Eugenez12
0
Comments
In my previous post I talked about management of large files in TFS version control database. Today I’d like to talk about what you can do to optimize space management in work item tracking database. As you know, it is possible to add file attachments...
Eugene Zakhareyev @ MSDN
TFS Administrator chores – dealing with the space offender
Posted
over 3 years ago
by
Eugenez12
3
Comments
These are the days of cheap storage - but even the cheap storage may run out. And running Team Foundation Server storing artifacts in its (multiple) databases may use up your space rack faster than you might have expected (and if you want to know what...
Eugene Zakhareyev @ MSDN
Numero uno
Posted
over 3 years ago
by
Eugenez12
1
Comments
Hello everyone, My name is Eugene Zakhareyev, and currently I am working for Microsoft (duh?). In my non-Microsoft past I used to be software development consultant and Team System MVP. My professional interests touch upon Visual Studio Team System...
Page 1 of 1 (20 items)