Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix errors reported by StyleCop Analyzers #2555

Merged
merged 1 commit into from Sep 2, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -11,28 +11,28 @@ namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces
public class CommunicationException : Exception
{
/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class.
/// Initializes a new instance of the <see cref="CommunicationException" /> class.
/// </summary>
public CommunicationException()
{
}

/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
/// message.
/// </summary>
/// <param Name="message">Message describing the error.</param>
/// <param name="message">Message describing the error.</param>
public CommunicationException(string message)
: base(message)
{
}

/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
/// message and inner exception.
/// </summary>
/// <param Name="message">Message describing the error.</param>
/// <param Name="inner">Inner exception.</param>
/// <param name="message">Message describing the error.</param>
/// <param name="inner">Inner exception.</param>
public CommunicationException(string message, Exception inner)
: base(message, inner)
{
Expand Down
Expand Up @@ -9,17 +9,17 @@ namespace Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces
public interface IEnvironment
{
/// <summary>
/// Operating System architecture.
/// Gets the Operating System architecture.
/// </summary>
PlatformArchitecture Architecture { get; }

/// <summary>
/// Operating System name.
/// Gets the Operating System name.
/// </summary>
PlatformOperatingSystem OperatingSystem { get; }

/// <summary>
/// Operating System Version
/// Gets the Operating System Version
/// </summary>
string OperatingSystemVersion { get; }

Expand Down