Skip to content

Commit 5b386d7

Browse files
committed
Update dependencies.
1 parent 0d669ae commit 5b386d7

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

IDisposableAnalyzers/IDisposableAnalyzers.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,14 @@
2222
</PropertyGroup>
2323

2424
<PropertyGroup>
25-
<Version>3.3.2</Version>
25+
<Version>3.3.3</Version>
2626
<DevelopmentDependency>true</DevelopmentDependency>
2727
<Authors>Johan Larsson, milleniumbug</Authors>
2828
<Description>Analyzers and fixes for IDisposable.</Description>
2929
<PackageTags>IDisposable Roslyn Diagnostic Analyzer DotnetAnalyzers</PackageTags>
3030
<PackageReleaseNotes>
31+
3.3.3
32+
BUGFIX Infinite recursion killing VS.
3133
3.3.2
3234
BUGFIX IDISP023 don't warn on attribute.
3335
3.3.1

ValidCode.NetCore/ValidCode.NetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="IDisposableAnalyzers" Version="3.3.2" PrivateAssets="all" />
10+
<PackageReference Include="IDisposableAnalyzers" Version="3.3.3" PrivateAssets="all" />
1111
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.14.0-beta3" />
1212
</ItemGroup>
1313
</Project>

ValidCode/Recursion/Issue212.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
{
33
class Issue212
44
{
5-
public void M<T>(out T str)
5+
public T M<T>(out T str)
66
{
77
str = default;
8-
//return M(0, out str);
8+
return M(0, out str);
99
}
1010

1111
public T M<T>(int _, out T str)

ValidCode/ValidCode.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="IDisposableAnalyzers" Version="3.3.2" PrivateAssets="all" />
11+
<PackageReference Include="IDisposableAnalyzers" Version="3.3.3" PrivateAssets="all" />
1212
<PackageReference Include="Moq" Version="4.13.1" />
1313
<PackageReference Include="Ninject" Version="4.0.0-beta-0134" />
1414
<PackageReference Include="System.Reactive.Linq" Version="4.3.2" />

0 commit comments

Comments
 (0)