Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="Nerdbank.GitVersioning" PrivateAssets="All" />
<!-- RuntimeContracts is marked as 'PrivateAssets' because the dependency is erased via ILRepack. -->
<PackageReference Include="RuntimeContracts" PrivateAssets="All" GeneratePathProperty="true"/>
<PackageReference Include="ILRepack.Lib.MSBuild" PrivateAssets="All" />
<PackageReference Include="ILRepack.Lib.MSBuild.Task" PrivateAssets="All" />
</ItemGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageVersion Include="Microsoft.CodeAnalysis" Version="4.14.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
<PackageVersion Include="ILRepack.Lib.MSBuild" Version="2.1.18" />
<PackageVersion Include="ILRepack.Lib.MSBuild.Task" Version="2.0.43" />
Comment thread
SergeyTeplyakov marked this conversation as resolved.
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.6.133" />
<PackageVersion Include="RuntimeContracts" Version="0.5.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static bool isReturningNull(IOperation? operation, Compilation compilation)

}

static IMethodSymbol? findParentLocalOrLambdaSymbol(IOperation operation)
static IMethodSymbol? findParentLocalOrLambdaSymbol(IOperation? operation)
{
Comment thread
SergeyTeplyakov marked this conversation as resolved.
foreach (var parent in operation.EnumerateParentOperations())
{
Expand Down
Loading