Turning on the task list in VS2010

According to Microsoft, this is turned off by default for performance reasons: http://connect.microsoft.com/VisualStudio/feedback/details/668650/task-list-is-not-working You can turn this on again in “Tools->Options->Text Editor->C/C++->Formatting-> Miscellaneous->Enumerate Comment Tasks”

Copying a project file to a known location

Within a Visual Studio C++ solution, you can copy a file to a known location as part of the build process. To do that, you have so set the “Custom Build Step” parameters found in the Visual Studio project’s property page: Command line: copy “$(InputPath)” “$(TargetDir)” > nul Description: Copying $(InputFileName) Outputs: $(TargetDir)$(InputFileName) Note, the … Read more