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 most build warnings from the projects #4125

Merged
merged 5 commits into from
Sep 16, 2021

Commits on Sep 10, 2021

  1. Fix CS1591 warnings

    Code CS1591: Missing XML comment for publicly visible type or member.
    Nirmal4G committed Sep 10, 2021
    Configuration menu
    Copy the full SHA
    b695a6d View commit details
    Browse the repository at this point in the history
  2. Fix ILT0010 warnings

    Code ILT0010: Could not find an assembly referenced by other assembly
    
    The following warnings surfaced due to the missing assembly.
    Since, the assembly is not found, any referenced code got hit with these warnings
    
    Code ILT0005: The type from an assembly was not included in compilation, but was referenced in a method.
    Code ILT0003: The method will always throw an exception due to the missing method in an assembly.
    Nirmal4G committed Sep 10, 2021
    Configuration menu
    Copy the full SHA
    9724809 View commit details
    Browse the repository at this point in the history
  3. Fix SA1208, SA1210, SA1505 warnings

    Code SA1208: Using directive should appear before other directives.
    Code SA1210: Using directives should be ordered alphabetically by the namespaces.
    Code SA1505: An opening brace should not be followed by a blank line.
    Nirmal4G committed Sep 10, 2021
    Configuration menu
    Copy the full SHA
    445b6cd View commit details
    Browse the repository at this point in the history
  4. Update UnitTests' EditorConfig

    Add comments describing the nature of the warning.
    Nirmal4G committed Sep 10, 2021
    Configuration menu
    Copy the full SHA
    f697af0 View commit details
    Browse the repository at this point in the history
  5. Fix CS8618 warnings

    Code CS1591: Non-nullable field must contain a non-null value when exiting constructor.
    Nirmal4G committed Sep 10, 2021
    Configuration menu
    Copy the full SHA
    19c62a3 View commit details
    Browse the repository at this point in the history