Microsoft.TeamFoundation.VersionControl.Common.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.TeamFoundation.VersionControl.Common</name>
    </assembly>
    <members>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.ByteStreamCompare">
            <summary>
            Compares two streams to verify that they're identical or not.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.ByteStreamCompare.Equals(System.IO.Stream,System.IO.Stream,System.Byte[],System.Byte[])">
            <summary>
            The stream comparison routine. Returns true if the streams are identical,
            and false if not. The routine takes the easy way out if the streams are seekable
            and the file lengths are different.
            </summary>
            <remarks>This API takes in buffer arguments in order to allow callers to reduce
            the number of large objects that need to go on the large object heap at runtime.
            </remarks>
            <param name="stream1">The first stream to compare against.</param>
            <param name="stream2">The stream to compare to.</param>
            <param name="buffer1">The buffer to load in the data from stream1.</param>
            <param name="buffer2">The buffer to load in the data from stream2.</param>
            <returns>True if the streams are identical, otherwise returns false.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.ByteStreamCompare.Equals(System.String,System.String,System.Int32)">
            <summary>
            The stream comparison routine. Returns true if the streams are identical,
            and false if not. The routine takes the easy way out if the streams are seekable
            and the file lengths are different.
            </summary>
            <remarks>This API takes in buffer arguments in order to allow callers to reduce
            the number of large objects that need to go on the large object heap at runtime.
            </remarks>
            <param name="s1">The first stream to compare against.</param>
            <param name="s2">The stream to compare to.</param>
            <param name="buffer1">The buffer to load in the data from stream1.</param>
            <param name="buffer2">The buffer to load in the data from stream2.</param>
            <returns>True if the streams are identical, otherwise returns false.</returns>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.CodeChurnConstants">
            <summary>
            Constants used by the Code Churn Job for access to registry, properties,
            and settings.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.CodeChurnUtility">
            <summary>
            Utility class, used for parsing code churn details.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.CodeChurnUtility.ConvertToByte(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Takes in code churn details and returns a composite byte used for code churn storage
            </summary>
            <param name="linesCount"></param>
            <param name="linesAdded"></param>
            <param name="linesDeleted"></param>
            <param name="linesModified"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.CodeChurnUtility.ConvertToInt(System.Byte[],System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
            <summary>
            Takes a code churn property value in binary form and parses it to return the code churn details.
            </summary>
            <param name="byteValue"></param>
            <param name="linesCount"></param>
            <param name="linesAdded"></param>
            <param name="linesDeleted"></param>
            <param name="linesModified"></param>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.VCTraceKeywords">
            <summary>
            Version Control specific trace keywords.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.VCTraceKeywordSets">
            <summary>
            Version Control specific trace keyword sets.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffSegmentType">
            <summary>
            The type of the DiffSegment/MergeHunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegmentType.Common">
            <summary>
            The contents of both files are the same for the range of the hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegmentType.Modified">
            <summary>
            The contents of both files are different for the range of the hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegmentType.Latest">
            <summary>
            The contents of Common and Latest are different for the range of the hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegmentType.Conflict">
            <summary>
            Both the Common/Modified and Common/Latest regions of this file are different.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegmentType.DiffCommon">
            <summary>
            Modified and Latest regions of this file are identical, but the Common
            version is different.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment">
            <summary>
            A linked list of difference hunks.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_next">
            <summary>
            The next hunk in the chain.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_type">
            <summary>
            The type of the diff hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_originalStartOffset">
            <summary>
            The starting byte offset in the original file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_originalByteLength">
            <summary>
            The byte length in the original file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_originalStart">
            <summary>
            The starting token number in the original file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_originalLength">
            <summary>
            The length in tokens in the original file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_modifiedStartOffset">
            <summary>
            The starting byte offset in the destination file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_modifiedStart">
            <summary>
            The starting token number in the destination file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_modifiedLength">
            <summary>
            The length in tokens in the destination file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_modifiedByteLength">
            <summary>
            The length in bytes in the destination file stream for this hunk.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.m_charDiffs">
            <summary>
            An array of character differences for the block.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.OriginalByteLength">
            <summary>
            Returns the length in bytes in original file stream for this hunk.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.ModifiedByteLength">
            <summary>
            Returns the length in bytes in the destination file stream for this hunk.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.OriginalStartOffset">
            <summary>
            The index of the original starting position in the token array.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.ModifiedStartOffset">
            <summary>
            The index of the starting modifed token in the token array.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.Next">
            <summary>
            The next hunk in a DiffSegment sequence. Returns null if this is the end
            of the list.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.Type">
            <summary>
            Returns the DiffSegmentType of this DiffSegment. (Common, Modified, Conflict)
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.OriginalStart">
            <summary>
            Returns the orginal starting token index for this DiffSegment.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.OriginalLength">
            <summary>
            Returns the number of tokens in the orginal file for this DiffSegment.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.ModifiedStart">
            <summary>
            The starting token index in the modified file for this DiffSegment.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.ModifiedLength">
            <summary>
            The length (in tokens) of the modified file in this DiffSegment.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.LatestStart">
            <summary>
            The starting token index in the latest file for this DiffSegment.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.LatestLength">
            <summary>
            The length (in tokens) of the latest file in this DiffSegment.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.LatestStartOffset">
            <summary>
            The starting byte offset of the latest file for this hunk.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.LatestByteLength">
            <summary>
            Returns the length in bytes in the latest file stream for this hunk.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.CharDiffs">
            <summary>
            Returns the array of character differences for the block.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffSegment.Convert(Microsoft.TeamFoundation.Diff.LineChanges[],System.Int32,System.Int32)">
            <summary>
            Converts an IDiffList into a DiffSegment linked list for compatibility with the old engine
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput">
            <summary>
            Base class for outputting the results of a difference operation to
            a stream.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput.Options">
            <summary>
            Gets the diff options
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput.Out">
            <summary>
            Gets the output stream writer
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput.WriteElementRange(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.String,System.Int32,System.Int32)">
            <summary>
            Helper method to write elements from the given sequence and range
            to the stream. The line will be start with the given prefix.
            The elements written will be bounded by the bounds of the sequence.
            </summary>
            <param name="sequence">The sequence which contains the elements
            to write.</param>
            <param name="prefix">The string that should prefix each element.</param>
            <param name="startIndex">The start index of the elements to write.</param>
            <param name="endIndex">The end index of the elements to write.</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput.WriteUnixChangeHeader(Microsoft.TeamFoundation.Diff.IDiffChange)">
            <summary>
            Prints one of the following unix diff change headers:
            #a#,#
            #,#d#
            #,#c#,#
            </summary>
            <param name="change">The change</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput.ComputeHunkEnd(Microsoft.TeamFoundation.Diff.IDiffChange[],System.Int32,System.Int32)">
            <summary>
            Helper method to merge a set of consecutive DiffChanges into a
            'hunk'. Consecutive DiffChanges will be in the hunk provided
            that they are separated by less than (2 * contextLines) elements.
            Given the diffList index to start computing the hunk at, this method
            returns the diffList index of the last DiffChange in the hunk.
            </summary>
            <param name="diffList">The list of DiffChanges</param>
            <param name="hunkStart">The start index of the hunk</param>
            <param name="contextLines">The number of context lines</param>
            <returns>The end index of the hunk</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput.Output(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.Diff.IDiffChange[])">
            <summary>
            Concrete implementations must provide this method which performs
            the output.
            </summary>
            <param name="original">The original sequence</param>
            <param name="modified">The modified sequence</param>
            <param name="diffList">The list of differences</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOutput.Create(Microsoft.TeamFoundation.VersionControl.Common.DiffOptions)">
            <summary>
            Creates an appropriate DiffOutput from the given DiffOptions.
            </summary>
            <param name="options">The diff options</param>
            <returns>The created DiffOutput instance</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Vss.WriteElementRange(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.String,System.Int32,System.Int32,System.Int32)">
            <summary>
            Helper method to write elements from the given sequence and range
            to the stream. The line will be start with the given prefix.
            The elements written will be bounded by the bounds of the sequence.
            </summary>
            <param name="sequence">The sequence which contains the elements
            to write.</param>
            <param name="prefix">The string that should prefix each element.</param>
            <param name="startIndex">The start index of the elements to write.</param>
            <param name="endIndex">The end index of the elements to write.</param>
            <param name="maxLength">The maximum number of characters to write
            (including prefix). Use UnlimitedWidth for unlimited.</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Vss.WriteVssRange(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.String,System.Int32,System.Int32,System.Int32)">
            <summary>
            Writes a range of elements using a VSS template:
            # Ins: ...
            # Del: ...
            Where # is the line number and ... is the line
            Only maxLength characters will be written to the stream.
            </summary>
        </member>
        <!-- Badly formed XML comment ignored for member "M:Microsoft.TeamFoundation.VersionControl.Common.Vss.WriteSideBySideRange(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.String,System.Int32,System.Int32,System.Int32,Microsoft.TeamFoundation.VersionControl.Common.Vss.Column)" -->
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.Vss.Column">
            <summary>
            An enumeration of columns for SideBySide diff output
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffUtil.DiffFiles(System.String,System.Text.Encoding,System.String,System.Text.Encoding,Microsoft.TeamFoundation.VersionControl.Common.DiffOptions,System.String)">
            <summary>
            Performs a diff against the given files using the given encodings
            and writes the output to the stream provided in the given options.
            </summary>
            <param name="originalPath">The path to the original file</param>
            <param name="originalEncoding">The encoding of the original file</param>
            <param name="modifiedPath">The path to the modified file</param>
            <param name="modifiedEncoding">The encoding of the modified file</param>
            <param name="diffOptions">The options for the diff</param>
            <param name="fileLabel">The file label for output</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffUtil.Diff(System.IO.Stream,System.Text.Encoding,System.IO.Stream,System.Text.Encoding,Microsoft.TeamFoundation.VersionControl.Common.DiffOptions,System.Boolean)">
            <summary>
            Performs a diff against the given streams using the given encodings
            and returns a summary of the differences.
            </summary>
            <param name="originalStream">The path to the original file</param>
            <param name="originalEncoding">The encoding of the original file</param>
            <param name="modifiedStream">The path to the modified file</param>
            <param name="modifiedEncoding">The encoding of the modified file</param>
            <param name="diffOptions">The options for the diff</param>
            <param name="includeChangesInSummary">If true, the diff change list
            will be included in the summary</param>
            <returns>The diff summary</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffUtil.DiffFiles(System.String,System.Text.Encoding,System.String,System.Text.Encoding,Microsoft.TeamFoundation.VersionControl.Common.DiffOptions,System.Boolean)">
            <summary>
            Performs a diff against the given files using the given encodings
            and returns a summary of the differences.
            </summary>
            <param name="originalPath">The path to the original file</param>
            <param name="originalEncoding">The encoding of the original file</param>
            <param name="modifiedPath">The path to the modified file</param>
            <param name="modifiedEncoding">The encoding of the modified file</param>
            <param name="diffOptions">The options for the diff</param>
            <param name="includeChangesInSummary">If true, the diff change list
            will be included in the summary</param>
            <returns>The diff summary</returns>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions">
            <summary>
            The options that are available with performing diffs.
             
            NOTE: This was copied this pretty much verbatim from the old engine, since
            we already shipped this class.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.#ctor">
            <summary>
            Constructs a new DiffOptions instance
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.CodePageOverride">
            <summary>
            Code page override from the command-line, non-zero means provide the override
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.GetCodePage(System.Int32)">
            <summary>
            Gets the code page override if available, otherwise returns the provided
            fall-back code page.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.CommandLineOptions">
            <summary>
            Command-line options to pass to a third-party tool
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.ContextLines">
            <summary>
            The number of lines of context to provide for output formats that use them.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.CultureInfo">
            <summary>
            Returns the CultureInfo that should be used if any DiffOption flags require it.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.Flags">
            <summary>
            The various flags that can be set for a difference operation.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.OutputType">
            <summary>
            Output type to use
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.SourceEncoding">
            <summary>
            The encoding of the source files.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.TargetEncoding">
            <summary>
            The encoding of the output stream.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.SourceLabel">
            <summary>
            The string that should be used to label the source diff stream.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.TargetLabel">
            <summary>
            The string that should be used to label the target diff stream.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.Recursive">
            <summary>
            Whether this diff should be recursive
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.StreamWriter">
            <summary>
            Gets or sets the output stream writer.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.SetTargetEncodingToConsole">
            <summary>
            A helper method to set the target encoding to the encoding of the Console.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.UseThirdPartyTool">
            <summary>
            Whether this diff should attempt to invoke up a third-party tool
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.VssOutputWidth">
            <summary>
            If this property is set, then the VSS output will be adjusted to fit inside this width.
            When set to -1 none of the output is trimmed at all.
            </summary>
            <value>Returns the width of the VSS output format.</value>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffOptions.VssFormatType">
            <summary>
            Returns the VSS output subtype to be used when formatting the output stream (if any at all).
            This property is strictly for backward compatability purposes. This property defaults to VssOutputType.Vss
            as does the VSS command line.
            </summary>
            <value>Returns the kind of VSS diff output that will be generated.</value>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer">
            <summary>
            Helper class to compare DiffLines
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer.Equals(Microsoft.TeamFoundation.VersionControl.Common.DiffLine,Microsoft.TeamFoundation.VersionControl.Common.DiffLine)">
            <summary>
            Returns true if the given elements are equal.
            </summary>
            <param name="x">The left element</param>
            <param name="y">The right element</param>
            <returns>True if the two elements are equal</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer.Equals(System.Object,System.Object)">
            <summary>
            Returns true if the given elements are equal.
            </summary>
            <param name="left">The left element</param>
            <param name="right">The right element</param>
            <returns>True if the two elements are equal</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer.GetHashCode(Microsoft.TeamFoundation.VersionControl.Common.DiffLine)">
            <summary>
            Provide the hash code for the given DiffElement
            </summary>
            <param name="element">The DiffElement to get the hash code for</param>
            <returns>The hash code</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer.GetHashCode(System.Object)">
            <summary>
            Provide the hash code for the given DiffElement
            </summary>
            <param name="element">The DiffElement to get the hash code for</param>
            <returns>The hash code</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer.RemoveWhitespace(System.String)">
            <summary>
            Removes all whitespace characters from the input string and returns
            the whitespace-stripped result.
            </summary>
            <param name="input">The input string</param>
            <returns>The input string with all whitespace characters removed</returns>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary">
            <summary>
            A summary of the differences between two files
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.#ctor(Microsoft.TeamFoundation.VersionControl.Common.DiffFile,Microsoft.TeamFoundation.VersionControl.Common.DiffFile,Microsoft.TeamFoundation.Diff.IDiffChange[],System.Boolean)">
            <summary>
            Constructs a new DiffSummary from the given files and diff change list.
            The diff change list will be included in the summary if requested.
            </summary>
            <param name="original">The original file sequence</param>
            <param name="modified">The modified file sequence</param>
            <param name="diffList">The diff list</param>
            <param name="includeChanges">If true, the diff change list will
            be included in the summary</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a DiffSummary with the given values
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.OriginalLineCount">
            <summary>
            The number of lines in the original file
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.ModifiedLineCount">
            <summary>
            The number of lines in the modified file
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.TotalLinesAdded">
            <summary>
            The total number of lines that were added
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.TotalLinesModified">
            <summary>
            The total number of lines that were modified
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.TotalLinesDeleted">
            <summary>
            The total number of lines that were deleted
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.Changes">
            <summary>
            The list of changes
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffSummary.ToString">
            <summary>
            Returns the DiffSummary as a string
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffFile">
            <summary>
            A sequence of lines from a file.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffFile.#ctor(System.Int32,System.Text.Encoding,System.Boolean)">
            <summary>
            Constructs a new DiffSequence with the given DiffElements.
            </summary>
            <param name="lines">The lines in the file.</param>
            <param name="encoding">The encoding used to instantiate the files</param>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffFile.HasPreamble">
            <summary>
            Returns true if the encoding of the file supports a preamble
            and the file contains a preamble
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffFile.Encoding">
            <summary>
            Returns the encoding used to create the DiffFile instance
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffFile.Create(System.String,System.Text.Encoding,Microsoft.TeamFoundation.VersionControl.Common.DiffOptions)">
            <summary>
            Creates a DiffFile for the specified file.
            </summary>
            <param name="filePath">The path of the file to use.</param>
            <param name="fileEncoding">The character encoding of the file.</param>
            <returns>The DiffFile for the file.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffFile.Create(System.IO.Stream,System.Text.Encoding,Microsoft.TeamFoundation.VersionControl.Common.DiffOptions)">
            <summary>
            Creates a DiffFile for the specified stream.
            </summary>
            <param name="stream">The stream to use.</param>
            <param name="encoding">The encoding of characters
            in the stream.</param>
            <param name="throwIfEncodingMismatch">If the encoding cannot be used to read the file, throw.</param>
            <param name="scanFullFile">Whether to scan the full file on encoding detection.</param>
            <returns>The DiffFile for the stream.</returns>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffLine">
            <summary>
            A line from a file.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLine.#ctor(System.String,Microsoft.TeamFoundation.Diff.EndOfLineTerminator,Microsoft.TeamFoundation.VersionControl.Common.DiffOptions)">
            <summary>
            Constructs a new DiffLine with the given content.
            </summary>
            <param name="content">The content of the DiffLine</param>
            <param name="eol">The end-of-line type that terminates the line</param>
            <param name="options">The options for the diff that this DiffLine
            is involved in</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLine.ComputeHashCode(System.Globalization.CultureInfo,System.Boolean,System.Boolean)">
            <summary>
            Computes a hash code that ignores casing and whitespace characters
            using the specified culture info
            </summary>
            <param name="cultureInfo">The culture info</param>
            <param name="ignoreWhiteSpace">If true, the hash code computation will
            ignore whitespace characters</param>
            <param name="ignoreCase">If true, the hash code computation will
            ignore the casing of the characters</param>
            <returns>The computed case/whitespace invariant hash code</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLine.ToString">
            <summary>
            Retrieves the DiffLine as a string
            </summary>
            <returns>Returns the DiffLine</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DiffLine.GetHashCode">
            <summary>
            Gets the hash code for the line.
            </summary>
            <returns>The hash code for the line</returns>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffLine.Content">
            <summary>
            Gets the line content.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DiffLine.EndOfLineTerminator">
            <summary>
            Gets the End-of-Line terminator for this line.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffOptionFlags">
            <summary>
            Diff option flags
             
            NOTE: This was copied pretty much verbatim from the old engine, since
            we already shipped this enum.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffOptionFlags.ScanFullFileForEncodingDetection">
            <summary>
            When true, the entire file will be scanned for encoding detection.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffOptionFlags.ThrowIfDetectedEncodingMismatch">
            <summary>
            Throws if the file cannot be read using the encoding we detected.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.DiffOptionFlags.IgnoreEndOfFileEndOfLineDifference">
            <summary>
            Ignores the end of line difference in the last line of the file if the
            differences is that one of the files has an end of line (return)
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DiffOutputType">
            <summary>
            The various difference output types that are possible. The VSS output
            type has a number of subtypes.
             
            NOTE: This was copied pretty much verbatim from the old engine, since
            we already shipped this enum.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.VssOutputType">
            <summary>
            Supported diff output types from Visual Source Safe.
             
            NOTE: This was copied this pretty much verbatim from the old engine, since
            we already shipped this enum.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.DownloadUrl.#ctor(System.String)">
            <summary>
            Creates a new DownloadUrl instance from a string representation
            of the download URL.
            </summary>
            <param name="url">Download URL to be stored in this instance</param>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DownloadUrl.IsContentDestroyed">
            <summary>
            Returns true if the content represented by this download url has been destroyed.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.DownloadUrl.Url">
            <summary>
            Returns a string representation of the download URL which is equal to the one
            provided at construction.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec">
            <summary>
            A utility class for manipulating Hatteras Label specifications. It contains routines
            for parsing, formatting, validating, etc.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec.Parse(System.String,System.String,System.Boolean,System.String@,System.String@)">
            <summary>
            Parse a Label spec of the form name@scope and return the two parts. If the
            scope is not specified in the Label specification, use the defaultScope
            argument.
             
            </summary>
            <param name="spec">the Label spec to parse</param>
            <param name="defaultScope">Default value for labelScope (may be null)</param>
            <param name="labelName">returned Label name</param>
            <param name="labelScope">returned Label scope</param>
            <param name="permitWildcardNames">Indicates whether wildcards in label names are permitted</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec.Combine(System.String,System.String)">
            <summary>
            Builds the qualified Label name from the label name and scope parts
            </summary>
            <param name="Label">Label name</param>
            <param name="owner">Label owner</param>
            <returns>the qualified Label name</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec.IsLegalSpec(System.String,System.Boolean)">
            <summary>
             Returns true if labelSpec is a legal label specification.
            </summary>
            <param name="labelSpec">Label specification to validate</param>
            <param name="permitWildcardNames">Indicates whether wildcard characters in label names are permitted</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec.IsLegalSpec(System.String)">
            <summary>
             Returns true if labelSpec is a legal label specification.
            </summary>
            <param name="labelSpec"></param>
            <returns></returns>
        </member>
        <!-- Badly formed XML comment ignored for member "M:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec.IsLegalName(System.String,System.Boolean)" -->
        <!-- Badly formed XML comment ignored for member "M:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec.IsLegalName(System.String)" -->
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.LabelSpec.IsLegalScope(System.String)">
            <summary>
             Returns true if labelScope is a legal label scope. Verifies it is a server item with
             no wildcards.
            </summary>
            <param name="labelSpec"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.MergeChangeType">
            <summary>
            An enumeration of the possible change types for a merge operation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeChangeType.Modified">
            <summary>
            Content from the original sequence has changed in the modified
            sequence.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeChangeType.Latest">
            <summary>
            Content from the original sequence has changed in the latest
            sequence.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeChangeType.Both">
            <summary>
            Content from the original sequence has changed in both the modified
            and the latest sequences. The changed content in the modified and
            latest sequences is identical and non-conflicting.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeChangeType.Conflict">
            <summary>
            Content from the original sequence has changed in both the modified
            and the latest sequences. The changed content in the modified and
            latest sequences is conflicting.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.IMergeChange">
            <summary>
            Represents information about a specific change in a merge operation.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.IMergeChange.ChangeType">
            <summary>
            The type of difference.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.IMergeChange.ModifiedChanges">
            <summary>
            The Modified changes against the Original.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.IMergeChange.LatestChanges">
            <summary>
            The Latest changes against the Original.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.IMergeChange.ModifiedChange">
            <summary>
            The Modified change object representing all modified changes
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.IMergeChange.LatestChange">
            <summary>
            The Latest change object representing all latest changes
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.MergeOptions">
            <summary>
            The options that are available when performing a merge.
             
            NOTE: I have copied this class with some modification from the old
            merge engine. This used to contain all sorts of options for
            the merge engine, which either weren't being used, or we don't need.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.MergeOptions.#ctor">
            <summary>
            Constructs a new MergeOptions instance
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeOptions.LatestLabel">
            <summary>
            The string to use when labeling a conflict section for the latest file.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeOptions.AdjacentChangesConflict">
            <summary>
            If true, adjacent changes in the modified and latest version will
            be treated as a conflicting change.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeOptions.WriteOriginalForConflictingRange">
            <summary>
            Disables writting the conflicting ranges to the output result file
            Note: Used by our internal vs merge tool.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.MergeSummary">
            <summary>
            The merge summary information provides the total number of changes
            in the different change classifications.
             
            NOTE: This was copied pretty much verbatim from the old engine, since
            we already shipped this class.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeSummary.TotalCommon">
            <summary>
            Total number of changes common to all files.
            </summary>
            <remarks>
            We decided to obsolete this property because it was unclear what
            TotalCommon actually referred to -- chunks or lines. Also, the calculation
            of this value changed from one to the other in Dev10 so its results are
            unreliable across versions. Finally, this information isn't used anywhere.
            </remarks>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeSummary.TotalModified">
            <summary>
            Total number of changes only in the modified file.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeSummary.TotalLatest">
            <summary>
            Total number of changes only in the latest file.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeSummary.TotalBoth">
            <summary>
            Total number of changes only in the modified file and latest file
            (not in the original).
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeSummary.TotalConflicting">
            <summary>
            Total number of changes that conflict.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.MergeChange">
            <summary>
            Represents information about a specific change in a merge operation.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.#ctor(Microsoft.TeamFoundation.VersionControl.Common.MergeChangeType)">
            <summary>
            Constructs a new MergeChange with the given parameters
            </summary>
            <param name="changeType">The type of merge change</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.#ctor(Microsoft.TeamFoundation.VersionControl.Common.MergeChangeType,Microsoft.TeamFoundation.Diff.IDiffChange,Microsoft.TeamFoundation.Diff.IDiffChange)">
            <summary>
            Constructs a new MergeChange with the given parameters
            </summary>
            <param name="changeType">The type of merge change</param>
            <param name="modifiedChange">The modified change</param>
            <param name="latestChange">The latest change</param>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.ChangeType">
            <summary>
            The type of difference.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.ModifiedChanges">
            <summary>
            The Modified change against the Original.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.LatestChanges">
            <summary>
            The Latest change against the Original.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.ModifiedChange">
            <summary>
            The Modified change object representing all modified changes
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.LatestChange">
            <summary>
            The Latest change object representing all latest changes
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.AddModifiedChange(Microsoft.TeamFoundation.Diff.IDiffChange)">
            <summary>
            Add a modified change to the list of modified changes
            </summary>
            <param name="modifiedChange">The modified change</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.AddLatestChange(Microsoft.TeamFoundation.Diff.IDiffChange)">
            <summary>
            Add a latest change to the list of latest changes
            </summary>
            <param name="latestChange">The latest change</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.MergeChange.BuildConsolidatedChange(System.Collections.Generic.List{Microsoft.TeamFoundation.Diff.IDiffChange})">
            <summary>
            Builds a consolidated IDiffChange from a list of diff changes
            </summary>
            <param name="diffChanges"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeFinder">
            <summary>
            Computes the merge changes between two sequences and a common sequence.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeFinder.Merge(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IEqualityComparer{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions)">
            <summary>
            Computes the list of merged changes from the given sequences.
             
            This is a two-way merge operation.
            </summary>
            <param name="original">The modified sequence</param>
            <param name="modified">The latest sequence</param>
            <param name="comparer">The diff element comparer to use</param>
            <param name="mergeOptions">The merge options</param>
            <returns>The list of merged changes</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeFinder.Merge(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer,Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions)">
            <summary>
            Computes the list of merged changes from the given sequences.
             
            This is a three-way merge operation.
            </summary>
            <param name="original">The original (common/base) sequence</param>
            <param name="modified">The modified sequence</param>
            <param name="latest">The latest sequence</param>
            <param name="comparer">The diff element comparer to use</param>
            <param name="mergeOptions">The merge options</param>
            <returns>The list of merged changes</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeFinder.JoinDiffs(Microsoft.TeamFoundation.Diff.IDiffChange[],Microsoft.TeamFoundation.Diff.IDiffChange[],System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer,Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions)">
            <summary>
            Take the 2 sets of DiffChanges and blend them into a single MergeChange set.
            This is the original joiner from Merge()
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeFinder.MergeEx(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer,Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer,Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions,Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions)">
            <summary>
            Computes the set of MergeChanges using the DiffEx EXTENDED version of diff.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeFinder.ChangesIdentical(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.Diff.IDiffChange,System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.Diff.IDiffChange,Microsoft.TeamFoundation.VersionControl.Common.DiffLineComparer)">
            <summary>
            Checks to see if the given changes are the same, with respect to the
            given sequences. If leftChange is the same change against leftSequence
            that rightChange is against rightSequence this will return true.
            </summary>
            <param name="leftSequence">The left diff sequence</param>
            <param name="leftChange">The left change</param>
            <param name="rightSequence">The right diff sequence</param>
            <param name="rightChange">The right change</param>
            <returns>True if leftChange is the same change against leftSequence
            that rightChange is against rightSequence</returns>
            <param name="comparer">The diff element comparer</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeFinder.GetSummary(Microsoft.TeamFoundation.VersionControl.Common.IMergeChange[])">
            <summary>
            Gets the merge summary for the given list of merged changes.
            </summary>
            <param name="mergedChanges">The list of merged changes.</param>
            <returns>The merge summary</returns>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions">
            <summary>
            The options that are available when performing a merge.
             
            NOTE: I have copied this class with some modification from the old
            merge engine. This used to contain all sorts of options for
            the merge engine, which either weren't being used, or we don't need.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions.#ctor">
            <summary>
            Constructs a new MergeOptions instance
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions.LatestLabel">
            <summary>
            The string to use when labeling a conflict section for the latest file.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions.AdjacentChangesConflict">
            <summary>
            If true, adjacent changes in the modified and latest version will
            be treated as a conflicting change.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions.WriteOriginalForConflictingRange">
            <summary>
            Disables writting the conflicting ranges to the output result file
            Note: Used by our internal vs merge tool.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput">
            <summary>
            Class for outputting the results of a merge operation to
            a stream.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput.#ctor(Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOptions,System.IO.Stream,System.Text.Encoding,System.Boolean)">
            <summary>
            Constructs a new MergeOutput instance with the given MergeOptions.
            </summary>
            <param name="mergeOptions">The merge options</param>
            <param name="stream">The output stream</param>
            <param name="encoding">The output encoding</param>
            <param name="outputPreamble">True if the preamble should be included
            in the output.</param>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput.Options">
            <summary>
            Gets the merge options
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput.Write(System.String)">
            <summary>
            Writes the string value to the output stream
            </summary>
            <param name="value">The string value to write</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput.WriteLine(System.String)">
            <summary>
            Writes the line to the output stream
            </summary>
            <param name="line">The line to write</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput.WriteElementRange(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Int32,System.Int32)">
            <summary>
            Helper method to write elements from the given sequence and range
            to the stream.
            </summary>
            <param name="sequence">The sequence which contains the elements
            to write.</param>
            <param name="startIndex">The start index of the elements to write.</param>
            <param name="endIndex">The end index of the elements to write.</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput.Output(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.VersionControl.Common.IMergeChange[])">
            <summary>
            Uses the given merge list and sequences to write the merged
            output
             
            This is for two-way merge output.
            </summary>
            <param name="original">The modified sequence</param>
            <param name="modified">The latest sequence</param>
            <param name="mergeList">The list of merged changes</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.MergeOutput.Output(System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},System.Collections.Generic.IList{Microsoft.TeamFoundation.VersionControl.Common.DiffLine},Microsoft.TeamFoundation.VersionControl.Common.IMergeChange[])">
            <summary>
            Uses the given merge list and sequences to write the merged
            output
             
            This is for three-way merge output.
            </summary>
            <param name="original">The original sequence</param>
            <param name="modified">The modified sequence</param>
            <param name="latest">The latest sequence</param>
            <param name="mergeList">The list of merged changes</param>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.Internal.Set`1">
            <summary>
            generic Set class
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.#cctor">
            Creates the resource manager instance.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.Get(System.String)">
            Returns a localized string given a resource string name.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.GetInt(System.String)">
            Returns a localized integer given a resource string name.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.GetBool(System.String)">
            Returns a localized string given a resource string name.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.Format(System.String,System.Object[])">
            A little helper function to alleviate some typing associated with loading resources and
            formatting the strings. In DEBUG builds, it also asserts that the number of format
            arguments and the length of args match.
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.VssDiffChange">
            <summary>
            {0,3} Change:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.VssDiffChangeTo">
            <summary>
                    To:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.VssDiffInsert">
            <summary>
            {0,3} Insert:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.VssDiffDelete">
            <summary>
            {0,3} Delete:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.UnexpectedEndOfStream">
            <summary>
            TF10010: Source control unexpectedly encountered the end of the stream: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.IncompleteCharacter">
            <summary>
            The character was incomplete at stream offset {0:d}. The file labeled &apos;{1}&apos; might be in a different encoding than {2}, or it might have been corrupted. Verify the encoding settings, and check the file for errors.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.IncompleteSurrogatePair">
            <summary>
            The surrogate pair was incomplete at stream offset {0:d}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.ReversedSurrogatePair">
            <summary>
            A low surrogate was detected before the high surrogate.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.InvalidCodePage">
            <summary>
            TF10009: The code page you specified is either not recognized or not installed: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.InternalCodeError">
            <summary>
            TF10008: Source control encountered an unexpected error. Contact Microsoft Product Support Services.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.ArgOutOfRange">
            <summary>
            The argument was out of range.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.ArgumentError_TokenizerTypesMustMatch">
            <summary>
            The types of the tokenizer objects must be identical.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.TokenizersMustBeInitialized">
            <summary>
            The tokenizers for this diff object must be set before trying to diff them.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.ArgumentError_TokenizerCodePagesMustMatch">
            <summary>
            The code pages for the passed in token parsing streams must be identical.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.ArgumentError_TokenStreamsMustSeek">
            <summary>
            The token stream &apos;{0}&apos; must return true from .CanSeek.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.InvalidDiffOperation">
            <summary>
            Invalid diff operation encountered: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.WriteOnceProperty">
            <summary>
            TF10011: The {0} property cannot be changed after it is set.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.DiffResources.CouldNotRereadEntireToken">
            <summary>
            The code could not reread a token from the stream that it had previously read successfully.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.#cctor">
            Creates the resource manager instance.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Get(System.String)">
            Returns a localized string given a resource string name.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetInt(System.String)">
            Returns a localized integer given a resource string name.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetBool(System.String)">
            Returns a localized string given a resource string name.
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Format(System.String,System.Object[])">
            A little helper function to alleviate some typing associated with loading resources and
            formatting the strings. In DEBUG builds, it also asserts that the number of format
            arguments and the length of args match.
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AColon">
            <summary>
            {0}:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AColonB">
            <summary>
            {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AColonBEqualsC">
            <summary>
            {0}: {1} = {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AddedItemMissingLocally">
            <summary>
            The item {0} has a pending add but does not exist locally.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AllFilesUpToDate">
            <summary>
            All files are up to date.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Allow">
            <summary>
            Allow
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AllowInherited">
            <summary>
            Allow (Inherited)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AmbiguousVersion">
            <summary>
            TF10097: The information about the version of the file is ambiguous. Specify a different file version and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ArgumentsMustContain">
            <summary>
            {0} arguments must contain {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ArgumentsMustNotContain">
            <summary>
            TF10098: {0} arguments cannot contain {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ArtifactNotFound">
            <summary>
            TF10099: {0} was not found on the Team Foundation Server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BadOptionWorkspaceEdit">
            <summary>
            Option {0} cannot be used when editing a workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BranchedFromVersion">
            <summary>
            Branched from version {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BranchesNoForwardProgress">
            <summary>
            Not making any forward progress on branches history query response.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BranchesRequiresAtLeastOneItem">
            <summary>
            TF10102: The branches command requires at least one item. Type or select either a local or server path to the item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BranchSource">
            <summary>
            [branch source]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BranchUnreadable">
            <summary>
            [no permission to read this branch item]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotAddProjectToSourceControl">
            <summary>
            TF10104: Source control cannot add the project: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotAddSolutionToSourceControl">
            <summary>
            TF10105: Source control cannot add the solution: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotChangeWorkspaceOwnerAndPermissionsSimultaneously">
            <summary>
            The owner of a workspace and the permissions of a workspace cannot be changed in a single action.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotDiffBinaryFiles">
            <summary>
            TF10107: Source control cannot compare binary files.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotDiffFileWithFolder">
            <summary>
            TF10108: Source control cannot compare a file with a folder. Select two files and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionControlNotRegistered">
            <summary>
            TF10109: Source control cannot locate the source control service on Team Foundation Server {0}. Check that you have a network connection and that your Team Foundation Server is available. If the problem persists, contact your Team Foundation Server administrator.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotFindRegistrationInformation">
            <summary>
            TF10110: The Team Foundation source control server information is not registered or not available.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotSpecifyInheritWithPerms">
            <summary>
            Please specify only the inherit setting or the user or group permissions.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotUseDetailedWithCachedWorkspaces">
            <summary>
            The detailed format is not valid when listing all workspaces on this computer. To use the detailed format, please specify the /collection option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CantDeleteNonEmptyDir">
            <summary>
            The directory cannot be deleted because it is not empty.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CantDeleteNonEmptyDirPath">
            <summary>
            {0} cannot be deleted because it is not empty.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Change">
            <summary>
            Change
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Changeset">
            <summary>
            Changeset
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetEmpty">
            <summary>
            Please specify a changeset.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetFormat">
            <summary>
            Changeset {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetInvalid">
            <summary>
            {0} is not a valid changeset number. Please specify a number between 1 and 2147483647.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetLinkLocalizedName">
            <summary>
            Changeset
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetModified">
            <summary>
            Changeset {0} has been modified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetNotFound">
            <summary>
            Changeset {0} does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetSpecifyAtMostOne">
            <summary>
            Please specify only one changeset number.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetSpecifyOne">
            <summary>
            Please specify exactly one changeset number when using /noprompt.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesetOptionUnavailableWhenBrowsing">
            <summary>
            You must provide a changeset number to use the /comment or /notes options.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesUndoneByCheckin">
            <summary>
            The following changes were not checked in because the items were not modified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeAdd">
            <summary>
            add
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeBranch">
            <summary>
            branch
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeDelete">
            <summary>
            delete
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeEdit">
            <summary>
            edit
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeFileType">
            <summary>
            encoding
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeLock">
            <summary>
            lock
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeMerge">
            <summary>
            merge
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeNone">
            <summary>
            none
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeRename">
            <summary>
            rename
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeRollback">
            <summary>
            rollback
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeUndelete">
            <summary>
            undelete
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeSourceRename">
            <summary>
            source rename
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckedIn">
            <summary>
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckingInPendingChange">
            <summary>
            Checking in {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteFieldNotValidForChangeset">
            <summary>
            TF10112: The check-in note field &apos;{0}&apos; is not supported for changeset {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteFieldNameEmpty">
            <summary>
            TF10111: You must provide a name for the check-in note.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteFieldUnknown">
            <summary>
            The field &apos;{0}&apos; does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteFieldValueEmpty">
            <summary>
            TF10113: You must provide a value for check-in note field &apos;{0}&apos;.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteNameEmpty">
            <summary>
            TF10114: You must provide a name for the check-in note.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteNameInvalid">
            <summary>
            &apos;{0}&apos; contains invalid characters for a check-in note name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteNameTooLong">
            <summary>
            TF10115: &apos;{0}&apos; is too long for a check-in note name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteRequiredFormattedFailedMessage">
            <summary>
            {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteRequiredForMultipleNotes">
            <summary>
            TF10116: The following check-in notes do not pass check-in requirement:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteRequiredForOneNote">
            <summary>
            TF10117: The following check-in note does not pass check-in requirement:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNoteRequiredValue">
            <summary>
            A value must be specified for the check-in note.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNotes">
            <summary>
            Check-in Notes
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinNotesNotInRoot">
            <summary>
            TF10118: Version control settings cannot be configured for $/. You must specify a valid Team Project.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckInParametersCannotHaveBothPendingChangesAndItemSpecs">
            <summary>
            Values for PendingChanges and ItemSpecs cannot both be provided on a WorkspaceCheckInParameters object.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ClickToAddWorkingFolder">
            <summary>
            Click here to enter a new working folder
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Cloaked">
            <summary>
            Cloaked
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CloakedIndicator">
            <summary>
            (cloaked)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotCloakPathWithNoMappedParent">
            <summary>
            &apos;{0}&apos; cannot be cloaked because it does not have a mapped parent.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CommandCanceled">
            <summary>
            Command canceled.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CommandContinuationError">
            <summary>
            The previous command should have been continued but was not.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Comment">
            <summary>
            Comment
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CommittedBy">
            <summary>
            Checked in by
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Compare">
            <summary>
            Compare
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Computer">
            <summary>
            Computer
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ComputerNameEmpty">
            <summary>
            Please specify a computer name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConfigureNoPromptBad">
            <summary>
            The configure command does not support /noprompt.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Conflict">
            <summary>
            Conflict: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictingWorkingFolders">
            <summary>
            The path {0} is already mapped in workspace {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeCollision">
            <summary>
            The name conflicts with another item in the target branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeCollisionPath">
            <summary>
            {0} could not be merged because the name conflicts with another item in the target branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceAndTargetChanged">
            <summary>
            The source and target both have changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceAndTargetChangedPath">
            <summary>
            {0} could not be merged because the source and target both have changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeTargetIsDeleted">
            <summary>
            The item has been deleted in the target branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeTargetIsDeletedPath">
            <summary>
            {0} could not be merged because it has been deleted in the target branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceIsDeleted">
            <summary>
            The item has been deleted in the source branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceIsDeletedPath">
            <summary>
            {0} could not be merged because it has been deleted in the source branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceIsUndeleted">
            <summary>
            The item has been undeleted in the source branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceIsUndeletedPath">
            <summary>
            {0} could not be merged because it has been undeleted in the source branch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictCheckinNewerVersion">
            <summary>
            A newer version exists on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictCheckinNewerVersionPath">
            <summary>
            {0} could not be checked in because a newer version exists on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictCheckinDeleted">
            <summary>
            The item has been deleted from the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictCheckinDeletedPath">
            <summary>
            {0} could not be checked in because it has been deleted from the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictCheckinCollision">
            <summary>
            Another item with the same name exists on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictCheckinCollisionPath">
            <summary>
            {0} could not be checked in because another item with the same name exists on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetPendingChange">
            <summary>
            You have a conflicting pending change.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetPendingChangePath">
            <summary>
            {0} could not be retrieved because you have a conflicting pending change.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetPendingDelete">
            <summary>
            You have a conflicting pending delete.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetPendingDeletePath">
            <summary>
            {0} could not be retrieved because you have a conflicting pending delete.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetDeleted">
            <summary>
            The item has already been deleted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetDeletedPath">
            <summary>
            {0} could not be retrieved because it has already been deleted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetCollision">
            <summary>
            The name conflicts with another item in your workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictGetCollisionPath">
            <summary>
            {0} could not be retrieved because the name conflicts with another item in your workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictNotResolved">
            <summary>
            Conflict for {0} was not resolved
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictNotResolvedNeedAutoMergeForced">
            <summary>
            Conflict for {0} was not resolved. Specify the /auto:AutoMergeForced option to resolve this conflict as AutoMerge.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagBase">
            <summary>
            Base
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagOriginal">
            <summary>
            Original
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagSource">
            <summary>
            Source
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagTarget">
            <summary>
            Target
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagServer">
            <summary>
            Server
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagLocal">
            <summary>
            Local
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagShelveset">
            <summary>
            Shelveset
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagUnShelved">
            <summary>
            Unshelved
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagOriginalWorkspace">
            <summary>
            Original Workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictLabel">
            <summary>
            {0} - {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictTagGeneratedBase">
            <summary>
            Generated base file
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ContextDiffSourceLabel">
             <summary>
             This date format needs to stay fixed for tool support
             
             original {0:ddd MMM d HH:mm:ss yyyy}
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ContextDiffTargetLabel">
             <summary>
             This date format needs to stay fixed for tool support
             
             modified {0:ddd MMM d HH:mm:ss yyyy}
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Copyright">
            <summary>
            Copyright (c) Microsoft Corporation. All rights reserved.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CouldNotParseParameter">
            <summary>
            Could not parse {0} parameter {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CouldNotRetrieveACL">
            <summary>
            The access control list for the item {0} could not be retrieved. The item may not exist on the server, or you do not have permission to access it.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CreatedTeamProjectFolder">
            <summary>
            Created team project folder {0} via the Team Project Creation Wizard
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CreatingFolderOperation">
            <summary>
            Creating folder: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CreateWorkspace">
            <summary>
            Add Workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Date">
            <summary>
            Date
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DateFormatShort">
             <summary>
             This should not be localized
             
             {0:d}
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DateFormatLong">
             <summary>
             This should not be localized
             
             {0:F}
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DeletedShelveset">
            <summary>
            Deleted shelveset {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DeleteShelvesetQuestion_YN">
            <summary>
            Are you sure you want to delete the shelveset {0}?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DeleteWorkspaceQuestion_YN">
            <summary>
            A deleted workspace cannot be recovered.Workspace &apos;{1}&apos; on server &apos;{2}&apos; has {0} pending change(s).Are you sure you want to delete the workspace?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DeletionId">
            <summary>
            Deletion ID
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Deny">
            <summary>
            Deny
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DenyInherited">
            <summary>
            Deny (Inherited)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffAgainstFolder">
            <summary>
            against folder: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffFolder">
            <summary>
            Diff folder : {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffFolderAndFile">
            <summary>
            Cannot diff a folder against a file.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffIndex">
            <summary>
            File: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffNonCommonFile">
            <summary>
            {0} : [file found only in: {1}]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffNonCommonFolder">
            <summary>
            {0} : [folder found only under: {1}]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffLocalLabel">
            <summary>
            Local
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffRepositoryLabel">
            <summary>
            Server
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffRepositoryShelveset">
            <summary>
            Shelved Change
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffLocalLabelFull">
            <summary>
            Local: {0};{1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffRepositoryLabelFull">
            <summary>
            Server: {0};{1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffLabel">
            <summary>
            {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DiffSeparator">
            <summary>
            ===================================================================
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DirItems">
            <summary>
            {0} item(s)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DownloadCorrupted">
            <summary>
            The downloaded file is corrupt. Please get the file again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DownloadConnectionFailed">
            <summary>
            The connection to download the file could not be established.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.EditWorkspace">
            <summary>
            Edit Workspace {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.EmbeddedWildcardsNotAllowed">
            <summary>
            Embedded wildcards (* and ?) are not allowed in the {0} option. The wildcard * may be used by itself.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ErrorReadingConfig">
            <summary>
            Error reading config file: {0} ({1}).
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ErrorTitle">
            <summary>
            Error
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ExceptionTypeAndMessage">
            <summary>
            {0} {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ExitCode">
            <summary>
            ExitCode: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FailedToCreateMapping">
            <summary>
            Failed To Create Mapping
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileDiffNotValid">
            <summary>
            The /{0} option cannot be specified with a file diff.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileDoesNotExist">
            <summary>
            The file {0} does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileExists">
            <summary>
            The file {0} already exists.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileIsWritable">
            <summary>
            A non version controlled file or writable file by the same name already exists locally.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileIsWritablePath">
            <summary>
            {0} could not be retrieved because a writable file by the same name exists locally.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileName">
            <summary>
            File name
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileNotAvailable">
            <summary>
            The file {0} is not available.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileOrFolderNotFound">
            <summary>
            File (or folder) {0} does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FilesDiffer">
            <summary>
            {0}: files differ
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileType">
            <summary>
            File type
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileTypeBinary">
            <summary>
            Binary
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FirstArgumentRepositoryFolder">
            <summary>
            The first path argument must be a source control folder.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FolderEditException">
            <summary>
            TF14040: The folder {0} may not be checked out.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FolderNameEmpty">
            <summary>
            The folder name cannot be empty.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FoundDirectoryExpectedFile">
            <summary>
            A directory by the same name exists locally.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FullyQualifiedUserNameRequired">
            <summary>
            The user name {0} is not a fully-qualified user name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetConflict">
            <summary>
            Conflict {0} - Unable to perform the {1} operation because you have a conflicting {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetConflictMove">
            <summary>
            Conflict {0} - Unable to perform the {1} operation because you have a conflicting {2} (to be moved from {3})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetDelete">
            <summary>
            delete
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetDeleting">
            <summary>
            Deleting {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetGet">
            <summary>
            get
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetGetting">
            <summary>
            Getting {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetGettingMove">
            <summary>
            Getting {0} (moved from {1})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetLocalPending">
            <summary>
            Warning {0} - Unable to perform the {1} operation because you have a pending {2} on a different item at the destination
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetLocalPendingMove">
            <summary>
            Warning {0} - Unable to perform the {1} operation because you have a pending {2} on a different item at the destination (to be moved from {3})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetReplacing">
            <summary>
            Replacing {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetReplacingMove">
            <summary>
            Replacing {0} (moved from {1})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetStatusSummary">
            <summary>
            ---- Summary: {0} conflicts, {1} warnings, {2} errors ----
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetTargetIsDir">
            <summary>
            Warning {0} - Unable to get because a directory already exists.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetUnableToRefresh">
            <summary>
            Warning - Unable to refresh {0} because you have a pending edit.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetWritable">
            <summary>
            Warning {0} - Unable to perform the {1} operation because the file already exists locally
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetSourceWritableNewTarget">
            <summary>
            Warning {0} - Unable to perform the {1} operation because the source file {2} is writable
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Global">
            <summary>
            Global
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GlobalPermissionOptionNotAllowed">
            <summary>
            The {0} option cannot be used when viewing or setting global permissions.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GlobalPermissionAdminConfiguration">
            <summary>
            Administer source control configurations
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GlobalPermissionAdminConnections">
            <summary>
            Administer source control connections
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GlobalPermissionAdminShelvesets">
            <summary>
            Administer shelved changes
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GlobalPermissionAdminWorkspaces">
            <summary>
            Administer workspaces
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GlobalPermissionCreateWorkspace">
            <summary>
            Create a workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HelpNotAvailable">
            <summary>
            Help is not available
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HelpTopicNotAvailable">
            <summary>
            Help for topic {0} is not available
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HistoryBriefChangeWidth">
            <summary>
            26
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HistoryBriefUserWidth">
            <summary>
            17
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HistoryBriefChangesetWidth">
            <summary>
            9
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HistoryNothingAvailable">
            <summary>
            No history entries were found for the item and version combination specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HistoryTakesOneItem">
            <summary>
            The history command takes exactly one item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.HttpStatusInfo">
            <summary>
            HTTP code {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Identity">
            <summary>
            Identity
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IgnoringDeletionId">
            <summary>
            TF10119: Warning {0} - Ignoring deletion ID {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IgnoringOption">
            <summary>
            Ignoring the /{0} option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IgnoreOptionsNotPassed">
            <summary>
            Warning: invoking an external tool for diff: options /ignoreeol, /ignorespace, and /ignorecase are not passed to external tools.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IgnoringVersionRangeStart">
            <summary>
            Warning {0} - Ignoring version range start of {1}, only using version {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IgnoringVersions">
            <summary>
            Ignoring the version specification for {0}. The version specification is not needed for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IgnoringItem">
            <summary>
            Ignoring {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IncompatibleChangeException">
            <summary>
            TF14050: Cannot change item {0} because it already has a pending change that is not compatible.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Indeterminate">
            <summary>
            Indeterminate
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Inherit">
            <summary>
            Inherit
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InternalPolicyError">
            <summary>
            Internal error in {0}. {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidArgumentsDigitNonWS">
            <summary>
            Arguments may not contain %n (n = 1 .. 9) followed by non-whitespace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidArgumentsPctOutOfRange">
            <summary>
            Arguments may not contain % followed by character not in the range 1 .. 9
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidArgumentsPctPct">
            <summary>
            Arguments may not contain %%
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidArgumentsStandAlonePct">
            <summary>
            Arguments may not contain stand-alone %
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidCacheFile">
            <summary>
            The cache file {0} is not valid and cannot be loaded.Please correct or delete the file.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidCacheDir">
            <summary>
            The cache directory {0} is not a valid path: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidCommandEmpty">
            <summary>
            Command must not be empty
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidCommandInvalidPath">
            <summary>
            Command &quot;{0}&quot; is not a valid path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidExtensionEmpty">
            <summary>
            Extension must not be empty
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidExtensionIllegalCharacters">
            <summary>
            Extension &quot;{0}&quot; contains illegal characters
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidExtensionMustStartWithPeriod">
            <summary>
            Extension &quot;{0}&quot; must start with a period
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidExtensionOnlyOnePeriod">
            <summary>
            Extension &quot;{0}&quot; must contain only one period
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidExtensionTooLong">
            <summary>
            Extension &quot;{0}&quot; is too long
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidExtensionTooShort">
            <summary>
            Extension &quot;{0}&quot; is too short
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidFileTypeException">
            <summary>
            The file encoding {0} is not a valid encoding.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidOperation">
            <summary>
            Operation must be either {0} or {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidOperationStatus">
            <summary>
            Invalid OperationStatus: Desired: {0} Current: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidPathInvalidFolderStartChar">
            <summary>
            TF10124: The path &apos;{0}&apos; cannot start with {1}. Remove the {1} and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidPathMissingRoot">
            <summary>
            TF10125: The path &apos;{0}&apos; must start with $/
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidPathNoCommonParent">
            <summary>
            TF10126: The path &apos;{0}&apos; has no parent in common with &apos;{1}&apos;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidPathNoHatterasItem">
            <summary>
            TF10127: The path does not include a source control item. Type or select a different path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidPathTooManyDotDots">
            <summary>
            TF10129: The path {0} contains too many instances of &apos;..&apos; (it goes above the root). Type or select a different path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ReservedPathName">
            <summary>
            TF10130: &apos;{0}&apos; is a reserved name and may not be included in a path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidPolicy">
            <summary>
            [Invalid Policy]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidResourceDefinition">
            <summary>
            Resource {0} is improperly defined.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidServerResponse">
            <summary>
            Please contact your administrator. There was an error contacting the server.Technical information (for administrator): {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidShelveset">
            <summary>
            Invalid shelveset specification: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidShelvesetName">
            <summary>
            TF10131: The shelveset name {0} contains more than 64 characters, contains one of the following characters: &quot;/:&lt;&gt;\|*?; or ends with a space. Type a valid name and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidUserName">
            <summary>
            TF10132: {0} is not a supported user name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidWorkspaceName">
            <summary>
            TF10131: The workspace name {0} contains more than 64 characters, contains one of the following characters: &quot;/:&lt;&gt;\|*?; or ends with a space. Type a valid name and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Item">
            <summary>
            Item
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemIsADirectory">
            <summary>
            {0} is a directory.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemNotFoundInRepository">
            <summary>
            Item {0} was not found in source control.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileNotFoundInRepository">
            <summary>
            File {0} was not found in source control.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemNotFoundInRepositoryAtVersion">
            <summary>
            Item {0} was not found in source control at version {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemNotDoesNotExistAtChangeset">
            <summary>
            The item {0} does not exist at changeset version {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemAtVersionNotFoundInRepository">
            <summary>
            The specified version of item {0} was not found in source control.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemChangesetIndeterminate">
            <summary>
            The item {0} is in an indeterminate state. Perform a get operation to correct this.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemNotFoundInWorkspace">
            <summary>
            Item {0} was not found in the current workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionAdminProjectRights">
            <summary>
            Manage permissions
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionCheckin">
            <summary>
            Check in
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionCheckinOther">
            <summary>
            Check in other users&apos; changes
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionLabel">
            <summary>
            Label
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionLabelOther">
            <summary>
            Administer labels
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionLock">
            <summary>
            Lock
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionPendChange">
            <summary>
            Pend a change in a server workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionRead">
            <summary>
            Read
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionReviseOther">
            <summary>
            Revise other users&apos; changes
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionUndoOther">
            <summary>
            Undo other users&apos; changes
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionUnlockOther">
            <summary>
            Unlock other users&apos; changes
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionMerge">
            <summary>
            Merge
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemPermissionManageBranch">
            <summary>
            Manage branch
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Items">
            <summary>
            Items
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemsFromOneWorkspace">
            <summary>
            All items specified must be from the same workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemSpecNotAllowedForCheckInShelveset">
            <summary>
            Items cannot be specified with the /shelveset option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemTypeFile">
            <summary>
            file
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemTypeFolder">
            <summary>
            folder
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Label">
            <summary>
            Label
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelNameEmpty">
            <summary>
            Please specify a label name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelCreated">
            <summary>
            Created label {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelDeleteArguments">
            <summary>
            You may only specify one argument for /delete.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelDeleted">
            <summary>
            Deleted label {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelNameIllegal">
            <summary>
            The label name &apos;{0}&apos; is not legal.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelNotEnoughArguments">
            <summary>
            You must specify an item, /comment, or /owner.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelScopeIllegal">
            <summary>
            The label scope &apos;{0}&apos; is not legal.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelScopeWildcard">
            <summary>
            The label scope may not contain wildcards.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelsNotFound">
            <summary>
            No labels found.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelsTooManyArguments">
            <summary>
            Too many arguments for the &quot;labels&quot; command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LabelUpdated">
            <summary>
            Updated label {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CompareLabelsTooManyArguments">
            <summary>
            Too many arguments for the &quot;compareLabels&quot; command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CompareLabelsTooFewArguments">
            <summary>
            Too few arguments for the &quot;compareLabels&quot; command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MaxPathLengthTooManyArguments">
            <summary>
            Too many arguments for the &quot;maxpathlength&quot; command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LastModified">
            <summary>
            Last modified
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LaunchingHelp">
            <summary>
            Please wait ... launching help viewer for topic {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalInformation">
            <summary>
            Local information:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalItem">
            <summary>
            Local item
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalPath">
            <summary>
            Local path
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalPathTooLong">
            <summary>
            Local path {0} is too long. The item will not be retrieved
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalWorkspaceRequired">
            <summary>
            Workspace {0} does not reside on this computer. If this computer was recently renamed, the workspace may be updated by running &apos;tf workspaces /updateComputerName:oldComputerName&apos;.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalWorkspaceMustBeLocal">
            <summary>
            TF400285: This operation cannot be performed on a local workspace that does not reside on this computer.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Lock">
            <summary>
            Lock
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockCheckin">
            <summary>
            check-in
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockCheckinShort">
            <summary>
            *
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockCheckOut">
            <summary>
            check-out
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockCheckOutShort">
            <summary>
            !
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockNone">
            <summary>
            none
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockOwner">
            <summary>
            Lock owner
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockUnchanged">
            <summary>
            unchanged
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MappingConflictNoTeamProject">
            <summary>
            Cannot map server path, {0}, because it is not rooted beneath a team project.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MappingConflictServerPath">
            <summary>
            Cannot simultaneously map server path, {0},to local path, {1},and to local path, {2}.Please correct one or both of these mappings.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MappingCreationCancelled">
            <summary>
            TF10133: An attempt to create a working folder mapping was canceled. The current source control operation was canceled.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Merge">
            <summary>
            Merge
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergeAssociatedPendingChange">
            <summary>
            {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergeConflict">
            <summary>
            Conflict ({0}): {1} -&gt; {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergeConflictsSuppressed">
            <summary>
            {0} conflicts occurred. To list each conflict in the summary, specify /format:detailed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergeContentSummary">
            <summary>
            {0}: {1} local, {2} server, {3} both, and {4} conflicting
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergePended">
            <summary>
            {0}: {1} -&gt; {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesAuthorHeader">
            <summary>
            Author
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesAuthorWidth">
            <summary>
            32
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergeSaved">
            <summary>
            Merged file saved in {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesChangesetHeader">
            <summary>
            Changeset
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesChangesetWidth">
            <summary>
            9
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesDateHeader">
            <summary>
            Date
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergeForceRequiresVersion">
            <summary>
            A version or version range must be specified when using the /force option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesMergedInHeader">
            <summary>
            Merged in Changeset
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesMergedInWidth">
            <summary>
            7
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesNothingAvailable">
            <summary>
            No merge history entries were found for the target item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergesTakesTargetOptionalSource">
            <summary>
            The merges command must be run with either one or two items.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergeTarget">
            <summary>
            Result
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MissingPendingChangeForUncommittedItem">
            <summary>
            Could not write local version data for the uncommitted item {0} because no pending add or branch exists on that item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MoreThanOneRepositorySpecified">
            <summary>
            The server option specifies a different Team Foundation Server than the path arguments ({0}).
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MultipleFilesMatchQuestion_YN">
            <summary>
            For {0} there are {1} files to be displayed. Do you want to continue?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MultipleWorkingFoldersForPath">
            <summary>
            The working folders for workspace {0} already contain a setting for {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MultipleWorkspacesSameName">
            <summary>
            Multiple workspaces exist with the name {0}.Please specify the Team Foundation Server or qualify the name with the owner.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustBeLocalWorkstation">
            <summary>
            Only available for the local workstation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictingWorkspaceInTheCache">
            <summary>
            Local path {0} is mapped both in workspace {1} on server {2} and workspace {3} on server {4}. Removing workspace {3} on server {4} from the cache. Please remove conflicting mappings.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustSpecifyAServerPath">
            <summary>
            Specify a server path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustSpecifyAtLeastOnePath">
            <summary>
            Specify at least one local or server path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustSpecifyAtLeastOneLocalPath">
            <summary>
            Specify at least one local path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustSpecifyIdentityWithPerms">
            <summary>
            Specify a user or group with the permission settings.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustSpecifyRepositoryFolderLocalFolder">
            <summary>
            Specify the source control folder and then local folder (exactly two arguments).
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NewMappingMatchesMultipleExistingMappings">
            <summary>
            The requested mapping matches an existing mapping on server path ({0} to {1}) as well as a different mapping on local path ({2} to {3}) - remove one or both of these mappings before attempting to create this new mapping. This helps to prevent unintentionally destroying multiple existing mappings with a single command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NewNameOptionNotValid">
            <summary>
            The /{0} option is only valid when the {1} or {2} resolution is specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NewNameOptionRequired">
            <summary>
            The /{0} option is required when the {1} resolution is specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.No">
            <summary>
            No
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoAvailableOutputStream">
            <summary>
            There is no available output stream.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesetWithLatestOption">
            <summary>
            A changeset number cannot be specified when using the /latest option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesLeftToCheckin">
            <summary>
            There are no remaining changes to check in.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesShelved">
            <summary>
            No changes shelved.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesToMerge">
            <summary>
            There are no changes to merge.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesToUndo">
            <summary>
            No pending changes to undo.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesUnshelved">
            <summary>
            No changes unshelved.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoCloakedFolderMatches">
            <summary>
            {0} does not match any cloak.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoBaseFileForConflict">
             <summary>
             Localizer: this message results only from a programming error.
             
             This conflict has no &quot;Base&quot; file.
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoTheirFileForConflict">
             <summary>
             Localizer: this message results only from a programming error.
             
             This conflict has no &quot;Their&quot; file.
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoBaseFileForPendingChange">
            <summary>
            The pending change for {0} has no base file.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoFile">
            <summary>
            [no file]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoFileMatches">
            <summary>
            {0}: No file matches.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoFilesCheckedIn">
            <summary>
            No files checked in.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoFilesSpecified">
            <summary>
            No files specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoGlobalPermissions">
            <summary>
            There are no global permissions explicitly set for the specified user(s).
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoItemsFound">
            <summary>
            No items match {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoItemsFoundUnder">
            <summary>
            No items found under {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesFoundToPend">
            <summary>
            No matching changes found to pend.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoConfiguredCompareToolFor">
            <summary>
            No configured compare tool found for file {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoConflictsToResolve">
            <summary>
            There are no conflicts to resolve.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoInconsistenciesFound">
            <summary>
            No inconsistencies were found to clean up.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoLocalChangesRemoteWorkspace">
            <summary>
            The operation completed successfully. Because the workspace {0} is not on this computer, you must perform a separate get operation in that workspace to update it with the changes that have been made on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoLocalChangesNoWorkspacePermission">
            <summary>
            The operation completed successfully. Because you do not have Use permission on the workspace {0}, you must perform a separate get operation in that workspace to update it with the changes that have been made on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoLocalFileForPendingChange">
            <summary>
            There is no local file associated with a pending change on {0}. This can occur when multiple changes have been applied to the same local file through different workspace mappings. Undo this pending change and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoLocalMatchingWorkspaceFound">
            <summary>
            No workspace matching {0} found on this computer.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoMappedFolderMatches">
            <summary>
            {0} does not match any mapping.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoMatchingChanges">
            <summary>
            There is no pending change for &apos;{0}&apos;.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoMatchingChangesToShelve">
            <summary>
            There are no matching pending changes to shelve.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoMatchingTeamProject">
            <summary>
            There is no team project named &apos;{0}&apos; in source control.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoWorkspaceInCacheMatches">
            <summary>
            No workspace in the cache matches {0} for server {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoMatchingWorkspaceFoundInRepository">
            <summary>
            No workspace matching {0} on computer {1} found in Team Foundation Server {2}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoPendingChanges">
            <summary>
            There are no pending changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoPendingChangesMatchingItemSpec">
            <summary>
            No pending changes were found for {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoPendingChangesMatchingItemSpecs">
            <summary>
            There are no pending changes matching the specified items.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoConflictsMatchingItemSpecs">
            <summary>
            There are no conflicts matching the specified items.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoPermissions">
            <summary>
            There are no permissions set for this item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoShelvesetsFoundMatching">
            <summary>
            No shelvesets found matching {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NotCloaked">
            <summary>
            Active
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoSourceFile">
            <summary>
            [no source file]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoTargetFile">
            <summary>
            [no target file]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoTeamProjectForPath">
            <summary>
            There is no team project for {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemIsCloaked">
            <summary>
            The item {0} is cloaked.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoUriForUncommittedChangeset">
            <summary>
            An artifact URI cannot be created for an uncommitted changeset.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoWorkingFolderFor">
            <summary>
            There is no working folder mapping for {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoWorkingFolderMappings">
            <summary>
            This workspace has no working folder mappings.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OnlyOneWorkspace">
            <summary>
            All specified files must reside in the same workspace. Workspace {0} contains {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OptionNotAllowed">
            <summary>
            The option {0} is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OptionRequiresAtLeastOneItem">
            <summary>
            Option {0} requires at least one item. Either local or server paths may be used.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Owner">
            <summary>
            Owner
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OwnerEmpty">
            <summary>
            Please specify an owner.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PartialMergeIndicator">
            <summary>
            *
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PathIsNotAFile">
            <summary>
            The path {0} is not a file.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwBranchFolderCreated">
            <summary>
            Folder {0} will be created as a branch of {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwCheckinNoteDefinedMultipleTimes">
            <summary>
            Multiple &quot;checkin_note&quot; xml nodes have the same &quot;label&quot; attribute of &quot;{0}&quot; - please remove all but one.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwCheckinNoteRequiredInvalid">
            <summary>
            The &quot;checkin_note&quot; xml node with &quot;label&quot; attribute of &quot;{0}&quot; contains an invalid value of &quot;{1}&quot; for the &quot;required&quot; attribute.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwExclusiveCheckoutMultiplyDefined">
            <summary>
            The &quot;exclusive_checkout&quot; xml node appears multiple times - please remove all but one.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwGitMultiplyDefined">
            <summary>
            The &quot;git&quot; xml node appears multiple times - please remove all but one.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwGitNotDefined">
            <summary>
            The process template you are using does not support Git. Please use a template that does support Git.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwExclusiveCheckoutRequiredInvalid">
            <summary>
            The &quot;exclusive_checkout&quot; xml node contains an invalid value of &quot;{0}&quot; for the &quot;required&quot; attribute.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwIsGlobalPermission">
            <summary>
            &quot;{0}&quot; is a global source control permission. Only item-level permissions can be granted in a methodology template.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLoadingTeamProjectFolders">
            <summary>
            [Loading list of team project folders...]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNewEmptyFolderCreated">
            <summary>
            A new empty folder {0} will be created in Team Foundation Version Control
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNodeBadAttributeValue">
            <summary>
            &quot;{0}&quot; xml node contains an invalid value of &quot;{2}&quot; for the &quot;{1}&quot; attribute
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNodeMissingRequiredAttribute">
            <summary>
            &quot;{0}&quot; xml node is missing required attribute &quot;{1}&quot;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNoFolderCreated">
            <summary>
            No folder will be created
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNone">
            <summary>
            [None]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwSccSourceControl">
            <summary>
            Source Control
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwSccSpecifySettings">
            <summary>
            Specify Source Control Settings
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwUnknownPermission">
            <summary>
            TF10136: &quot;{0}&quot; is not a recognized source control permission.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwVersionControlCreation">
            <summary>
            Version Control
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogChoseNoFolder">
            <summary>
            User chose no folder creation
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogChoseBranch">
            <summary>
            User chose to create folder {0} as a branch of existing folder {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogChoseNewFolder">
            <summary>
            User chose to create new empty folder {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogNoNodesFound">
            <summary>
            No xml nodes of type &quot;{0}&quot; were found in the task xml
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogAllowingPermissions">
            <summary>
            Allowing permission(s) {0} to group {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogDenyingPermissions">
            <summary>
            Denying permission(s) {0} to group {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogCreatingCheckinNote">
            <summary>
            Creating check-in note - label=&quot;{0}&quot; required=&quot;{1}&quot; order=&quot;{2}&quot;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogSettingExclusiveCheckout">
            <summary>
            Changing project setting ExclusiveCheckout to &quot;{0}&quot;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChangeIsNotAShelvedFile">
            <summary>
            A shelved pending change on a file is required: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingOperation">
            <summary>
            Pending {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingParentDeleteException">
            <summary>
            TF14092: The item {0} cannot be changed. A parent of this item has a pending delete which must be checked in first.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PermissionFormat">
            <summary>
            {0}: {1} ({2}: {3})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChangeToolTipChanges">
            <summary>
            Changes: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChangeToolTipFolder">
            <summary>
            Folder: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChangeToolTipName">
            <summary>
            Name: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChangeToolTipVersion">
            <summary>
            Version: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PoliciesOnlyOnTeamProjects">
            <summary>
            TF10137: Check-in policies may only be associated with team projects.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyActive">
            <summary>
            Policies cannot be edited after being initialized for evaluation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyAssemblyNotRegistered">
            <summary>
            The policy assembly &apos;{0}&apos; is not registered.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyDataCorrupted">
            <summary>
            TF10138: The check-in policy settings for {0} are corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyFailureNoMessage">
            <summary>
            The policy failed but did not provide a failure message.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyFailuresOverridden">
            <summary>
            The policies have been overridden.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyFailureTooManyPendingChanges">
            <summary>
            TF204012: Your files could not be checked in because you tried to check in a large number of files, some of which are subject to check-in policies. If possible, check in fewer files, or use the override option to bypass the check-in policies.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyInternalErrorNull">
            <summary>
            Policy Internal Error: Policy returned a null failure
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyLoadError">
            <summary>
            Error loading the {0} policy. Installation instructions: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyLoadErrorMoreInfo">
            <summary>
            Error loading the {0} policy ({1}). Installation instructions: {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyOverrideCommentRequired">
            <summary>
            A comment explaining the policy override must be specified with the /override option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyOverrideReason">
            <summary>
            Override Reason
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyViolations">
            <summary>
            TF10139: The following check-in policies have not been satisfied
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyViolationsApplied">
            <summary>
            TF10140: The following check-in policies were not satisfied
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyWarningMessages">
            <summary>
            Messages
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PolicyWarnings">
            <summary>
            Policy Warnings
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PortfolioExplorerNodeName">
            <summary>
            Source Control
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PressEnterKey">
            <summary>
            Press the Enter key to continue.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProblemsParsingIgnoring">
            <summary>
            Ignoring {0} - There were parsing problems: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProductName">
            <summary>
            Visual Studio
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyNotResponding">
            <summary>
            The source control proxy &apos;{0}&apos; is not responding, so the request will be sent to the main server. Please verify your settings.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyNotRespondingWithMessage">
            <summary>
            The source control proxy &apos;{0}&apos; is not responding, so the request will be sent to the main server. Please verify your settings.Additional information: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RecursionTypesMustMatch">
            <summary>
            The recursion type of {0} and {1} must match.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResolveOneItemNewName">
            <summary>
            Only one conflict may be resolved when the /newname option is also specified.The new name cannot contain wildcards.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Repository">
            <summary>
            Server
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TeamProjectCollection">
            <summary>
            Collection
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RepositoryNotFoundWithInfo">
            <summary>
            Team Foundation Server {0} does not exist or is not accessible at this time.Technical information (for administrator): {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RequiresOneValue">
            <summary>
            Option {0} requires exactly one value.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResolveAndReCheckin">
            <summary>
            TF10141: No files checked in: resolve the conflicts and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResolveCannotMergeBinaryFiles">
            <summary>
            Binary files cannot be merged unless an encoding override is specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResolvedConflict">
            <summary>
            Resolved {0} as {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResolveEncodingsDontMatch">
            <summary>
            The encodings for the files being merged must match or an encoding conversion must be specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResolveForceRequiresAutoMerge">
            <summary>
            The {0} option is only valid when used with the AcceptMerge resolution.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResourcePendingChangeWarning">
            <summary>
            opened for {0} in {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResourcePendingChangeWarningRelatedItem">
            <summary>
            {0} opened for {1} in {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Scope">
            <summary>
            Scope
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SecondArgumentLocalFolder">
            <summary>
            The second path argument must be a local folder.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerDoesNotSupportChangingWorkspaceOwner">
            <summary>
            The Team Foundation Server for this workspace does not support changing the owner of a workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerDoesNotSupportChangingWorkspacePermissions">
            <summary>
            The Team Foundation Server for this workspace does not support changing the permissions of a workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerInformation">
            <summary>
            Server information:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerItem">
            <summary>
            Server item
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerOptionRequiredForUpdateOptions">
            <summary>
            The /collection option must be specified whenever /updateComputerName or /updateUserName is specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerPath">
            <summary>
            Server path
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SetPermissionOptionNotAllowed">
            <summary>
            The {0} option cannot be used when setting permissions.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvedChange">
            <summary>
            Shelved Change: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Shelveset">
            <summary>
            Shelveset
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetCreated">
            <summary>
            Shelveset {0} created.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetIllegalOwner">
            <summary>
            Cannot create a shelveset owned by a different user.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetHasNoPendingChangesMatching">
            <summary>
            Shelveset {0} has no pending changes matching pattern(s): {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetNameRequired">
            <summary>
            Please specify a shelveset name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvingPendingChange">
            <summary>
            Shelving {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Size">
            <summary>
            Size
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SkippingNonFileShelvedChange">
            <summary>
            &apos;{0}&apos; is not a file.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SolutionSpansWorkspaces">
            <summary>
            Solution would span multiple workspaces.Conflicting Project: {0}Project Workspace : {1}Solution Workspace : {2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SourceAndTargetRequired">
            <summary>
            Exactly two items (source and target) are required. Either local or server paths may be used.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SourceItem">
            <summary>
            Source item
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SpecifyLocalFolderOrRepositoryFolder">
            <summary>
            Specify one local or server folder.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SpecifyLockLevel">
            <summary>
            Specify the lock with the /lock option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SpecifyOneWorkspace">
            <summary>
            Specify one workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SpecifySourceAndDestination">
            <summary>
            Specify two names: the source and the target.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SpecifyWorkspaceEditOption">
            <summary>
            Specify at least one of the following options: /{0}, /{1}, /{2}, /{3}, /{4}, /{5}, or /{6}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.StaleVersion">
            <summary>
            newer version exists in source control
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TargetLocalPending">
            <summary>
            The target has a pending change.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TargetLocalPendingPath">
            <summary>
            {1} cannot be retrieved because the target {0} has a pending change ({2}).
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TeamFoundationServerNameMissing">
            <summary>
            A Team Foundation server name must be supplied.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ThreewayMergeInvalidEncodingForFile">
            <summary>
            TF400962: The {0} file {1} could not be read with the encoding {2}. Please merge the changes with the configured merge tool instead. To prevent this error from reoccuring, you must ensure that the contents of the file are valid for the encoding specified in Team Foundation Server before checking in. If the encoding specified in Team Foundation Server is incorrect, you can pend an encoding change to correct it.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TooManyItemsSpecified">
            <summary>
            Too many items specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TotalChanges">
            <summary>
            {0} change(s)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Type">
            <summary>
            Type
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MissingBaseline">
            <summary>
            TF400122: The unmodified file content for {0} could not be restored from the baseline directory because it is missing. You must perform a get on this item to download its content.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CorruptBaseline">
            <summary>
            TF400121: The unmodified file content for {0} could not be restored from the baseline directory because it is corrupt. You must perform a get on this item to download its content. Additional information: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToDownloadBaseline">
            <summary>
            TF400297: An error occurred while downloading unmodified file content to the baseline directory. Additional information: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BaselineLengthDoesNotMatch">
            <summary>
            The length of the baseline content does not match the length in the local version table.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BaselineHashValueDoesNotMatch">
            <summary>
            The hash value of the baseline content does not match the hash value in the local version table.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToDetermineRepository">
            <summary>
            Unable to determine the source control server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToDetermineWorkspace">
            <summary>
            Unable to determine the workspace. You may be able to correct this by running &apos;tf workspaces /collection:TeamProjectCollectionUrl&apos;.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToEditNonExistentWorkspace">
            <summary>
            The workspace {0} does not exist. Please specify an existing workspace or /{1} to create one.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToFindVersionControlRegistration">
            <summary>
            Unable to retrieve the registration information for Source Control.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UndeleteOneItemNewName">
            <summary>
            Only one item may be specified when the /newname option is also specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UndoMovedTo">
            <summary>
            (moved to {0})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UndoEditQuestion_YNA">
            <summary>
            Undo your changes to {0}?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UndoingOperation">
            <summary>
            Undoing {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnifiedDiffSourceLabel">
             <summary>
             This date format needs to stay fixed for tool support
             
             original {0:yyyy-MM-dd HH:mm:ss.fffffff zzz}
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnifiedDiffTargetLabel">
             <summary>
             This date format needs to stay fixed for tool support
             
             modified {0:yyyy-MM-dd HH:mm:ss.fffffff zzz}
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Unknown">
            <summary>
            Unknown
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnlabelMissingArguments">
            <summary>
            You must specify a label name and one or more items to remove from the label.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnrecognizedCommand">
            <summary>
            Unrecognized command: {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveMoveCannotHaveFilespecs">
            <summary>
            The /move option can only be used without specifying any items.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelvingPendingChange">
            <summary>
            Unshelving {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.User">
            <summary>
            User
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UserWildcardInvalidWithWorkspaceOption">
            <summary>
            TF10143: Specifying /user:* is not supported when also specifying the /workspace option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ValidationFailed">
            <summary>
            Validation failed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ValidationSucceeded">
            <summary>
            Validation was successful.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionControlServerDidNotMatch">
            <summary>
            The VersionControlServer with which this pending change is associated does not match the VersionControlServer provided when the collection was created.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionedItem">
            <summary>
            Version {0} of {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionedItemTypeLocalizedName">
            <summary>
            Versioned Item
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecPathEmpty">
            <summary>
            Please specify a path with the version specifier.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecEmpty">
            <summary>
            Please provide a version specification.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecIndicator">
            <summary>
            TF10144: &apos;{0}&apos; is not a supported version specification type.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecInvalidDateTime">
            <summary>
            TF204020: The version specification is not in a supported date or time format.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecInvalidDeletionId">
            <summary>
            TF10146: The deletion id given ({0}) is not a supported deletion number.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecInvalidTip">
            <summary>
            The version specification for tip can only be T or t.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecRangeNotPermitted">
            <summary>
            Version specification range is not permitted for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecSpecifyOnlyOneDeletionId">
            <summary>
            You can only specify one deletion id.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecTooManyVersionsSpecified">
            <summary>
            You can only specify one version specification.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VssProviderInterOpUnavailable">
            <summary>
            Unable to obtain Source Control Provider interface.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WarnMappingCouldNotRelativize">
            <summary>
            Could not generate relative path equivalent for &apos;{0}&apos;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WarnMappingHadNameConflict">
            <summary>
            A naming conflict resulted in the rename of &apos;{0}&apos; to &apos;{1}&apos;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WildcardsNotAllowedForOption">
            <summary>
            This command does not support wildcards for the /{0} option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkingFolders">
            <summary>
            Working folders
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkingFoldersChangeWarning">
            <summary>
            One or more working folders in version control have changed. You must perform a get operation to update your workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemHeaderAssignedTo">
            <summary>
            Assigned To
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemHeaderID">
            <summary>
            ID
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemHeaderState">
            <summary>
            State
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemHeaderTitle">
            <summary>
            Title
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemHeaderType">
            <summary>
            Type
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemQueryDisplayName">
            <summary>
            {0} ({1})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemQueryTitleDisplayName">
            <summary>
             ({0})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItems">
            <summary>
            Work Items
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateHistoryForAssociated">
            <summary>
            Associated with changeset {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateHistoryForResolved">
            <summary>
            Resolved with changeset {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateHistoryForAssociatedWithComment">
            <summary>
            Associated with changeset {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateHistoryForResolvedWithComment">
            <summary>
            Resolved with changeset {0}: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateError">
            <summary>
            ID {0}. Reason: {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateErrorMessagePlural">
            <summary>
            Failed to update the following work items:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateErrorMessageSingular">
            <summary>
            Failed to update the following work item:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UpdatingWorkItems">
            <summary>
            Updating {0} work item(s)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateResolved">
            <summary>
            resolved work item: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateAssociated">
            <summary>
            associated work item: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateResolveFailed">
            <summary>
            failed to resolve work item: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkItemUpdateAssociateFailed">
            <summary>
            failed to associate work item: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Workspace">
            <summary>
            Workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceItemNotFound">
            <summary>
            The item {0} could not be found in your workspace, or you do not have permission to access it.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceItemNotFoundRecursive">
            <summary>
            No matching items found in {0} in your workspace, or you do not have permission to access them.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TemplateWorkspaceNameEmpty">
            <summary>
            Specify a template workspace name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceNameEmpty">
            <summary>
            Specify a workspace name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceOwnerEmpty">
            <summary>
            Specify a workspace owner.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceAndServerFormat">
            <summary>
            {0} [{1}]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceIsDeleted">
            <summary>
            The workspace {0} has been deleted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WrongNumberOfArgsForBuiltIn">
            <summary>
            Wrong number of arguments for built-in interpreter command {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WrongPolicyType">
            <summary>
            The policy instance does not match the policy type.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Yes">
            <summary>
            Yes
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnsupportedContentType">
            <summary>
            The server returned content type {0}, which is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNetworkFailureError">
            <summary>
            Unable to connect to the specified source control serveron the Team Foundation Server {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNetworkFailureExplanation">
            <summary>
            The Team Project Creation Wizard was unable to connect to the Team Foundation Server {0}.Without a connection, the wizard was unable to create the team project rootdirectory on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwNetworkFailureUserAction">
            <summary>
            Contact the administrator for the Team Foundation Server {0}to confirm that the server is available on the network.Also, you might find additional helpful information in the project creation log.The log shows each action taken by the wizard at the time of the failure andmay include additional details about the error.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwDuplicateProjectNameError">
            <summary>
            Duplicate name for the source control folder on the Team Foundation server {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwDuplicateProjectNameExplanation">
            <summary>
            The name you typed for the new team project is already in use as a site on the source controlserver. The team project name must be unique on all Team Foundation servers used by the newproject.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwDuplicateProjectNameUserAction">
            <summary>
            1. Close the Project Creation Wizard.2. Restart the Project Creation Wizard.3. Type a unique name for the new team project.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetContainsNoChanges">
            <summary>
            The shelveset {0} contains no changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetNamespaceConflict">
            <summary>
            Conflict {0} - Unable to perform the {1} operation because you have a pending {2} on a different item at the destination
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetNamespaceConflictMove">
            <summary>
            Conflict {0} - Unable to perform the {1} operation because you have a pending {2} on a different item at the destination (to be moved from {3})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidValueRange">
            <summary>
            Value must be between {0} and {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyedItem">
            <summary>
            Destroyed: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyNotEnoughArguments">
            <summary>
            Specify the items to be destroyed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyStopAtNotValidWithoutKeepHistory">
            <summary>
            You must specify /keephistory if you specify /stopat.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BranchesNoTree">
            <summary>
            TF10101: Item {0} is not used in any branch trees.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidStopAtSpec">
            <summary>
            TF10147: /stopat must not be a label or workspace version specifier.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceRenamed">
            <summary>
            The source item has been renamed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ConflictMergeSourceRenamedPath">
            <summary>
            The source item for {0} has been renamed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MergedItems">
            <summary>
            Merged items
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnMergedItems">
            <summary>
            Un-Merged items
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwGetLatestOnCheckoutMultiplyDefined">
            <summary>
            The &quot;get_latest_on_checkout&quot; xml node appears multiple times - please remove all but one.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwGetLatestOnCheckoutRequiredInvalid">
            <summary>
            The &quot;get_latest_on_checkout&quot; xml node contains an invalid value of &quot;{0}&quot; for the &quot;required&quot; attribute.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogSettingGetLatestOnCheckout">
            <summary>
            Changing project setting GetLatestOnCheckout to &quot;{0}&quot;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DepthOneMappingsNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support one-level mapping depth.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueueForEditNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support queuing pending edit requests for later replay.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueueForEditRequiresServerWorkspace">
            <summary>
            The Workspace.QueueForEdit method is only supported with server workspaces (WorkspaceLocation.Server).
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkingFolderWildcard">
            <summary>
            TF203003: You cannot specify a wildcard character for this working folder. The only wildcard character allowed is an &apos;*&apos; to map a Team Foundation Server folder and its immediate child items to your workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerItemRequiredException">
            <summary>
            The item {0} must be a server item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyQuestion_YNA">
            <summary>
            Do you want to destroy {0} and all of its children?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyAffectedQuestion_YNA">
            <summary>
            This destroy operation will destroy pending changes (in workspaces or shelvesets).To discover the list of pending changes please rerun &apos;tf destroy&apos; with /preview.Do you still wish to destroy &apos;{0}&apos;?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyAffectedPendingChanges">
            <summary>
            The following pending changes will be deleted by destroying &apos;{0}&apos;:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyAffectedShelvedChanges">
            <summary>
            The following shelved changes will be deleted by destroying &apos;{0}&apos;:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoItemsToDestroy">
            <summary>
            There were no items to destroy.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyedContentUnavailableException">
            <summary>
            TF14124: The content for this version of the file was destroyed. Please try again using a later version of this item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyedFileContentUnavailableException">
            <summary>
            TF14124: The content for changeset {0} of the file &apos;{1}&apos; was destroyed. Please try again using a later version of this item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotDestroyRootException">
            <summary>
            TF14129: You cannot destroy the root directory &apos;{0}&apos; of the repository.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DestroyNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support the Destroy command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotDeleteOnPartialUnshelve">
            <summary>
            TF10148: Some changes contained within the shelveset {0} were not unshelved. To remove the shelveset from the server delete the shelveset directly.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NeedReadPermissionToDownload">
            <summary>
            TF204001: The item {0} cannot be downloaded. Read permission is required to retrieve the content.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingLocalVersionMismatchPath">
            <summary>
            {0} could not be checked in. The version of the local file is different from the pending change version.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingLocalVersionMismatch">
            <summary>
            The version of the local file is different from the pending change version.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AutoMergeDisallowedException">
            <summary>
            The auto merge option is not supported for the conflict on item {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.EmptyPermissionsOrInheritanceError">
            <summary>
            TF14026: You must specify at least one permission in the add, deny, or remove list or set the inheritance flag.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WildcardNotAllowedException">
            <summary>
            The parameter {0} may not contain wildcards.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkingFoldersChangeGetPrompt">
            <summary>
            One or more working folders in version control have changed. Do you want to get the latest files from version control to update your workspace?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PerformingGetLatestOnWorkspace">
            <summary>
            Performing get latest on workspace {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceMappingsHaveChangedTitle">
            <summary>
            Workspace Modified
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotRollbackMultiplePaths">
            <summary>
            TF204002: You can roll back only one path at a time.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoChangesToRollback">
            <summary>
            TF204003: No changes to roll back.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RollbackInvalidSpecForChangeset">
            <summary>
            TF204004: You cannot provide a workspace spec or a label spec argument with the /changeset option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RollbackNoVersionsSpecified">
            <summary>
            TF204005: No versions were specified for the tf rollback command. Specify versions and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RollbackTargetDeleted">
            <summary>
            The target version is deleted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RollbackTargetDeletedPath">
            <summary>
            Cannot rollback {0} because the target version is deleted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RollbackTargetVersionHasChanges">
            <summary>
            The target version has conflicting changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RollbackTargetVersionHasChangesPath">
            <summary>
            Cannot rollback {0} because the target version has conflicting changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RollbackNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support the Rollback command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueryMergeCandidatesOptionsNotSupported">
            <summary>
            TF400039: The Team Foundation server to which your team project is connected does not support passing options to the QueryMergeCandidates command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecOnlyTwoValid">
            <summary>
            TF204021: You may only specify 2 version specifiers as the start and end range.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DeletionIdNotAllowed">
            <summary>
            A deletionId is not allowed for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VersionSpecNotAllowed">
            <summary>
            A version specifier is not allowed for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AtleastOneSourceAndOneOrMoreTarget">
            <summary>
            Specify at least one source item and one or more target items.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoMergesFound">
            <summary>
            No merges found.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OptionNotAllowedOnPendBranch">
            <summary>
            The {0} option is only permitted when /checkin is used.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ExtendedMergesNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support requesting extended merge information.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotCreateOrModifyPropertyWithTFSPrefix">
            <summary>
            TF204009: You cannot create, update, or delete a property that begins with the &apos;TFS:&apos; prefix.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckInOptions2NotSupported">
            <summary>
            TF204000: The Team Foundation Server for this workspace does not support one or more of the checkin options you have selected.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceDiffNotSupported">
            <summary>
            TF204000: Workspace difference calculation requires TFS 2010 or later.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckInShelvesetNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support the CheckInShelveset command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RootInheritanceException">
            <summary>
            You may not set the inheritance property on the root folder.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetNotFoundException">
            <summary>
            The shelveset {0} could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RemapNotAvailableWithFilterCallback">
            <summary>
            TF204008: You cannot use the Remap option with a filter callback.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AddProxyNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support the AddProxy command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DeleteProxyNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support the DeleteProxy command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueryProxiesNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support the QueryProxies command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SpecifyOneUrl">
            <summary>
            Specify one url.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Disabled">
            <summary>
            Disabled
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Enabled">
            <summary>
            Enabled
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.EnabledOptionValueNotBoolean">
            <summary>
            The value specified for the /enabled option must be a boolean.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidProxyUrl">
            <summary>
            TF15044: Unable to connect to this Team Foundation Proxy Server: {0}.Possible reasons for failure include:- The Team Foundation Proxy Server name, port number or protocol is incorrect.- The Team Foundation Proxy Server is offline.- Password is expired or incorrect.For further information, contact the Team Foundation Proxy administrator.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustConfigureProxySetting">
            <summary>
            Must configure the proxy setting before this operation can be performed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoProxyRecordsFound">
            <summary>
            No proxy records were found.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoProxySetting">
            <summary>
            No proxy server has been configured for this client.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxiesFound">
            <summary>
            {0} proxies found.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyDescription">
            <summary>
            Description: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxySite">
            <summary>
            Site: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyDefaults">
            <summary>
            Defaults: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxySiteDefault">
            <summary>
            Site
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyDefaultsList">
            <summary>
            {0}, {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyGlobalDefault">
            <summary>
            Global
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyName">
            <summary>
            Friendly Name: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxySeparator">
            <summary>
            ===================================================================
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyStatus">
            <summary>
            Status: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyTooManyArguments">
            <summary>
            You may not specify arguments for this command without specifying an option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyUrl">
            <summary>
            Proxy URL: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AttemptProxyAutoConfigure">
            <summary>
            Attempting to automatically configure the proxy setting.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ExhaustedAllProxies">
            <summary>
            Could not connect to any recommended proxy.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoBestProxiesFound">
            <summary>
            No recommended proxies were found for your site.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxySuccessfulConfigure">
            <summary>
            Successfully configured proxy {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueryProxyRecords">
            <summary>
            Querying server for list of proxy records.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SuccessfulAddProxy">
            <summary>
            Added proxy {0} to the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SuccessfulDeleteProxy">
            <summary>
            Successfully deleted proxy {0} from the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CouldNotDetermineProxySite">
            <summary>
            Could not determine the site this proxy belongs in.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FindProxiesForSite">
            <summary>
            Finding recommended proxies for your site: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FoundProxySiteName">
            <summary>
            Automatically determined the proxy site: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyAutoConfigured">
            <summary>
            Auto-Configured: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ProxyLastConfigureTime">
            <summary>
            Last Configuration: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CreateBranchNotSupported">
            <summary>
            TF204006: The Team Foundation server to which your team project is connected does not support the CreateBranch method.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetChangesForChangesetNotSupported">
            <summary>
            TF204007: The Team Foundation server to which your team project is connected does not support the GetChangesForChangeset method.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.IdentityNotFoundException">
            <summary>
            TF14045: The identity {0} is not a recognized identity.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CouldNotReachProxy">
            <summary>
            A Team Foundation Server proxy could not be found at the provided URL: {0}The proxy will be added to the server, but you should check the URL to see if it is correct.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueryLocalVersionsNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support the QueryLocalVersions command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspacePermissionsProfileIndeterminate">
            <summary>
            Could not be retrieved
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetPendingChangesForWorkspaceNotSupported">
            <summary>
            TF204007: The Team Foundation server to which your team project is connected does not support this overload of the GetPendingChanges method.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Permissions">
            <summary>
            Permissions
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidPermissionValue">
            <summary>
            TF204019: The permission {0} is not supported. You must supply one or more of the values ({1}) to update these permissions.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Invalid8Dot3Path">
            <summary>
            TF203013: The path {0} is in the DOS (8.3) short path format and is not supported. Enter a full path to the item and try again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PropertyOperationsNotSupported">
            <summary>
            TF400309: Properties operations are not valid on the version of Team Foundation Server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetChangesWithPropertiesNotSupported">
            <summary>
            TF204010: GetChangeset with properties method is not valid on the server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetChangesForChangesetWithPropertiesNotSupported">
            <summary>
            TF204010: GetChangesForChangeset with properties method is not valid on the server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GlobalResourceAccessException">
            <summary>
            TF14044: Access Denied: User {0} needs the {1} global permission(s).
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TrackMergesNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support tracking merges.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResourceAccessException">
            <summary>
            TF14098: Access Denied: User {0} needs {1} permission(s) for {2}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResourceAccessExceptionWorkspace">
            <summary>
            TF204017: The operation cannot be completed because the user ({0}) does not have one or more required permissions ({1}) for workspace {2}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemNotFound">
            <summary>
            The item {0} does not exist at the specified version, or you do not have permission to access it.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemNotFoundRecursive">
            <summary>
            No matching items found in {0} at the specified version, or you do not have permission to access them.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BranchObjectsNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support branch objects.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChangesInvalidPageSize">
            <summary>
            The page size value must be 0 or greater. If the value is 0, then last change must be null to indicate paging should not be used.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspacePermissionAdminister">
            <summary>
            Administer the workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspacePermissionCheckIn">
            <summary>
            Check in changes to the workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspacePermissionRead">
            <summary>
            View workspace information
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspacePermissionUse">
            <summary>
            Use the workspace
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PermissionActionNotSupportedOnPreFrameworkServer">
            <summary>
            This operation can only be performed against Microsoft Visual Studio Team Foundation Server 2010 and newer servers.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.FileInUseEncodingFailure">
            <summary>
            TF204018: Could not check the file&apos;s encoding because the file {0} is in use.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueryMergeRelationshipsNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support querying merge relationships.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RenameSourceUnreadable">
            <summary>
            [no permission to read the source of this item]
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RenamedInVersion">
            <summary>
            Renamed in version {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoPropertiesSaved">
            <summary>
            No properties saved.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ComparingLocalToLatest">
            <summary>
            Comparing local to latest: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GatedCheckinQueued">
            <summary>
            Your check-in has been placed into shelveset {0} and submitted for validation by build definition {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GatedCheckinShelvesetQueued">
            <summary>
            Your shelveset has been submitted for validation by build definition {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResubmittingCheckin">
            <summary>
            Re-submitting check-in...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NotALocalPath">
            <summary>
            The path &apos;{0}&apos; is not a local path.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidUpdateLocalValue">
            <summary>
            Invalid value for updatelocal option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveWithMergeNotSupported">
            <summary>
            TF400016: Unshelve with Merge is not supported on the version of Team Foundation Server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkingFoldersOnlyForLocalWorkspaces">
            <summary>
            The WorkspaceInfo.Folders property is only available for WorkspaceInfo objects with a Location of WorkspaceLocation.Local.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalWorkspacesNotSupported">
            <summary>
            TF204000: The Team Foundation server to which your team project is connected does not support local workspaces.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToLoadLocalPropertiesTable">
            <summary>
            TF400017: The workspace properties table for the local workspace {0} could not be opened. {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToLoadLocalVersionTable">
            <summary>
            TF400018: The local version table for the local workspace {0} could not be opened. {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToLoadPendingChangesTable">
            <summary>
            TF400019: The pending changes table for the local workspace {0} could not be opened. {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.QueueUpdateOverloadNotSupportedWithLocalWorkspaces">
            <summary>
            This overload of UpdateLocalVersionQueue.QueueUpdate is not supported when queuing local version updates for a local workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceVersionTableUnknownSchema">
            <summary>
            The workspace version table contains an unknown schema version.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Location">
            <summary>
            Location
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Local">
            <summary>
            Local
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalToServerReconcile">
            <summary>
            Reconciling your local workspace to the server...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalToServerReadOnly">
            <summary>
            Marking unedited items with the read-only bit...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalToServerUpdateWorkspace">
            <summary>
            Changing the location of your workspace on the server...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalToServerRefresh">
            <summary>
            Refreshing your workspace...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalToServerDeleteBaselines">
            <summary>
            Deleting unused baseline folders...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalDeletingExisting">
            <summary>
            Removing colliding metadata for the local workspace...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalCreatingPropertiesTable">
            <summary>
            Creating the workspace properties table...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalCreatingPendingChangesTable">
            <summary>
            Creating and populating the pending changes table...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalCreatingLocalVersionTable">
            <summary>
            Creating and populating the local version table...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalProcessingBaselines">
            <summary>
            Compressing and downloading baselines...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalReadOnly">
            <summary>
            Removing the read-only bit from unedited items...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalUpdateWorkspace">
            <summary>
            Changing the location of your workspace on the server...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerToLocalRefresh">
            <summary>
            Refreshing your workspace...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetDeletedDisplayName">
            <summary>
            Shelveset deleted
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CheckinDatesNotSupported">
            <summary>
            TF203097: You attempted to either reset the check-in dates in a team project collection or to check in one or more items while specifying a date and time stamp. The attempt failed because this operation is supported only on Team Foundation Server 2010 (with hotfix KB 2402815) or later.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeAlreadyPendingException">
            <summary>
            The item {0} already has pending changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemExistsException">
            <summary>
            The item {0} already exists.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CanNotChangeRootFolderException">
            <summary>
            TF14005: Changes cannot be made to the root folder.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingDeleteConflictChange">
            <summary>
            TF203069: {0} could not be deleted because that change conflicts with one or more other pending changes to that item. To delete it, undo all pending changes to that item, delete it, and then check in the change.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChildException">
            <summary>
            TF14060: The item {0} cannot be deleted. One or more children have pending changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotCreateFilesInRootException">
            <summary>
            TF10149: You cannot create files in the root folder. Create a team project and then add the files under the team project folder.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidProjectPendingChangeException">
            <summary>
            TF10169: Unsupported pending change attempted on team project folder {0}. Use the Project Creation Wizard in Team Explorer to create a project or the Team Project deletion tool to delete one.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemNotMappedException">
            <summary>
            No appropriate mapping exists for {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemCloakedException">
            <summary>
            The item {0} has been cloaked.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WildcardNotAllowedForRenameTarget">
            <summary>
            You may not specify a wildcard as the target.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WildcardNotAllowedForRenameSource">
            <summary>
            You may not specify a wildcard as a source if the target is not a folder in source control.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PartialRenameConflictException">
            <summary>
            TF14059: Unable to process the pending changes requested. The set of pending renames would cause a name collision for {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RenameWorkingFolderException">
            <summary>
            TF14097: Cannot rename {0} when it has a working folder mapping assigned to it.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TargetCloakedException">
            <summary>
            TF203080: The item {0} cannot be moved into an unmapped location because it (or one of its children) is checked out.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OfflineUndoNoLocalVersionEntry">
            <summary>
            TF400020: The content for the undone item {0} is not available locally. You must perform a get on this item to retrieve its content.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockOwnerName">
            <summary>
            Lock owner name
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LockOwnerIdentity">
            <summary>
            Lock owner identity
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TfIgnoreHeader">
             <summary>
             To localize this string, keep the # characters in place at the beginning of each line. Each line should be less than 80 characters in width -- add more lines if necessary, prefixing them with #.
             
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeRequestMustBeLocalNonRecursive">
            <summary>
            TF400021: The changeRequests parameter must contain local non-recursive paths. Instead it has: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotTakeCheckoutLockInLocalWorkspace">
            <summary>
            TF400022: The item {0} cannot be locked for checkout in workspace {1}. Checkout locks are not supported in local workspaces.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveGetConflictBrief">
            <summary>
            There were changes committed between the unshelved version and original workspace version.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveGetConflictFull">
            <summary>
            There were changes committed between the unshelved version and original workspace version of {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveMergeConflictBrief">
            <summary>
            The workspace and shelveset both have changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveMergeConflictFull">
            <summary>
            {0} ({1}) -&gt; {2} ({3})
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveConflictGetCollisionPathBrief">
            <summary>
            A different item with the same path existed in the original workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GetLatestOnCheckoutLocalWorkspaceWarning">
            <summary>
            Get latest on checkout is not supported in local workspaces. Checking out the local version.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnshelveConflictGetCollisionPathFull">
            <summary>
            A different item with the path {0} existed in the original workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MultipleWorkspacesSameSpec">
            <summary>
            Multiple identities found matching workspace name &apos;{0}&apos; and owner name &apos;{1}&apos;. Please specify one of the following workspace specs:{2}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ReconcileFailed">
            <summary>
            TF400023: The local workspace could not be reconciled with the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PendingChangesModified">
            <summary>
            One or more of the pending changes no longer exists or was modified. The list of pending changes has been refreshed and is now current. Please inspect the list of pending changes and try your operation again.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UndoItemExistsLocally">
            <summary>
            TF400024: The change on {0} cannot be undone because a file already exists at {1}. The file must be deleted from disk for the undo to succeed.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotRenameDueToChildConflictMessage">
            <summary>
            TF400025: Cannot rename item {0} because a conflict exists at {1}. Please resolve all conflicts at or under the root of the item before pending the rename.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotUndoRenameDueToChildConflictMessage">
            <summary>
            TF400026: Cannot undo the rename of item {0} because a conflict exists at {1}. Please resolve all conflicts at or under the root of the item before undoing the rename.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotExecuteThirdPartyToolAssembly">
            <summary>
            Cannot execute the configured tool.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotLoadThirdPartyToolAssembly">
            <summary>
            Cannot load the configured tool.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ThirdPartyToolAssemblyNotFound">
            <summary>
            Cannot find an appropriate tool implementation in {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.WorkspaceInfoNotFromServer">
            <summary>
            The workspace represented by this WorkspaceInfo resides on a different team project collection.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerSettingsNotSupported">
            <summary>
            TF400027: The Team Foundation server to which your team project is connected does not support querying or setting version control settings.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetPropertyOperationsNotSupported">
            <summary>
            TF400028: Shelveset property operations are not valid on the version of Team Foundation Server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ShelvesetUpdateOperationsNotSuppoerted">
            <summary>
            TF400029: Shelveset meta-data other than the Properties bag cannot be updated against the version of Team Foundation Server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DefaultLocalItemExclusions">
             <summary>
             Any changes here should be reflected below
             
             bin;bld;ClientBin;Debug;obj;AppPackages;Release;TestResults;FakesAssemblies;*.*~;*.appx;*.appxrecipe;*.build.csdef;*.cache;*.cer;*.class;*.dbmdl;*.dll;*.docstates;*.docstates.suo;*.DS_Store;*.err;*.exe;*.ilk;*.ipch;*.lastbuildstate;*.lce;*.ldf;*.lib;*.log;*.mdf;*.msscci;*.ncb;*.obj;*.opensdf;*.pch;*.pdb;*.pri;*.res;*.resources;*.sdf;*.suo;*.svn;*.swp;*.temp;*.tfOrig*;*.tlog;*.tmp;*.trx;*.user;*.unsuccessfulbuild;*.v11.suo;*.vcxproj.user;*.vsix;*.vsmdi;*.vspscc;*.vssettings;*.vssscc;*.wrn;*.xap;.metadata
             </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DefaultLocalItemExclusionsForFolderDiff">
            <summary>
            !bin\;!bld\;!ClientBin\;!Debug\;!obj\;!AppPackages\;!Release\;!TestResults\;!*.*~!*.appx!*.appxrecipe;!*.cache!*.cer!*.dbmdl!*.dll!*.docstates!*.docstates.suo;!*.err!*.exe!*.ilk!*.ipch!*.lastbuildstate!*.lce!*.ldf!*.lib!*.log!*.mdf!*.msscci!*.ncb!*.obj!*.opensdf!*.pch!*.pdb!*.pri!*.res!*.resources!*.sdf!*.suo!*.swp!*.temp!*.tfOrig*!*.tlog!*.tmp!*.trx!*.user!*.unsuccessfulbuild!*.v11.suo!*.vcxproj.user!*.vsix!*.vsmdi!*.vspscc!*.vssettings!*.vssscc!*.wrn!*.xap;!.metadata\
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DetectedChanges">
            <summary>
            Detected Changes:
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangesSummary">
            <summary>
            {0} change(s), {1} detected change(s)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OptionNotAllowedInServerWorkspace">
            <summary>
            The option {0} is not allowed in a server workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoDeletesDetected">
            <summary>
            There were no deletes detected.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoAddsDetected">
            <summary>
            There were no adds detected.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AddNoFileSpecified">
            <summary>
            You must provide at least 1 file or folder when using the add command in a server workspace or with the /noignore option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SetFileTimeNotSupported">
            <summary>
            TF400038: The Team Foundation server to which your team project is connected does not support setting the file time option on a workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AutoResolvedConflict">
            <summary>
            Automatically resolved conflict: {0} as {1}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SetFileTime">
            <summary>
            File Time
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Current">
            <summary>
            Current
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Checkin">
            <summary>
            Checkin
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SetFileTimeToCheckinGetPrompt">
            <summary>
            Do you want to download the latest version of files so that the file times in your workspace are updated to the checkin time?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SetFileTimeToCheckinGetWarning">
            <summary>
            You must perform a forced get so that the file times in your workspace are updated to the checkin time.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AutoResolvedAllReCheckin">
            <summary>
            No files checked in due to conflicting changes. These conflicting changes have been automatically resolved. Please try the check-in again if there are changes remaining.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeNotACandidateDelete">
            <summary>
            The pending change is not a candidate delete.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ResolveRequiresOneResolutionMessage">
            <summary>
            TF400056: When calling ResolveConflicts please make sure that all conflicts have the same resolution type.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ItemsIgnoredBecauseOfExclusions">
            <summary>
            Items matching the following exclusions were ignored: {0}
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ExternalAutomergeFailed">
            <summary>
            Could not automatically resolve changes in the external tool.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.DownloadTimedOut">
            <summary>
            TF400307: The download operation timed out after waiting {0} seconds for a response from the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UploadTimedOut">
            <summary>
            TF400307: The upload operation timed out after waiting {0} seconds for a response from the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PropertyChangesNotSupported">
            <summary>
            TF400299: The Team Foundation server to which your team project is connected does not support operations related to property changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.BinaryValue">
            <summary>
            &lt;Binary Value&gt;
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustSpecifyPropertyName">
            <summary>
            Please specify a property name.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.MustSpecifyPropertyValue">
            <summary>
            Please specify a property value or use the /valueFile option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Name">
            <summary>
            Name
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.Value">
            <summary>
            Value
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalWorkspaceTransactionAlreadyRunning">
            <summary>
            TF401051: A local workspace transaction is already running on this thread. The second transaction has been automatically aborted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.OutputRequiresPropertyNameNoRecursion">
            <summary>
            In order to output a property value to a file the recursive flag cannot be present and exactly one property name must be specified.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PropertyDoesNotExist">
            <summary>
            A property name {0} does not exist on {1}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ChangeTypeProperty">
            <summary>
            property
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CleanOrPromoteRequired">
            <summary>
            Either the /clean or /promote option is required.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PropertyNameEmpty">
            <summary>
            TF400301: You must provide a name for the property.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PropertyValueEmpty">
            <summary>
            TF400300: You must provide a value for property &apos;{0}&apos;.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoPropertiesOnItem">
            <summary>
            There are no properties present on this item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoPropertiesToDeleteMessage">
            <summary>
            {0}: No properties found to delete.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.AttributeOperationsNotSupported">
            <summary>
            TF204010: Attribute operations are not valid on the version of Team Foundation Server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnversionedAttributesNotSupported">
            <summary>
            TF400310: Setting attributes on unversioned items are not valid on the version of Team Foundation Server on which your team project is hosted.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PropertiesCommandObsolete">
            <summary>
            The {0} command has been deprecated. Please use the &apos;tf info&apos; command instead.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotAutoMergePropertyConflicts">
            <summary>
            TF400550: Conflicts that contain property changes cannot be resolved as AutoMerge using this version of the client. Please resolve this conflict using another resolution option or a client that fully supports the property change type.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.InvalidLocalItemParameter">
            <summary>
            The localitem value is invalid. The local item {1} is a sub item of {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotCompareLabels">
            <summary>
            TF500223: The Compare Labels command cannot be used with this version of the database. Please compare labels with another option or a database that fully supports the Compare Labels command.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotDecreaseMaxPathLength">
            <summary>
            TF500224: The maximum allowed server path length has been decreased on the server which is not supported. Please contact your administrator or delete your workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RepositoryPathTooLongDetailed">
            <summary>
            TF400951: The operation failed. You must use Visual Studio 2012 Update 1 or a later version to work with paths that are longer than 259 characters. The item {0} exceeds 259 characters.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RepositoryPathTooLong">
            <summary>
            TF400959: The limit of {1} characters for a directory, or {2} for a directory and file name, was exceeded by the path for &apos;{0}&apos;.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwGitRepositoryCreated">
            <summary>
            A new empty Git repository will be created on the server
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PcwLogChoseGit">
            <summary>
            User chose to create new Git repository
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SourceControlSystemDescriptionGit">
            <summary>
            Git is a Distributed Version Control System (DVCS) that uses a local repository to track and version files. Changes are shared with other developers by pushing and pulling changes through a remote, shared repository.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SourceControlSystemDescriptionTFVC">
            <summary>
            Team Foundation Version Control (TFVC) uses a single, centralized server repository to track and version files. Local changes are always checked in to the central server where other developers can get the latest changes.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SourceControlSystemNameGit">
            <summary>
            Git
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SourceControlSystemNameTFVC">
            <summary>
            Team Foundation Version Control
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.TFVCNotEnabledForTeamProject">
            <summary>
            TF401191: A version control folder for the team project &apos;{0}&apos; could not be created because another source control system is enabled for that team project.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitPermissionAdminister">
            <summary>
            Administer
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitPermissionGenericRead">
            <summary>
            Read
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitPermissionGenericContribute">
            <summary>
            Contribute
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitPermissionForcePush">
            <summary>
            Rewrite and destroy history (force push)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitPermissionCreateBranch">
            <summary>
            Branch creation
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitPermissionCreateTag">
            <summary>
            Tag creation
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitPermissionManageNote">
            <summary>
            Note management
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.LocalVersionTableTooLarge">
            <summary>
            TF401190: The local workspace {0} has {1} items in it, which exceeds the recommended limit of {2} items. To improve performance, either reduce the number of items in the workspace, or convert the workspace to a server workspace.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.UnableToFormReplacementTeamProjectName">
            <summary>
            Unable to form a replacement team project name with length {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RepeatedProjectRevisionId">
            <summary>
            The new project revision ID {0} was repeated in consecutive attempts to reconcile.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.ServerUrl">
            <summary>
            Server Url
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoConnectionsFound">
            <summary>
            No connections found matching {0}.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.RemoveConnection_YNA">
            <summary>
            Do you want to remove Team Foundation Server {0}?
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.NoServerUrl">
            <summary>
            You must specify a server url.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitRepositoryNotFound">
            <summary>
            Git Repository Not Found
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.GitSubgroupIdentifier">
            <summary>
            git
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.SettingsSubgroupIdentifier">
            <summary>
            settings
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.VCSubgroupIdentifier">
            <summary>
            vc
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.PropertyChangesScopedByProjectNotSupported">
            <summary>
            TF402397: The Team Foundation Server to which your team project is connected does not support operations related to property changes that are project scoped.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.Internal.Resources.CannotUseXmlWithCachedWorkspaces">
            <summary>
            The XML format is not valid when listing all workspaces on this computer. To use the XML format, please specify the /collection option.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.MaxChangesetCommentSize">
            Maximum # of characters in a changeset comment (not counting a '\0' terminator).
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.PublicDir">
            Subdirectory containing images, transforms, schemas
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.SchemaDir">
            Subdirectory containing schemas
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.PublicAppDir">
            Subdirectory containing apps
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.TransformDir">
            Subdirectory containing transforms
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.AppDir">
            Subdirectory containing asmx/aspx pages
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.UrlSuffix">
            Suffix for the main web service URLs.
            All repository URLs must end with this suffix.
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.AdminUrlSuffix">
            Suffix for the admin web service URLs.
            All repository URLs must end with this suffix.
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.UploadUrlSuffix">
            URL suffix used to upload items to the web service using pure HTTP protocol
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.ProxyStatisticsUrlSuffix">
            Suffix for the proxy statistics URL
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.ServiceDefinitionPath">
            Request path of our registration page
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryConstants.IBISEnablement">
            BIS Registration Information
            The name of the BIS interface provided by the Mid-tier
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.RepositoryFailureCodes">
            <summary>
            Failure codes for version control operations.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryFailureCodes.QueryShelvedItemsReadPermissionWarning">
            <summary>
            Gets the warning code for missing read permissions when querying shelved items.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryFailureCodes.UnshelveReadPermissionWarning">
            <summary>
            Gets the warning code for missing read permissions when unshelving a shelveset.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RepositoryFailureCodes.MergeBranchSourceReadPermissionWarning">
            <summary>
            Gets the warning code for missing read permissions when unshelving a shelveset.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures">
            <summary>
            Enum which has the features supported by either the client
            or server
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.None">
            <summary>
            None of the features in this enum are supported.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.GetLatestOnCheckout">
            <summary>
            The client supports optionally synchronizing to the latest version of an item on Checkout (PendingEdit).
            If this flag is set but GetLatestOnCheckout is not set in PendChangesOptions, then the client will
            synchronize only if the team project has the GetLatestOnCheckout setting on.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.OneLevelMapping">
            <summary>
            This means that the server / client supports one level mappings
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.Destroy">
            <summary>
            The destroy feature is available on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.CreateBranch">
            <summary>
            The ability to create a committed branch on the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.GetChangesForChangeset">
            <summary>
            The ability to page changes within a changeset.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.ProxySuite">
            <summary>
            This represents the suite of proxy services: AddProxy(), DeleteProxy(), QueryProxies(), ...
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.LocalVersions">
            <summary>
            This represents the ability to query local version information from the server
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.BatchedCheckins">
            <summary>
             This represents the ability to page pending changes down from the server, and queue up pending changes
             for checkin, before committing them.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.WorkspacePermissions">
            <summary>
            The server supports workspace permissions
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.CheckinDates">
            <summary>
            The server supports the ability to set checkin dates
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.OwnerVSID">
            <summary>
            The server supports providing a VSID in the owner or user name fields.
            This is in addition to the domain\user, email, or display name formats.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.SupportedFeatures.All">
            <summary>
            This is a combination of all the features which are supported.
            Subject to change across releases. You can send this value
            (from client object model to server, or from server to client object model)
            and mask with it, but you should not test for equality against it.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx">
            <summary>
            The complete set of merge options, this is coverted to an int and sent to the server
            so we can be backward compatible in future versions
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.None">
            <summary>
            No option
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.ForceMerge">
            <summary>
            Instructs the server to re-merge source versions which have been previously merged
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.Baseless">
            <summary>
            Instructs the server to perform a baseless merge between items
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.NoMerge">
            <summary>
            Instructs the server to not actually pend the merge, but just return a preview of what needs to be merged
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.AlwaysAcceptMine">
            <summary>
            Instructs the server to discard any changes from the source, keeping only changes from the target.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.Silent">
            <summary>
            Instructs the server to supress any get operations and conflicts.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.NoImplicitBaseless">
            <summary>
            Only works prior on TFS 2008, instructs the server to not implicitly baseless merge items with the same
            relative path from the source root and target root.
            e.g. $/proj/trunk -> $/proj/branch
            If a new file is added at $/proj/trunk/a.cs and $/proj/branch/a.cs
            Setting this option will tell the server to not try and merge the 2 files
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.Conservative">
            <summary>
            Instructs the server to be conservative while declaring merges as conflicts. Available from TFS 2010.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.MergeOptionsEx.NoAutoResolve">
            <summary>
            Used only on the client. Instructs the client not to try to auto resolve conflicts
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.DestroyFlags">
            <summary>
            Options that are used when calling Destroy on the WebService.
            </summary>
        </member>
        <!-- Badly formed XML comment ignored for member "F:Microsoft.TeamFoundation.VersionControl.Common.DestroyFlags.DeleteWorkspaceState" -->
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.PendChangesOptions">
            <summary>
            Options for the PendChanges Web Service.
            Will be actually sent across the wire as an integer value, rather than a serialized Enum.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.PendChangesOptions.None">
            <summary>
            The client did not specify any options
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.PendChangesOptions.GetLatestOnCheckout">
            <summary>
            The client requests to synchronize to the latest version of an item on Checkout (PendingEdit).
            In this case the server will download the latest version of the file
            to the client.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.PendChangesOptions.Silent">
            <summary>
            This instructs the server not to return GetOps for the operation. In the case when GetLatestOnCheckout
            and Silent are enabled, you may still get back a GetOp if you need to GetLatest.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.PendChangesOptions.ForceCheckOutLocalVersion">
            <summary>
            This instructs the server to force "CheckOut Local Version" behavior.
            This flag will supercede the GetLatestOnCheckout flag above if both are specified.
            This flag will supercede the GetLatestOnCheckout team project annotation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.PendChangesOptions.SuppressItemNotFoundFailures">
            <summary>
            This flag instructs the client not to report any Failures returned by the server of type
            ItemNotFoundException as NonFatalErrors.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.ConflictOptions">
            <summary>
            Contains options the server wants to communicate to the client about the conflict
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ConflictOptions.DisallowAutoMerge">
            <summary>
            This option informs the client, that it should disallow auto-merge.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ConflictOptions.PendingLocalVersionMismatch">
            <summary>
            Indicates that this conflict is due to a local / pending version mismatch.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ConflictOptions.LocalChangesRedundantInTargetVersion">
            <summary>
            Currently only used for version conflicts. This bit is set if the local
            pending changes are redundant (can not apply) to the version being moved to.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.RollbackOptions">
            <summary>
            Enum of rollback options to be used on the client / server. Marshalled to the server as an integer
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RollbackOptions.None">
            <summary>
            The client did not specify any options
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RollbackOptions.ToVersion">
            <summary>
            Indicates that the client asked for a certain version to be latest
            In this case the server will download the latest version of the file
            to the client.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RollbackOptions.Silent">
            <summary>
            Indicates to the server not to return back any Get operations or conflict
            information
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RollbackOptions.KeepMergeHistory">
            <summary>
            Do not rollback merge history with this rollback operation.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.RollbackOptions.NoAutoResolve">
            <summary>
            Used only on the client. Instructs the client not to try to auto resolve conflicts
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.ValidateCheckInOwner">
            <summary>
            Make sure that the identity specified as the checkin owner refers to a valid user
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.SuppressEvent">
            <summary>
            Suppress events for this checkin
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.DeleteShelveset">
            <summary>
            Delete the shelveset after a successful submission into the repository
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.OverrideGatedCheckIn">
            <summary>
            Bypass gated checkin validation for this checkin
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.QueueBuildForGatedCheckIn">
            <summary>
            Automatically queue the build for gated checkin validation if possible
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.AllContentUploaded">
            <summary>
            The server will permit a call to CheckIn with a null or empty list of items to check in,
            (checkin /all) even if there is a change with the edit bit set.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.AllowUnchangedContent">
            <summary>
            t=The server will permit items which have a pending edit to be checked in even if the content
            hasn't changed instead of undoing the change (default)
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.NoAutoResolve">
            <summary>
            Used only on the client. Instructs the client not to try to auto resolve conflicts
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInOptions2.NoConflictsCheckForGatedCheckIn">
            <summary>
            This flag only affects the server's behavior when the server paths being checked in affect
            a gated build definition. In this case the server will ordinarily call CheckPendingChanges
            before shelving the workspace and throwing back a GatedCheckinException. If the call
            to CheckPendingChanges results in the creation of conflicts, then no GatedCheckinException
            will be thrown; instead CheckIn fails and informs the user that they need to resolve their
            conflicts.
             
            If this flag is specified, this call to CheckPendingChanges is skipped. This allows the
            gated checkin shelveset to be created even when the items being checked in are not at
            latest, for example. The build agent workspace will unshelve the shelveset and attempt
            to resolve conflicts at that time.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.CheckInState">
            <summary>
            represents checkin state.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInState.Unknown">
            <summary>
            default initial state.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInState.Paging">
            <summary>
            Checkin is being paged up to the server.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInState.Committed">
            <summary>
            checkin operation was commited.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.CheckInState.Failed">
            <summary>
            CheckIn() did not throw an exception,
            but nothing was checked in (e.g. all pending changes undone)
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.ProxyFlags">
            <summary>
            Flags for proxy records
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ProxyFlags.None">
            <summary>
            No flags specified
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ProxyFlags.SiteDefault">
            <summary>
            THe proxy is a site default
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ProxyFlags.GlobalDefault">
            <summary>
            The proxy is a global default
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.QueryMergesExtendedOptions">
            <summary>
            Options to pass to the query merges extended method
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.QueryMergesExtendedOptions.None">
            <summary>
            No options specified
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.QueryMergesExtendedOptions.QueryRenames">
            <summary>
            Specifies the query should only query sources of a rename
            Specifies the query should only query source / targets of a rename
            The default is to query sources of a merge
            The default is to query source / targets of a merge
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.QueryMergesExtendedOptions.IncludeDownloadInfo">
            <summary>
            Include download info.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.QueryMergesExtendedOptions.QueryTargetMerges">
            <summary>
            Specifies that the query should query targets for a given source item.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.ShelvesetVersions">
            <summary>
            An enum defining some constant shelveset version numbers
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.PendingChangePropertyVersions">
            <summary>
            The valid versions for the SetPendingChangeProperty method
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.PendingChangePropertyVersions.NonVersioned">
            <summary>
            When the pending change is checked in, it will be transitioned to a VersionedItem property
            not associated with a specific version
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.PendingChangePropertyVersions.SpecificVersion">
            <summary>
            When the pending change is checked in, it will be transitioned to a VersionedItem Property
            associated with the version created in the changeset
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ChangePendedFlags.Unknown">
            <summary>
            Server does not support this mechanism.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ChangePendedFlags.None">
            <summary>
            No flags were set.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.ChangePendedFlags.WorkingFolderMappingsUpdated">
            <summary>
            One or more working folders was updated in this call.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceLocation">
            <summary>
            Indicates the location where data (pending changes, local versions) for this workspace are stored.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceLocation.Server">
            <summary>
            Indicates a server-side (traditional) workspace, backwards compatible with TFS 2005-2010.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceLocation.Local">
            <summary>
            Indicates a local workspace, with pending changes and local version data stored on the client.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceOptions.SetFileTimeToCheckin">
            <summary>
            Sets the last modified time for newly downloaded files to checkin time.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.LocalPendingChangeFlags.Executable">
            <summary>
            Represents a property pending change that sets the Unix execute bit on an item.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.LocalPendingChangeFlags.NotExecutable">
            <summary>
            Represents a property pending change that unsets the Unix execute bit on an item.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.VersionedItemPermissions">
            <summary>
            Defines the permission bitmasks used in the database
            for versioned items (files/folders)
             
            Used in tblPermission.GrantedPermission and
            tblPermission.RevokedPermission
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.VersionedItemPermissions.Merge">
            <summary>
            Determines whether a given user has permissions to perform merge operations.
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.VersionedItemPermissions.ManageBranch">
            <summary>
            Determines whether a given user has permissions to manage branch objects.
            manage includes the following operations: create a branch object, update
            branch object metadata, destroy branch objects.
            NOTE THAT THIS PERMISSION DOES NOT APPLY TO REGULAR BRANCHES.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.GlobalPermissions">
            <summary>
            Defines the permission bitmasks used in the database
            for system-wide permissions
             
            Used in tblPermission.GrantedPermission and
            tblPermission.RevokedPermission
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath">
            <summary>
            A utility class for manipulating Hatteras items specifications. It contains routines
            for parsing, formatting, validating, etc.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsServerItem(System.String)">
            <summary>
            Returns true if the specified string appears to be a server item (as opposed to a local
            item). The path is not required to be canonicalized. All server item paths are absolute.
            </summary>
            <param name="path">Path to check.</param>
            <returns>true if the string is a server item.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsValidFolderName(System.String,System.String@)">
            <summary>
            Checks if the specified folder name is valid. By folder name, we are refering to a single folder, not the
            full path.
             
            Wild cards are not allowed here.
             
            For example, a folder name in the full path below could be A, B, or C
             
            $/A/B/C/file.txt
             
            </summary>
            <param name="name">the folder name to validate</param>
            <param name="error">the error string if the folder name is invalid; otherwise, null</param>
            <returns>true if the folder name is valid</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetCommonParent(System.String,System.String)">
            <summary>
            Given two server paths, return the farthest item from $/ that parents both items.
            If one of the two paths is null, the other will be returned.
            If both paths are null, an ArgumentNullException is thrown.
            </summary>
            <param name="path1">A server path starting with $/</param>
            <param name="path2">A server path starting with $/</param>
            <returns>The farthest item from $/ that parents both path1 and path2.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFullPath(System.String)">
            <summary>
            Canonicalize the specified items specification and return the string. This will do things
            like remove ..'s, convert \ to /, etc. It throws an InvalidPathException if the item
            is the empty string, contains invalid characters including an embedded dollar sign
            (wildcards are not considered illegal in this check), or is too long.
            </summary>
            <param name="item">Item specification to canonicalize</param>
            <returns>Canonical string form of the item.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFullPath(System.String,System.Boolean)">
            <summary>
            Canonicalize the specified items specification and return the string. This will do things
            like remove ..'s, convert \ to /, etc. It throws an InvalidPathException if the item
            is the empty string, contains invalid characters including an embedded dollar sign
            (wildcards are not considered illegal in this check), or is too long.
            </summary>
            <param name="item">Item specification to canonicalize</param>
            <param name="checkReservedCharacters">boolean flag whether to validate
            version control reserved characters or not.</param>
            <returns>Canonical string form of the item.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFullPath(System.String,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Canonicalize the specified items specification and return the string. This will do things
            like remove ..'s, convert \ to /, etc. It throws an InvalidPathException if the item
            is the empty string, contains invalid characters including an embedded dollar sign
            (wildcards are not considered illegal in this check), or is too long.
            </summary>
            <param name="item">Item specification to canonicalize</param>
            <returns>Canonical string form of the item.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFullPath(System.String,System.Boolean,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Canonicalize the specified items specification and return the string. This will do things
            like remove ..'s, convert \ to /, etc. It throws an InvalidPathException if the item
            is the empty string, contains invalid characters including an embedded dollar sign
            (wildcards are not considered illegal in this check), or is too long.
            </summary>
            <param name="item">Item specification to canonicalize</param>
            <param name="checkReservedCharacters">boolean flag whether to validate
            version control reserved characters or not.</param>
            <returns>Canonical string form of the item.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsCanonicalizedPath(System.String,System.Boolean)">
            <summary>
            Returns true if the path is canonicalized. The path must not contain a $
            at the beginning of a path part, or any illegal characters.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsCanonicalizedPath(System.String,System.Boolean,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Returns true if the path is canonicalized. The path must not contain a $
            at the beginning of a path part, or any illegal characters.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsCanonicalizedPathPart(System.String,System.Int32,System.Int32,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Helper method for IsCanonicalizedPath.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsValidPath(System.String)">
            <summary>
            Returns true if path is valid; false otherwise
            </summary>
            <param name="serverItem"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsValidPath(System.String,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Returns true if path is valid; false otherwise
            </summary>
            <param name="serverItem"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.ValidatePath(System.String)">
            <summary>
            Validate the server path. Wildcards are not allowed
            Exception is thrown if invalid
            </summary>
            <param name="serverItem"></param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.ValidatePath(System.String,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Validate the server path. Wildcards are not allowed
            Exception is thrown if invalid
            </summary>
            <param name="serverItem"></param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CheckForIllegalDollarInPath(System.String)">
            <summary>
            This method throws an InvalidPathException if there is a dollar sign ('$') that follows
            a path separator ('/') since no part of a path is allowed to start with a dollar sign.
            </summary>
            <param name="path">the path to check (path must already be canonicalized)</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Combine(System.String,System.String)">
            <summary>
            Return a fully qualified and canonicalized path constructed from parent and relative. If
            relative is already a fully qualified path, just return a canonicalized copy of relative.
            If relative is not fully qualified, return the path that results from appending relative
            to parent and canonicalizing the result. It is assumed that parent is already
            canonicalized.
            </summary>
            <param name="parent">The parent path to append relative to (if relative is not fully qualified).</param>
            <param name="relative">The potentially partial path to qualify relative to parent.</param>
            <returns>The combined, canonicalized path.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Combine(System.String,System.String,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Return a fully qualified and canonicalized path constructed from parent and relative. If
            relative is already a fully qualified path, just return a canonicalized copy of relative.
            If relative is not fully qualified, return the path that results from appending relative
            to parent and canonicalizing the result. It is assumed that parent is already
            canonicalized.
            </summary>
            <param name="parent">The parent path to append relative to (if relative is not fully qualified).</param>
            <param name="relative">The potentially partial path to qualify relative to parent.</param>
            <returns>The combined, canonicalized path.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Parse(System.String,System.String@,System.String@)">
            <summary>
            Parse a canonicalized item spec into a parent folder and the last path component. If
            "$/" is passed, the parent is "$/" and the name is "".
            </summary>
            <param name="item">The item to parse into a parent path and a name.</param>
            <param name="parent">The parent path returned.</param>
            <param name="name">The name returned.</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFolderName(System.String)">
            <summary>
            Get the parent folder for the specified canonicalized path. If "$/" is passed, "$/" is
            returned as the parent.
            </summary>
            <param name="item">Path to get the parent folder for.</param>
            <returns>The parent folder.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFolderDepth(System.String)">
            <summary>
             Returns the number of levels of path elements in this spec.
             $/ will return 0
             $/abc will return 1
             $/abc/efg will return 2, and so on...
            </summary>
            <param name="item"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFolderDepth(System.String,System.Int32)">
            <summary>
             Returns the number of levels of path elements in this spec up to the maximum depth.
             $/ will return 0
             $/abc will return 1
             $/abc/efg will return 2, and so on...
            </summary>
            <param name="item"></param>
            <param name="maxDepth"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetFileName(System.String,System.Boolean)">
            <summary>
            Return the last path component from a canonicalized path. For example, passing "$/abc/efg"
            would return "efg". Passing "$/" will return "".
            </summary>
            <param name="item"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetExtension(System.String)">
            <summary>
            Get the filename extension from a hatteras spec
            </summary>
            <param name="item"></param>
            <returns>The extension, which does not contain the period</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetTempFileName(System.String,System.Int32)">
            <summary>
            Generate the temporary local file name for the server item path.
            This attempts to generate a file with the same name in the temporary directory.
            If the file already exists it will try a version specific name if a version was
            specified. If we could not generate a suitable path we add a retry and attempt to
            create a unique path.
            </summary>
            <param name="item">Path to the the item we want the temporary name for</param>
            <param name="version">Version of the item, 0 for version independent</param>
            <returns>temporary file name</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetTempFileName(System.String,System.String)">
            <summary>
            Generate the temporary local file name for the server item path.
            This attempts to generate a file with the same name in the temporary directory.
            If the file already exists it will try a version specific name if a version was
            specified. If we could not generate a suitable path we add a retry and attempt to
            create a unique path.
            </summary>
            <param name="item">Path to the the item we want the temporary name for</param>
            <param name="version">Optional version information of the item, empty for version independent</param>
            <returns>temporary file name</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.RecentFileExists(System.String,System.String@,System.DateTime@)">
            <summary>
            Utility to check for a file existing at a given path. If it exists but is old, we delete it and
            return false if successful.
            </summary>
            <param name="path"></param>
            <param name="currentOldestFile">oldest file found so far in processing</param>
            <param name="currentOldestTime">the creation time for the oldest file found so far</param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetTeamProjectName(System.String,System.Boolean,System.Boolean)">
            <summary>
            Return the top level "team project" given a server item.
            </summary>
            <param name="item">A fully qualified server item</param>
            <returns>The top level project from the Hatteras spec.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetTeamProject(System.String,System.Boolean,System.Boolean)">
            <summary>
            Return the top level "team project" folder given a server item.
            </summary>
            <param name="item">A fully qualified server item</param>
            <returns>The top level project from the Hatteras spec.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsTeamProject(System.String)">
            <summary>
            Return whether the passed server item is a team project ($/foo, $/bar, not $/abc/efg nor $/)
            </summary>
            <param name="item">A fully qualified server item</param>
            <returns>whether the item is a team project.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.MakeRelative(System.String,System.String)">
            <summary>
            Given a path and folder, return the path relative to the folder. If the path is not
            under the folder the path is returned unmodified. Both path and folder are assumed to be
            in canonical form. Examples:
            MakeRelative(@"$/src/project/foo.cpp", @"$/src") -> @"project/foo.cpp"
            MakeRelative(@"$/src/project/foo.cpp", @"$/specs") -> @"$/src/project/foo.cpp"
            MakeRelative(@"$/src/project/foo.cpp", @"$/src/proj") -> @"$/src/project/foo.cpp"
            </summary>
            <param name="item">Path to make relative.</param>
            <param name="folder">Folder to make it relative to.</param>
            <returns>Relative path.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.GetRelativeStartIndex(System.String,System.String)">
            <summary>
            Given a path and folder, return the index of the substring in path relative to the
            folder. If the path is not under the folder then 0 is returned (meaning all of
            path).
            MakeRelative(@"$/src/project/foo.cpp", @"$/src") -> 6
            MakeRelative(@"$/src/project/foo.cpp", @"$/specs") -> 0
            MakeRelative(@"$/src/project/foo.cpp", @"$/src/proj") -> 0
            </summary>
            <param name="path">Path to make relative.</param>
            <param name="folder">Folder to make it relative to.</param>
            <returns>Index of relative path part in path</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.MakeRelative(System.String,System.String,System.Boolean)">
            <summary>
            Given a path and folder, return the path relative to the folder. If the path is not
            under the folder and the recursive parameter is false, then path is returned unmodified.
            Otherwise, the method iteratively each parent directory in the specified folder and tries
            to make item relative. Both path and folder are assumed to be in canonical form.
            Examples:
            MakeRelative(@"$/src/project/foo.cpp", @"$/src",false) -> @"project/foo.cpp"
            MakeRelative(@"$/src/project/foo.cpp", @"$/specs",false) -> @"$/src/project/foo.cpp"
            MakeRelative(@"$/src/project/foo.cpp", @"$/src/proj",false) -> @"$/src/project/foo.cpp"
            MakeRelative(@"$/src/project/foo.cpp", @"$/src", true) -> @"project/foo.cpp"
            MakeRelative(@"$/src/project/foo.cpp", @"$/specs", true) -> @"../src/project/foo.cpp"
            MakeRelative(@"$/src/project/foo.cpp", @"$/src/proj", true) -> @"../project/foo.cpp"
            </summary>
            <param name="item">Path to make relative.</param>
            <param name="folder">Folder to make it relative to.</param>
            <param name="recursive">Flag to indicate if method should relativize to folder's parents.</param>
            <returns>Relative path.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Combine(System.String,System.String,System.String)">
            <summary>
            Given a base local path, base server path and target local path compute the target server
            path. This is done by generating the relative path for the local paths, converting that
            to a server relative path and combining it with the base server path.
             
            Note: This method will throw an invalid path exception if it cannot generate the target
                  server path. Possible reasons for this include:
                  1) local paths are on different drives and are not relative.
                  2) combining the calculated relative path with the base server path results in a
                     "negative folder depth" (i.e. directory above root, $/).
            Examples:
            Combine(@"c:\myproj\abc\efg", @"c:\myproj\abc\blech", @"$/foo") -> @"$/blech"
            Combine(@"c:\myproj\abc\efg", @"c:\myproj\abc\efg\x", @"$/bar") -> @"$/efg/x"
            Combine(@"c:\myproj\abc\efg", @"c:\yourproj\abc\efg\x", @"$/bar") -> @"InvalidPathException"
            Combine(@"c:\myproj\abc\efg", @"c:\yourproj\abc\efg", @"$/myproj/abc/efg") -> @"$/yourproj/abc/efg"
            </summary>
            <param name="baseLocalPath">source item's local path.</param>
            <param name="targetLocalPath">target item's local path.</param>
            <param name="baseServerPath">source item's server path.</param>
            <returns>target item's absolute server path.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Combine(System.String,System.String,System.String,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Given a base local path, base server path and target local path compute the target server
            path. This is done by generating the relative path for the local paths, converting that
            to a server relative path and combining it with the base server path.
             
            Note: This method will throw an invalid path exception if it cannot generate the target
                  server path. Possible reasons for this include:
                  1) local paths are on different drives and are not relative.
                  2) combining the calculated relative path with the base server path results in a
                     "negative folder depth" (i.e. directory above root, $/).
            Examples:
            Combine(@"c:\myproj\abc\efg", @"c:\myproj\abc\blech", @"$/foo") -> @"$/blech"
            Combine(@"c:\myproj\abc\efg", @"c:\myproj\abc\efg\x", @"$/bar") -> @"$/efg/x"
            Combine(@"c:\myproj\abc\efg", @"c:\yourproj\abc\efg\x", @"$/bar") -> @"InvalidPathException"
            Combine(@"c:\myproj\abc\efg", @"c:\yourproj\abc\efg", @"$/myproj/abc/efg") -> @"$/yourproj/abc/efg"
            </summary>
            <param name="baseLocalPath">source item's local path.</param>
            <param name="targetLocalPath">target item's local path.</param>
            <param name="baseServerPath">source item's server path.</param>
            <returns>target item's absolute server path.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Equals(System.String,System.String)">
            <summary>
            Compare two file specs for equality.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>Return true if the items match.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Compare(System.String,System.String)">
            <summary>
            Compare two Version Control item paths.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Compare(System.String,System.String,System.Int32,System.Int32)">
            <summary>
            Compare two Version Control item paths.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <param name="item1Length">Length of the first item to compare.</param>
            <param name="item2Length">Length of the second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CompareUI(System.String,System.String)">
            <summary>
            Compare two Version Control item paths for display (culture sensitive and case insensitive).
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CompareUI(System.String,System.String,System.Int32,System.Int32)">
            <summary>
            Compare two Version Control item paths for display (culture sensitive and case insensitive).
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <param name="item1Length">Length of the first item to compare.</param>
            <param name="item2Length">Length of the second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CompareCaseSensitive(System.String,System.String)">
            <summary>
            Compare two Version Control item paths in a case-insensitive fashion on every portion
            of the path except for the last item in the path. The last item in the path is compared
            in a case-sensitive fashion.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.EqualsCaseSensitive(System.String,System.String)">
            <summary>
            Checking two file paths for equality. Return whether they are equal in a case-insensitive
            fashion on every portion of the path except for the last item in the path. The last item
            in the path is compared in a case-sensitive fashion.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>true if and only if they are equal in a case-sensitive comparison</returns>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.FullPathComparer">
            <summary>
            Return a string comparer for fully-specified server paths.
            </summary>
            <value></value>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.PartialPathComparer">
            <summary>
            Return a string comparer for fully-specified server paths.
            </summary>
            <value></value>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CompareTopDown(System.String,System.String)">
            <summary>
            Compare two Version Control paths and return their relative ordering. This is like Compare
            except that it sorts a grandchildren after children.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CompareTopDownUI(System.String,System.String)">
            <summary>
            Compare two Version Control paths and returns their relative ordering for display (culture
            and case insensitive). This is like Compare except that it sorts a grandchildren after children.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CompareBottomUp(System.String,System.String)">
            <summary>
            Compare two Version Control paths and return their relative ordering. This is like Compare
            except that it sorts a folder after its children and the children of its peers. This
            results in a "bottom up" ordering of the tree that is very convenient for deleting.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.CompareBottomUpUI(System.String,System.String)">
            <summary>
            Compare two Version Control paths and return their relative ordering for display (culture
            and case insensitive). This is like Compare except that it sorts a folder after its children
            and the children of its peers. This results in a "bottom up" ordering of the tree that is
            very convenient for deleting.
            </summary>
            <param name="item1">First item to compare.</param>
            <param name="item2">Second item to compare.</param>
            <returns>0 if they are equal, greater than 0 if the first is greater and less than 0 if the second is greater.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsSubItem(System.String,System.String)">
            <summary>
            Return true if the item is equal to or is under (in the heirarchy) parent.
            </summary>
            <param name="item">Item to check.</param>
            <param name="parent">Parent to check against.</param>
            <returns>true if item is equal or under parent.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsImmediateChild(System.String,System.String)">
            <summary>
            Returns true if item is an immediate child of parent
            </summary>
            <param name="item">Item to check</param>
            <param name="parent">Parent to check against</param>
            <returns>true if item is an immediate child of parent</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.IsWildcard(System.String)">
            <summary>
            Determine if the last component of the specified path contains a wildcard character. The
            path may or may not be fully qualified.
            </summary>
            <param name="path">The path to check.</param>
            <returns>true if the path contains a wildcard.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.Match(System.String,System.String,System.String,System.Boolean)">
            <summary>
            Compare an item to see if it matches a folder and a name that may be a wildcard. If
            recursive is true then any matching item under the matchFolder will match. Wildcard
            matching is done using the NT filesystem matching rules.
            </summary>
            <param name="item">Item to match</param>
            <param name="matchFolder">Folder to match against.</param>
            <param name="matchPattern">Wildcard to match against.</param>
            <param name="recursive">Whether or not the match occurs recursively.</param>
            <returns>true if the item matches, false otherwise.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.MatchFileName(System.String,System.String)">
            <summary>
            Match just the final component of the specidied item to the specified wildcard.
            </summary>
            <param name="item">Fully qualified path to match.</param>
            <param name="matchPattern">Wildcard to match to.</param>
            <returns>true if the wildcard matches.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.PrependRootIfNeeded(System.String)">
            <summary>
            Utility method to prepend the root ($/) to a folder - most useful for getting the folder
            of a team project if you only have his name
            </summary>
            <param name="folder">folder path that may or may not start with $/ already</param>
            <returns>folder path starting with root</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.PrependRootIfNeeded(System.String,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Utility method to prepend the root ($/) to a folder - most useful for getting the folder
            of a team project if you only have his name
            </summary>
            <param name="folder">folder path that may or may not start with $/ already</param>
            <returns>folder path starting with root</returns>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.StringComparer">
            <summary>
            This is a property for comparison of server paths in instances like a Dictionary hash
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.DepthFirstTreeComparer">
            <summary>
            This comparer can be used to sort version control paths depth-first, like a tree traversal.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.VersionControlPath.VersionControlDepthFirstTreeComparer">
            <summary>
            Sorts version control paths in the form of a depth-first tree traversal.
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil">
            <summary>
            Miscellaneous utility class used to congregate methods until a logical
            grouping becomes obvious in which case it will be moved elsewhere
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.FormatWorkingFolderText(System.Boolean,System.String,System.String)">
            <summary>
            Format the textual command line representation of a working folder setting.
            </summary>
            <param name="cloaked">true if the item is cloaked</param>
            <param name="serverItem">server item</param>
            <param name="localFolder">local folder</param>
            <returns>a formatted string representation of a working folder mapping</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetFullPath(System.String)">
            <summary>
            Canonicalizes the server or local path by calling the appropriate GetFullPath() for the item.
            </summary>
            <param name="item">the item to canonicalize</param>
            <returns>the canonicalized item</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetFullPath(System.String,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Canonicalizes the server or local path by calling the appropriate GetFullPath() for the item.
            </summary>
            <param name="item">the item to canonicalize</param>
            <returns>the canonicalized item</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetFullPaths(System.String[])">
            <summary>
            Canonicalizes each server or local path by calling the appropriate GetFullPath() for each item.
            </summary>
            <param name="items">the items to canonicalize</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetFullPaths(System.String[],Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Canonicalizes each server or local path by calling the appropriate GetFullPath() for each item.
            </summary>
            <param name="items">the items to canonicalize</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.IsLegalComment(System.String,System.Int32)">
            <summary>
            Returns true if the comment is of appropriate length.
            </summary>
            <param name="comment">Comment to check</param>
            <param name="maxLength">Comment's maximum allowed length</param>
            <returns>true if the comment is legal; false otherwise</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetOrCreateSubKey(Microsoft.Win32.RegistryKey,System.String)">
            <summary>
            Gets the specified registry subkey and create it if it doesn't exist.
            </summary>
            <param name="parent">parent of key. Can be null.</param>
            <param name="keyName">key to get or create</param>
            <returns>retrieved key or null</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetSubKey(Microsoft.Win32.RegistryKey,System.String,System.Boolean)">
            <summary>
            Gets the specified registry subkey.
            </summary>
            <param name="parent">parent of key. Can be null.</param>
            <param name="keyName">key to get</param>
            <param name="writable">true to open with write access</param>
            <returns>retrieved key or null</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetLastWriteTime(System.String)">
            <summary>
            Returns file's or directories last write time.
            This method behaves exactly like File.GetLastWriteTime, but instead of throwing it returns
            default(DateTime) in case of error.
            </summary>
            <param name="localPath">File local path.</param>
            <returns>Last write time of the file or default(DateTime) if GetLastWriteTime failed</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetWorkstationSiteName">
            <summary>
            Gets the site name for the workstation by querying Active Directory.
            This is a blocking call.
            </summary>
            <returns>The site name returned from Active Directory.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.GetSiteName(System.String)">
            <summary>
            Retrieves the site name for the specified host or IP address.
            </summary>
            <param name="hostOrIP">The host or IP address to find the site for.</param>
            <returns>The site name if found, null otherwise</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.TranslatePermission(System.Type,System.String[],System.Int32)">
            <summary>
            This method is used to translate a set of permission values into the
            integer that it represents.
             
            If one of the values is not a valid permission an argument exception
            is thrown. The message gives details on the bad value and the set of
            valid values. The ParamName property of the exception also contains
            the bad value.
            </summary>
            <param name="enumClass">The class of the enum that has the valid permissions</param>
            <param name="array">Set of values to be converted to an integer</param>
            <param name="allPermissions">The value for all permissions (used when * is given for a value)</param>
            <returns>The integer value of all the pemrissions combined</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.CheckItem(System.String@,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Validates the item as a server or local path
            </summary>
            <param name="item"></param>
            <param name="parameterName"></param>
            <param name="allowNull"></param>
            <param name="allowWildcards"></param>
            <param name="allow8Dot3Paths"></param>
            <param name="checkReservedCharacters"></param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.CheckItem(System.String@,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
            Validates the item as a server or local path
            </summary>
            <param name="item"></param>
            <param name="parameterName"></param>
            <param name="allowNull"></param>
            <param name="allowWildcards"></param>
            <param name="allow8Dot3Paths"></param>
            <param name="checkReservedCharacters"></param>
            <param name="maxServerPathLength"></param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.CheckServerItem(System.String@,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
             
            </summary>
            <param name="item"></param>
            <param name="parameterName"></param>
            <param name="allowNull"></param>
            <param name="allowWildcards"></param>
            <param name="allow8Dot3Paths"></param>
            <param name="checkReservedCharacters"></param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.CheckServerItem(System.String@,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,Microsoft.TeamFoundation.VersionControl.Common.PathLength)">
            <summary>
             
            </summary>
            <param name="item"></param>
            <param name="parameterName"></param>
            <param name="allowNull"></param>
            <param name="allowWildcards"></param>
            <param name="allow8Dot3Paths"></param>
            <param name="checkReservedCharacters"></param>
            <param name="maxServerPathLength"></param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.Check8Dot3Aliases(System.String)">
            <summary>
            Checks whether the given item contains any 8.3 aliases and throws if it does
            </summary>
            <param name="item"></param>
            <param name="parameterName"></param>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.VersionControlUtil.s_8Dot3Checker">
            <summary>
            Checks that the base name portion of the file ends with ~[0-9]\ or ~[0-9]/ or ~[0-9]. or ~[0-9]
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.ItemValidationError">
            <summary>
            Describes item validation errors
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecCommon.ParseSingleSpec(Microsoft.TeamFoundation.VersionControl.Common.VersionSpecFactory,System.String,System.String,System.String)">
            <summary>
            Given a version string (without a range specifier), convert it to a
            VersionSpec object.
            </summary>
            <param name="versionSpec">version specification to encapsulate</param>
            <param name="userData">An object to be passed to CreateVersionSpec if the versionspec is a
            WorkspaceVersionSpec, and the versionspec string does not contain a workspace owner.</param>
            <returns>The version specification encapsulated in an object.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecCommon.Parse(Microsoft.TeamFoundation.VersionControl.Common.VersionSpecFactory,System.String,System.String,System.String)">
            <summary>
            Given a version string convert it to an array VersionSpec objects.
            If the version specification did not contain a range specifier then
            this will return an array of size one, otherwise an array of size two.
            </summary>
            <param name="versionSpec">version specification to encapsulate</param>
            <param name="userData">An object to be passed to CreateVersionSpec if the versionspec is a
            WorkspaceVersionSpec, and the versionspec string does not contain a workspace owner.</param>
            <returns>The version specification(s) encapsulated in an array.</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecCommon.ParseChangesetNumber(Microsoft.TeamFoundation.VersionControl.Common.VersionSpecFactory,System.String)">
            <summary>
            Parse the string as a changeset number. Throws an exception if the changeset number is not
            a valid changeset integer.
            </summary>
            <param name="factory">Factory to use to throw an exception, if necessary</param>
            <param name="changesetId">The changeset ID in the form of a string</param>
            <returns>The changeset ID in the form of an integer</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecCommon.ValidateNumber(Microsoft.TeamFoundation.VersionControl.Common.VersionSpecFactory,System.Int32)">
            <summary>
            Helper method to validate a changeset integer.
            </summary>
            <param name="factory">Factory to use to throw an exception, if necessary</param>
            <param name="changeset">Changeset ID to validate</param>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecCommon.RangeSeparator">
            <summary>
            Character used to separate the components of a version specification range
            </summary>
        </member>
        <member name="F:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecCommon.ChangesetIdentifier">
            <summary>
            Characters used to identify different version spec types.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecFactory.CreateVersionSpec(Microsoft.TeamFoundation.VersionControl.Common.VersionSpecType,System.String,System.Object[])">
            <summary>
            Given a version spec type, creates a VersionSpec instance for the server or client
            (depending on whether this instance is a client or server factory).
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.VersionSpecFactory.ThrowInvalidVersionSpecException(System.String)">
            <summary>
            Throws an InvalidVersionSpecException for either the server or client (depending
            on whether this instance is a client or server factory).
            </summary>
        </member>
        <member name="T:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec">
            <summary>
            A utility class for manipulating Hatteras workspace specifications. It contains routines
            for parsing, formatting, validating, etc.
            </summary>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.Parse(System.String,System.String,System.String@,System.String@)">
             <summary>
             Parse a workspace spec of the form Workspace;user and return the two parts. If the
             user name is not specified (or fully qualified) in the workspace specification,
             use information from the defaultUser argument.
             
             NOTE: This method may
                   qualified username (e.g. it lacked the domain\ prefix), this
                   routine DOES NOT attempt to provide the missing pieces. The
                   caller is reponsible for doing so.
              
             </summary>
             <param name="spec">the workspace spec to parse</param>
             <param name="defaultUser">the fully qualified default user</param>
             <param name="workspaceName">returned workspace name</param>
             <param name="workspaceOwner">returned workspace owner</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.Parse(System.String,System.String,System.String,System.String@,System.String@,System.String@)">
             <summary>
             Parse a workspace spec of the form Workspace;user and return the two parts. If the
             user name is not specified (or fully qualified) in the workspace specification,
             use information from the defaultUser arguments.
             
             NOTE: This method may
                   qualified username (e.g. it lacked the domain\ prefix), this
                   routine DOES NOT attempt to provide the missing pieces. The
                   caller is reponsible for doing so.
              
             </summary>
             <param name="spec">the workspace spec to parse</param>
             <param name="defaultUser">the fully qualified default user</param>
             <param name="defaultUserUnqiue">the fully qualified default user's unique name</param>
             <param name="workspaceName">returned workspace name</param>
             <param name="workspaceOwner">returned workspace owner</param>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.Combine(System.String,System.String)">
            <summary>
            Builds the qualified workspace name from the separate workspace and owner parts.
            </summary>
            <param name="workspace">workspace name</param>
            <param name="owner">workspace owner</param>
            <returns>the qualified workspace name</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.Combine(System.String,System.String,System.String)">
            <summary>
            Builds the fully qualified workspace name with owner disambiguation from the separate workspace
            and owner parts.
            </summary>
            <param name="workspace">workspace name</param>
            <param name="ownerDisplay">workspace owner display name</param>
            <param name="ownerUnique">workspace owner unique name</param>
            <returns>the fully qualified workspace name</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.IsLegalName(System.String)">
            <summary>
            Checks to see if the workspace name consists only of legal characters and is less than the maximum
            length and doesn't contain a workspace separator.
            </summary>
            <param name="workspaceName">workspace name to check</param>
            <returns>true if the workspace name is legal; false otherwise</returns>
        </member>
        <member name="M:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.SanitizeProposedName(System.String)">
            <summary>
            Given a proposed name for a shelveset or workspace, truncates it at the
            maximum length for shelveset and workspace names, and removes illegal characters.
             
            Name validation is enforced by the server. The sanitization process
            for cleaning up a name is current as of the version of this object model.
             
            While unlikely, it is possible that if this method is used with a future
            version of Team Foundation Server, that the name generated may not be legal
            due to a change in the rules for workspace and shelveset names.
            </summary>
            <param name="proposedName">Proposed name for the workspace or shelveset</param>
            <returns>A sanitized name for the workspace or shelveset</returns>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.Separator">
            <summary>
            Returns the separator character for WorkspaceSpec.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.OwnerDisambiguationSeparatorStart">
            <summary>
            Returns the start string for the owner disambiguation separator.
            </summary>
        </member>
        <member name="P:Microsoft.TeamFoundation.VersionControl.Common.WorkspaceSpec.OwnerDisambiguationSeparatorEnd">
            <summary>
            Returns the end string for the owner disambiguation separator.
            </summary>
        </member>
    </members>
</doc>