Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Shared/AssemblyFoldersEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private bool IsVersionInsideRange(Version v, RegistryKey keyPlatform)
///
/// If the string is a version
/// We check to see if the version is a valid target framework version. Meaning. It has a Maj.Minor version and may have
/// build, Build is less than or equal to 255 and there is no revisison. The reason the build number needs to be less thatn 255 is because
/// build, Build is less than or equal to 255 and there is no revision. The reason the build number needs to be less than 255 is because
/// 255 is the largest build number for a target framework version that visual studio 2010 supports. The build number is supposed to
/// represent a service pack on the 4.0 framework.
///
Expand All @@ -323,7 +323,7 @@ private bool IsVersionInsideRange(Version v, RegistryKey keyPlatform)
///
/// Since the dictionary is sorted in reverse order to generate the list to return we do the following:
/// Go through the list of dictionary entries
/// For each entry sort the list in reverse alphabeticl order and add the entries in their internal list to the listToreturn.
/// For each entry sort the list in reverse alphabetical order and add the entries in their internal list to the listToreturn.
///
/// This way we have a reverse sorted list of all of the version keys.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Microsoft.Build.Shared
internal static class MSBuildConstants
{
/// <summary>
/// The name of the property that indicates the the tools path
/// The name of the property that indicates the tools path
/// </summary>
internal const string ToolsPath = "MSBuildToolsPath";

Expand Down