Skip to content

Commit

Permalink
housekeeping: Remove unused dependency (#51)
Browse files Browse the repository at this point in the history
* Housekeeping: Reduce the versions of dependencies

* housekeeping: Remove unused dependency
  • Loading branch information
glennawatson authored May 31, 2021
1 parent 495a72e commit 363b50e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,8 @@ dotnet_diagnostic.SX1101.severity = error
dotnet_diagnostic.SX1309.severity = error
dotnet_diagnostic.SX1623.severity = none

dotnet_diagnostic.AD0001.severity = none

# C++ Files
[*.{cpp,h,in}]
curly_bracket_next_line = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,7 @@ private static bool GenerateEvents(
return true;
}

#pragma warning disable RS1024 // Compare symbols correctly
var processedItems = new HashSet<INamedTypeSymbol>(TypeDefinitionNameComparer.Default);
#pragma warning restore RS1024 // Compare symbols correctly
var processedItems = new HashSet<INamedTypeSymbol>(SymbolEqualityComparer.Default);

var fileType = isStatic ? "Static" : "Instance";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<DevelopmentDependency>true</DevelopmentDependency>
</PropertyGroup>
<NoWarn>$(NoWarn);AD0001</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>

0 comments on commit 363b50e

Please sign in to comment.