active questions tagged tfs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T22:38:00Z http://stackoverflow.com/feeds/tag/tfs http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790159/can-you-use-multiple-working-folders-with-tfs 1 Can you use multiple working folders with TFS? Shire 2009-11-24T13:43:19Z 2009-12-01T22:32:26Z <p>In projects in which the workspace has only one working folder, my build scripts work great. Now that I am working with a new project that required 2 workign folders, all of the checkout and checkin commands of my previous script fail, with no files found.</p> <p>Obviously, I'm not understanding a critical part of the implementation of the workspace here... I have a project which is dependant on other projects, the second working folder is basically a 3rd party folder with references to the various published DLL's and headers files needed to compile my project. There are 2 active folders and the local folders are:</p> <pre> $(SourceDir)\TEAM-MAIN\Address Finalizer $(SourceDir)\TEAM-MAIN\HH-CAHPS Project\MAINLINE\3rd Party </pre> <p>The built code works fine, but the custom AfterGet fails on the following entry:</p> <pre><code>&lt;!-- Check out all of the assemblyInfo files --&gt; &lt;Exec Command="$(TfCommand) checkout AssemblyInfo.cs /recursive" WorkingDirectory="$(MSBuildProjectDirectory)\..\sources" ContinueOnError="false"/&gt; </code></pre> <p>The project will of course work if I have a single working folder and move the source to a high enough point to get all the needed files, but I don't want to troll through 43 other projects todo what I want, let along mucking with their assembly files...</p> <p>I have also tried :</p> <pre><code>&lt;!-- Check out all of the assemblyInfo files --&gt; &lt;Exec Command="$(TfCommand) checkout AssemblyInfo.cs /recursive" WorkingDirectory="$(SolutionRoot)" ContinueOnError="false"/&gt; </code></pre> <p>Same problem, unable to find any assembly files... I have checked build log and I definately see assembly files check out during the build phase...</p> <p>Task "Get" Get TeamFoundationServerUrl="http://pgpd-team01:8080/" BuildUri="vstfs:///Build/Build/1430" Force=True Overwrite=False PopulateOutput=False Preview=False Recursive=True Version="C7564" Workspace="SBN01P-TFS03_61" Getting C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources\Address Finalizer\Address Finalizer\Properties\AssemblyInfo.cs;C7525.</p> <p>If anyone has any ideas or can point me to some article to better explain how mutliple working folders work, I'd appreciate it.</p> <p>Values for some of the build variables:</p> <p>MSBuildProjectDirectory: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\BuildType</p> <p>SolutionRoot: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources</p> <p>To provide more information, I added the following command:</p> <pre> &lt;!-- Report what our working folders are --&gt; &lt;Exec Command='$(TfCommand) workfold' WorkingDirectory="$(SolutionRoot)\TEAM-MAIN\Address Finalizer"/&gt; </pre> <p>The result was:</p> <pre> Task "Exec" Command: "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\..\tf.exe" workfold =============================================================================== Workspace: SBN01P-TFS03_61 (tfsservice) Server : http://pgpd-team01:8080/ $/InfoTurn/TEAM-MAIN/Address Finalizer: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources\TEAM-MAIN\Address Finalizer $/InfoTurn/TEAM-MAIN/HH-CAHPS Project/MAINLINE/3rd Party: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources\TEAM-MAIN\HH-CAHPS Project\MAINLINE\3rd Party </pre> http://stackoverflow.com/questions/1824747/building-select-projects-only-with-team-foundation-build 0 Building select projects only with Team Foundation Build Jakob Gade 2009-12-01T08:26:14Z 2009-12-01T21:11:44Z <p>I’m trying to set up Team Foundation Build and so far it’s running ok with builds, tests and code analysis. </p> <p>My problem is, that I can’t figure out how to build just a subset of the projects included in the solution. I know how to use the configuration manager to create custom solution configuration that will build/deploy a selection of my projects. But when I create a new build definition, I only get the default “Debug” and “Release” configurations.</p> <p><img src="http://img686.imageshack.us/img686/7453/builddefinitionprojectf.jpg" alt="alt text"></p> <p>How do I set up a Team Foundation Build that only includes a selection of the projects in the solution? </p> <p>I know I may be on the completely wrong track here, but I've been digging around for a while and so far it's my best guess.</p> http://stackoverflow.com/questions/1827651/how-do-you-get-the-latest-version-of-source-code-using-the-team-foundation-server 0 How do you get the latest version of source code using the Team Foundation Server SDK? John Rasch 2009-12-01T17:22:39Z 2009-12-01T17:22:39Z <p>I'm attempting to pull the latest version of source code out of TFS programmatically using the SDK, and what I've done somehow does not work:</p> <pre><code>string workspaceName = "MyWorkspace"; string projectPath = "/TestApp"; string workingDirectory = "C:\Projects\Test\TestApp"; VersionControlServer sourceControl; // actually instantiated before this method... Workspace[] workspaces = sourceControl.QueryWorkspaces(workspaceName, sourceControl.AuthenticatedUser, Workstation.Current.Name); if (workspaces.Length &gt; 0) { sourceControl.DeleteWorkspace(workspaceName, sourceControl.AuthenticatedUser); } Workspace workspace = sourceControl.CreateWorkspace(workspaceName, sourceControl.AuthenticatedUser, "Temporary Workspace"); try { workspace.Map(projectPath, workingDirectory); GetRequest request = new GetRequest(new ItemSpec(projectPath, RecursionType.Full), VersionSpec.Latest); GetStatus status = workspace.Get(request, GetOptions.GetAll | GetOptions.Overwrite); // this line doesn't do anything - no failures or errors } finally { if (workspace != null) { workspace.Delete(); } } </code></pre> <p>The approach is basically creating a temporary workspace, using the <code>Get()</code> method to grab all the items for this project, and then removing the workspace. Is this the correct way to do this? Any examples would be helpful.</p> http://stackoverflow.com/questions/1823594/team-foundation-build-resolving-cross-solution-project-references 0 Team Foundation Build - resolving cross solution project references Owen B 2009-12-01T02:07:41Z 2009-12-01T10:14:17Z <p>We have a shared project referenced across multiple solutions which, when encountered by TF build causes: </p> <p>'error MSB3202: The project file "......\trunk\\\sharedproject.csproj" was not found'. </p> <p>This is fine as the directory structure on the build server does not reflect that of source control. Is it possible to modify the build file to search in a specific location for this project?</p> http://stackoverflow.com/questions/1686662/tfs-msbuild-strong-name-and-code-signing-of-assemblies 0 TFS MSBuild Strong name and code signing of assemblies. Morten Lyhr 2009-11-06T10:16:20Z 2009-12-01T06:00:03Z <p>I need to strong name and code sign my assemblies.</p> <p>I dont want to change anything in Visual Studio, all changes must be on the TFS Build server.</p> <p>Any know how I can do this?</p> http://stackoverflow.com/questions/927064/threading-issue-with-running-watin-tests-under-vstesthost 0 Threading issue with running WatiN tests under VSTestHost Craig Fisher 2009-05-29T16:59:09Z 2009-12-01T04:00:07Z <p>I've gotten a simple WatiN web test running on my dev environment and am trying to get it working on the TFS build server. WatiN is firing an exception: </p> <pre> System.Threading.ThreadStateException: The CurrentThread needs to have it's ApartmentState set to ApartmentState.STA to be able to automate Internet Explorer. </pre> <p>The test runner, VSTestHost supposedly uses STA threading by default. I've also tried explicitly forcing it to STA via the .testrunconfig file. Still WatiN is unhappy. I'm using Visual Studio/TFS 2008 on Windows Server 2008.</p> <p>Has anyone else hit this problem and found a solution?</p> http://stackoverflow.com/questions/1822960/error-deleting-project-in-tfs 0 Error deleting project in TFS unknown (google) 2009-11-30T22:47:18Z 2009-12-01T00:39:09Z <p>I created a "Test" project that I want to delete, using the following command: TfsDeleteProject /server:xyz\sqlserver2008 “Test“ Getting this error: TF30076: The server name or Uniform Resource Identifier (URI) you typed, xyz\sqlserver2008, cannot be resolved to a Team Foundation server. If you type a server name, it must match the name you typed in the Add Team Foundation Server dialog. If you type a URI, it must use the following syntax: http[s]://: The server instance is valid. (The installation of TFS is app tier and db are on seperate boxes) What might be going on ?</p> <p>xyz is eht server name, sqlserver2008 is the db instance. For eg. I access the db using sql server management studio client app using xyz\sqlserver2008 as dbname.</p> http://stackoverflow.com/questions/935506/what-are-the-best-practices-for-the-aspnetdevelopmentserverhost-attribute 2 What are the best practices for the AspNetDevelopmentServerHost attribute? Chris Lively 2009-06-01T16:06:55Z 2009-11-30T23:55:38Z <p>We have a Web Application Project (dozens actually..) that has a testing project attached to it. In the testing project I have a simple unit test which exercises a couple of methods.</p> <p>Running locally, the unit test executes and works.</p> <p>However, when our TFS Build server attempts to execute the test, it fails with a error about an invalid path for the AspNetDevelopmentServerHost attribute. Other team members can execute it just fine.</p> <p>The problem is that the root of my TFS Workspace is set to c:\projects\ One of the team members has theirs set to c:\tfs2008\ The TFS Build server on the other hand sets the pathToWebRoot variable to "c:\blahblah\Release_PublishedWebsites..." Which results in a bad path.</p> <p>Due to the number of projects we have, I can't have everyone reset an environment variable every time they switch projects. </p> <p>So, what are the best practices with regards to unit testing web projects in a team environment? The <a href="http://msdn.microsoft.com/en-us/library/ms404875%28VS.80%29.aspx" rel="nofollow">MSDN site article</a> was in true microsoft fashion less than helpful.</p> http://stackoverflow.com/questions/1822877/using-svnbridge-with-tfs-not-codeplex 1 Using SVNBridge with TFS (not CodePlex) IUnknown 2009-11-30T22:29:43Z 2009-11-30T22:29:43Z <p>Hi.</p> <p>I'm trying to access my TFS Server using SVNBridge so I can work disconnected. I tried using the server-based as well as client-based solution. I'm just getting internal server 500 errors returned. I'm not sure I'm connecting to the site correctly though.</p> <p>Other posts I've read concerning SVNBridge seem to exclusively be about CodePlex and connecting to it through a CodePlex specific URL.</p> <p>I'm trying to connect to my own TFS server and wondering how to properly format the URL. Do I need to do something special for that? I feel like I've tried everything. Anybody have any success doing such a thing?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1113906/install-tfs-2008-on-windows-2008-with-sql-server-2008 0 Install TFS 2008 on Windows 2008 with SQL Server 2008 Pedro Santos 2009-07-11T15:03:26Z 2009-11-30T14:04:31Z <p>Hi,</p> <p>I'm trying to install Team Foundation Server using 2 machines:</p> <p><strong>Machine1</strong>: OS: Windows 2008 Server Installed applications: SQL Server 2008 SQL Server 2008 Analysis Services</p> <p><strong>Machine2</strong>: OS: Windows 2008 Server Installed applications: SQL Server 2008 Reporting Services Windows SharePoint Services 3.0 WSS/Reporting Services connector</p> <p>The plan is to install TFS 2008 on machine 2 but after a lot of struggle I'm getting an error 28805 while installing TFS. I've tried to apply every solution I was able to find on the web without success. Almost all solutions I've found so far target Windows 2003 and SQL Server 2005. </p> <p>Has anyone been able to deploy TFS 2008 on a configuration as the one I've described?</p> <p>Thanks,</p> <p>Pedro</p> http://stackoverflow.com/questions/1815562/how-to-delete-a-developers-workspace 1 how to delete a developers workspace Ralph Shillington 2009-11-29T13:32:36Z 2009-11-29T14:01:36Z <p>A developer has left, and his workstation is now formatted. TFS thinks he still has files checked out. Clearly he'll never be checking them in. How do I tell TFS to forget about it?</p> http://stackoverflow.com/questions/1660194/limited-user-premissions-in-team-foundation-server 1 Limited user premissions in team foundation server Alex James 2009-11-02T09:21:36Z 2009-11-29T06:16:23Z <p>Can I setup Team Foundation Server in such a manner that every uer have only access to some source code files?</p> http://stackoverflow.com/questions/894570/tf10216-team-foundation-services-are-currently-unavailable-user-problem 2 TF10216: Team Foundation services are currently unavailable. (user problem?) Per 2009-05-21T19:08:42Z 2009-11-29T06:10:47Z <p>Hi. I have some trouble getting my team foundation server to work.</p> <p>If i try to access the http://:8080/services/v1.0/serverstatus.asmx with the "administrator" account everything seems fine.</p> <p>But if i try to access it as some other user i get:</p> <p>TF10216: Team Foundation services are currently unavailable. Try again later. If the problem persists, contact your Team Foundation Server administrator.</p> <p>I cant find any errors in the event logs. Any ideas?</p> http://stackoverflow.com/questions/1799314/team-foundation-build-2008-minus-the-sln-files 2 Team Foundation Build (2008) minus the .sln files? Brook 2009-11-25T19:15:06Z 2009-11-28T20:21:58Z <p>Setting up a new team build in tfs build 2008, you're forced to select a .sln file for your build definition.</p> <p>I've read through Microsoft.TeamFoundation.Build.Targets, and from what I understand, all team build does is convert the silly .sln format to msbuild in tfsbuild.proj on-the-fly, and then build that. So what you end up with is tfsbuild.proj calls mysolution.sln which then calls myproject.csproj.</p> <p>What I would prefer would be to have tfsproj import myproject.csproj, override a few targets, and skip the whole .sln=>msbuild black box.</p> <p>Has anyone done this? what are the right targets to override to cleanly amputate the .sln mess? I'm thinking CoreCompileConfiguration will need to be overridden.</p> <p>What would I be losing by cutting out the .sln functionality?</p> http://stackoverflow.com/questions/941030/team-foundation-server-2005-and-sql-express-2005 0 Team Foundation Server 2005 and SQL Express 2005 MattH 2009-06-02T18:04:56Z 2009-11-27T20:28:35Z <p>I haven't seen anything that says SQL Express 2005 is not supported for use with Team Foundation Server 2005. </p> <p>However, when I attempt the installation I get all sorts of errors "SQL Agent service not installed", "SQL Server 2005 Analysis Services service is not installed", etc.</p> <p>Is SQL Server Standard or higher, required?</p> http://stackoverflow.com/questions/1808103/how-to-import-testcases-in-tfs-from-excel-sheet 0 How to import testcases in TFS from excel sheet monika 2009-11-27T11:01:29Z 2009-11-27T11:01:29Z <p>i need some help on writting a macro which will upload the test cases in excel sheet directly into TFS</p> http://stackoverflow.com/questions/1804844/using-tfs-with-third-party-bug-issue-tracking 1 Using TFS with Third Party Bug/Issue Tracking? NickGPS 2009-11-26T17:13:12Z 2009-11-27T02:46:36Z <p>Are there any 3rd party bug tracking applications that integrate with TFS? </p> <p>My company wants to use TFS for source control but not for bug tracking if there are any better 3rd party tools.</p> http://stackoverflow.com/questions/332567/does-any-tool-exist-to-help-sync-a-directory-with-tfs 0 Does any tool exist to help Sync a directory with TFS? Bob 2008-12-01T23:14:36Z 2009-11-26T12:01:48Z <p>When using TFS with a tool outside of Visual Studio (Specifially ORMS), modifications to the project file to include a new file will not cause the file to be added to source control.</p> <p>Does anything exist that could potentially say "Warning: You are about to check in change to a project file which include a file which is not versioned"</p> http://stackoverflow.com/questions/1797838/is-there-a-overview-of-my-existing-shelves-available-in-visual-studio-2008-when-s 0 Is there a overview of my existing shelves available in Visual Studio 2008 when shelving? Flo 2009-11-25T15:47:42Z 2009-11-26T03:15:35Z <p>I'm using Visual Studio 2008 and discovered the shelve/unshelve function for me and became a great fan of it. </p> <p>But there is one thing that annoys me. The shelve dialog lags a overview of my existing shelves. So each time I want to shelve I first open the unshelve dialog which lists all my existing shelves. After closing the dialog I open the shelve dialog to create a new one or to overwrite an existing one. </p> <p>So I'm wondering if there is way to get a list of my own shelves stored on the TFS without having to open the unshelve dialog before. </p> http://stackoverflow.com/questions/1798033/tf14087-cannot-undelete-file-because-not-all-of-the-deletion-is-being-undeleted 0 tf14087 Cannot undelete [file] because not all of the deletion is being undeleted Kaius 2009-11-25T16:12:49Z 2009-11-25T16:12:49Z <p>We are getting this error when we try to merge from a development branch (Dev) back to its parent branch (Main). Main did have some changesets rolled back a few weeks ago which included the deletion of some folders which exist in Dev. We believe this is the source of the problem. What is the best way to resolve this. </p> <p>Main should pretty much match up with Dev but currently it is missing some sub folders. How can I get these folders / files to move from Dev to Main? We are trying to manually resolve the changes but it is a bit of a mess. It hard to believe that TFS makes things this hard to resolve.</p> http://stackoverflow.com/questions/544253/tfs-how-can-you-undo-checkout-of-unmodified-files-in-a-batch-file 3 TFS: How can you Undo Checkout of Unmodified files in a batch file Robert Wagner 2009-02-13T00:44:50Z 2009-11-25T10:28:41Z <p>We use a batch file to generate code, and it automatically checks out the generated files from Team Foundation Server (TFS) so that it can regenerate them. The majority of these files are not modified, but the generator does not know this ahead of time.</p> <p>The "tfs undo" command undoes the checkout, but prompts if some have been modified (which we don't want to do). We also do not want to check in the generated files right away.</p> <p>Is there a command (or series of commands) to undo checkout of all unmodified files without prompting the user? </p> http://stackoverflow.com/questions/1782559/moving-tfs-template-between-servers 1 Moving TFS Template between servers Shiraz Bhaiji 2009-11-23T11:27:33Z 2009-11-25T09:32:20Z <p>We have customized a TFS Template.</p> <p>We would now like to move this template to a different TFS Server.</p> <p>What is the best ways to do this?</p> <p>Thanks</p> <p>Shiraz</p> <p><strong>EDIT</strong></p> <p>We tried the process template as recommend below, but got the following error when trying to import:</p> <pre><code>---begin Exception entry--- Time: 2009-11-25 10:28:24Z Module: Engine Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Message: TF30272: Template not found on the server Stack Trace: at Microsoft.VisualStudio.TeamFoundation.WssSiteCreator.VerifySiteTemplate(ProjectCreationContext context, String template, Int32 lcid) at Microsoft.VisualStudio.TeamFoundation.WssSiteCreator.ValidateSite(ProjectCreationContext context, XmlNode site) at Microsoft.VisualStudio.TeamFoundation.WssSiteCreator.Validate(ProjectCreationContext context, XmlNode taskXml) at Microsoft.VisualStudio.TeamFoundation.ProjectCreationEngine.TaskValidator.PerformTask(IProjectComponentCreator componentCreator, ProjectCreationContext context, XmlNode taskXml) at Microsoft.VisualStudio.TeamFoundation.ProjectCreationEngine.RunTask(Object taskObj) --- end Exception entry --- 2009-11-25 10:28:24Z | Module: Engine | Thread: 7 | TF30202: Task "" from Group "" will not be run because a prior task failed. 2009-11-25 10:28:24Z | Module: Engine | Thread: 7 | TF30202: Task "Site" from Group "Reporting" will not be run because a prior task failed. 2009-11-25 10:28:24Z | Module: Engine | Thread: 7 | TF30202: Task "Populate Reports" from Group "Reporting" will not be run because a prior task failed. 2009-11-25 10:28:24Z | Module: Engine | Thread: 7 | TF30202: Task "" from Group "" will not be run because a prior task failed. ---begin Exception entry--- Time: 2009-11-25 10:28:24Z Module: Template Importer Exception Type: Microsoft.TeamFoundation.Client.ValidationFailedException Exception Message: TF30175: Process template validation failed Stack Trace: at Microsoft.VisualStudio.TeamFoundation.EngineStarter.ValidateTemplate(DirectoryInfo templateDirectory) at Microsoft.VisualStudio.TeamFoundation.TemplateManagementService.ValidateMethodology(String folderPath, ILogHandler logHandler) at Microsoft.VisualStudio.TeamFoundation.TemplateManagementService.Import(String folderPath, ILogHandler logHandler) -- Inner Exception -- Exception Type: Microsoft.VisualStudio.TeamFoundation.TaskFailedException Exception Message: TF30162: Task "SharePointPortal" from Group "Portal" failed Stack Trace: at Microsoft.VisualStudio.TeamFoundation.ProjectCreationEngine.PerformAllTasks(ITaskPerformer taskPerformer, ProjectCreationContext creationContext, List`1 projectTasks) at Microsoft.VisualStudio.TeamFoundation.EngineStarter.RunEngine(Boolean isValidationRun, String templateFolder) at Microsoft.VisualStudio.TeamFoundation.EngineStarter.ValidateTemplate(DirectoryInfo templateDirectory) -- end Inner Exception -- -- Inner Exception -- Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Message: TF30272: Template not found on the server Stack Trace: at Microsoft.VisualStudio.TeamFoundation.WssSiteCreator.VerifySiteTemplate(ProjectCreationContext context, String template, Int32 lcid) at Microsoft.VisualStudio.TeamFoundation.WssSiteCreator.ValidateSite(ProjectCreationContext context, XmlNode site) at Microsoft.VisualStudio.TeamFoundation.WssSiteCreator.Validate(ProjectCreationContext context, XmlNode taskXml) at Microsoft.VisualStudio.TeamFoundation.ProjectCreationEngine.TaskValidator.PerformTask(IProjectComponentCreator componentCreator, ProjectCreationContext context, XmlNode taskXml) at Microsoft.VisualStudio.TeamFoundation.ProjectCreationEngine.RunTask(Object taskObj) -- end Inner Exception -- --- end Exception entry --- </code></pre> http://stackoverflow.com/questions/1795453/get-linked-work-item-in-team-foundation-server 0 Get linked work item in Team Foundation Server Raj Kumar 2009-11-25T08:29:31Z 2009-11-25T08:51:44Z <p>Hi</p> <p>Does anyone has any idea how we can retrieve all linked work item in TFS from a given work item. Code snippet will be of great help</p> http://stackoverflow.com/questions/1769678/permanent-deleting-under-tfs-2005 1 Permanent deleting under TFS 2005 Vinz 2009-11-20T10:45:37Z 2009-11-24T23:25:07Z <p>How can I permanently delete a folder/file under TFS 2005 source control?</p> <p>I know about the <code>tf destroy</code> command, but that only works with TFS 2008.</p> <p>I also know about the <a href="http://tfspowerpack.codeplex.com/" rel="nofollow">TFS PowerPack at CodePlex</a>, but I want to know if there is a built-in tool to achieve this.</p> http://stackoverflow.com/questions/1562058/undo-operation-for-tfs 0 Undo operation for TFS? Jeff 2009-10-13T18:23:51Z 2009-11-24T18:00:04Z <p>I got the 'resolve' dialog in TFS, and it looks like I clicked too fast on the wrong button (because they're too close together) and blew away a week's worth of work when TFS discarded my local changes. Is there an undo operation somewhere? </p> http://stackoverflow.com/questions/1770223/visual-studio-build-tasks-tfs-operations 0 Visual Studio Build Tasks - TFS Operations Bobbie 2009-11-20T12:42:24Z 2009-11-24T13:55:45Z <p>I'm looking to extend some post build tasks to include the checking out and then checking in of a DLL. We are using TFS and I know there are command line tools to do this. What I don't know how to do is to integrate these into my existing post build tasks. Right now my post build tasks are simple and are managed in Visual Studio through the project properties. Eventually I want to break out my custom build tasks into external files and call them in, but that is the subject of another question ;)</p> http://stackoverflow.com/questions/1789126/best-practices-for-improving-software-quality 2 Best Practices for improving Software Quality Chris Jones 2009-11-24T10:13:03Z 2009-11-24T11:15:17Z <p>We are looking for methods to improve our internal processes when developing software.</p> <p>We have already adopted TDD contiguous integration and Agile. Any obscure features of visual studio or TFS?</p> <p>All suggestions welcome.</p> http://stackoverflow.com/questions/1614458/parse-fitnesse-restful-xml-output-into-tfs-test-format 2 Parse Fitnesse RESTFul XML output into TFS Test format David Laing 2009-10-23T16:07:58Z 2009-11-24T09:41:00Z <p>I'm integrating a Fitnesse Acceptance test suite into a TFS based CI process.</p> <p>I can run the Fitnesse Test suite in a RESTful manner (<a href="http://fitnesse.org/FitNesse.UserGuide.RestfulTests" rel="nofollow">http://fitnesse.org/FitNesse.UserGuide.RestfulTests</a>): </p> <pre><code>http://myfitnesseserver/MyTestSuite?suite&amp;format=xml </code></pre> <p>and get back an XML document of test results.</p> <p>I'd like to transform that into a format that TFS can interpret as number of tests passed / failed.</p> <p>Any pointers?</p> <p>Thanks</p> http://stackoverflow.com/questions/1273030/setting-up-my-mvc-project-on-iis-6 1 Setting up my MVC project on IIS 6 J Lundberg 2009-08-13T16:17:31Z 2009-11-24T06:23:31Z <p>I am very new at web development in general and I am trying to publish my first web app. I am using ASP.Net MVC 1 and IIS 6. I have read the post <a href="http://stackoverflow.com/questions/628236/how-to-make-asp-net-mvc-work-in-iis-6">http://stackoverflow.com/questions/628236/how-to-make-asp-net-mvc-work-in-iis-6</a> and Phil Haack's blog post at <a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx</a>. However, the problem I am having is that I don't have IIS on my own work computer and it is only up on the server I am publishing to.</p> <p>I don't know what steps need to be taken before I put my build up on the server and what steps are after. Also, I am not really sure how I should setup my properties on my program before I build on the server.</p> <p>I am using TFS as source control and using that to create the build and copying to the server.</p> <p>Any help would be very appreciated.</p> http://stackoverflow.com/questions/1775661/delete-a-sharepoint-wiki-page-that-has-no-menu 0 Delete a Sharepoint Wiki page that has no menu Graeme 2009-11-21T14:45:35Z 2009-11-23T16:28:29Z <p>Hi I created a Wiki in Sharepoint 2007, and then deleted the Home page. Now when I go to the AllPages.aspx (ie the root of the wiki) I've got no menu options. I cannot delete the Wiki page, or add any pages to it. </p> <p>Here's what I see - there's no way to delete it as far as I can tell. Any help greatly appreciated, don't want to start using Sharepoint if the first thing it does it create undeletable orphans...</p> <p><img src="http://i45.tinypic.com/k4b3a0.jpg" alt="alt text"></p>