Skip to content

Commit

Permalink
Merge dev15.9.x to dev16.0.x (#4770)
Browse files Browse the repository at this point in the history
Merge dev15.9.x to dev16.0.x
  • Loading branch information
jmarolf committed Apr 30, 2019
2 parents 63e6b41 + 8061e7b commit 144f544
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/Directory.Build.props
Expand Up @@ -54,6 +54,8 @@

<!-- Prevent vsix manifests from being copied to the shared output directory, makes build more deterministic -->
<CopyVsixManifestToOutput>false</CopyVsixManifestToOutput>

<NoWarn>$(NoWarn);NU5125</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Expand Up @@ -935,7 +935,7 @@ Namespace Microsoft.VisualStudio.Editors.PropertyPages.WPF
End Function

Public Overrides Function GetHashCode() As Integer
Throw New NotImplementedException()
Return -1937169414 + StringComparer.OrdinalIgnoreCase.GetHashCode(Value)
End Function

End Class
Expand Down Expand Up @@ -969,7 +969,10 @@ Namespace Microsoft.VisualStudio.Editors.PropertyPages.WPF
End Function

Public Overrides Function GetHashCode() As Integer
Throw New NotImplementedException()
Dim hashCode = 870297925
hashCode = hashCode * -1521134295 + MyBase.GetHashCode()
hashCode = hashCode * -1521134295 + IsEquivalentToSubMain.GetHashCode()
Return hashCode
End Function

End Class
Expand Down

0 comments on commit 144f544

Please sign in to comment.