Skip to content

Commit b0aed87

Browse files
authored
Merge pull request #2876 from sharwell/update-rc
Update to StyleCop Analyzers 1.1.1-rc.94
2 parents cef4b3a + 26bb4d5 commit b0aed87

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<add key="symreader-converter" value="https://dotnet.myget.org/F/symreader-converter/api/v3/index.json" />
77

88
<!-- Uncomment this to test unpublished builds from the AppVeyor feed. -->
9-
<!--<add key="appveyor-stylecop" value="https://ci.appveyor.com/nuget/stylecopanalyzers-jqg4a6mt0hgj" />-->
9+
<!--<add key="appveyor-stylecop" value="https://ci.appveyor.com/nuget/stylecopanalyzers" />-->
1010
</packageSources>
1111
</configuration>

StyleCop.Analyzers/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<ItemGroup>
4545
<PackageReference Include="AsyncUsageAnalyzers" Version="1.0.0-alpha003" PrivateAssets="all" />
4646
<PackageReference Include="DotNetAnalyzers.DocumentationAnalyzers" Version="1.0.0-beta.46" PrivateAssets="all" />
47-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.1-beta.61" PrivateAssets="all" />
47+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.1-rc.94" PrivateAssets="all" />
4848
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="2.11.0-beta2-63603-03" PrivateAssets="all" />
4949
</ItemGroup>
5050

StyleCop.Analyzers/StyleCop.Analyzers.Test/Verifiers/StyleCopCodeFixVerifier`2.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,13 @@ public CSharpTest(LanguageVersion? languageVersion)
171171
}
172172
}
173173

174-
public SourceFileList TestSources => TestState.Sources;
174+
public SourceFileList TestSources => this.TestState.Sources;
175175

176-
public SourceFileList FixedSources => FixedState.Sources;
176+
public SourceFileList FixedSources => this.FixedState.Sources;
177177

178-
public SourceFileCollection FixedAdditionalFiles => FixedState.AdditionalFiles;
178+
public SourceFileCollection FixedAdditionalFiles => this.FixedState.AdditionalFiles;
179179

180-
public List<DiagnosticResult> RemainingDiagnostics => FixedState.ExpectedDiagnostics;
180+
public List<DiagnosticResult> RemainingDiagnostics => this.FixedState.ExpectedDiagnostics;
181181

182182
/// <summary>
183183
/// Gets or sets the value of the <see cref="FormattingOptions.IndentationSize"/> to apply to the test

0 commit comments

Comments
 (0)