Skip to content

Commit

Permalink
Remove Dependencies and clean up to zero error, warning, message. (#934)
Browse files Browse the repository at this point in the history
* zero error,warning,message

* Update Microsoft.NET.Test.Sdk

* align text

* Fix merge Issue
  • Loading branch information
shaopeng-gh authored Jun 29, 2023
1 parent 5c33d91 commit 70f4964
Show file tree
Hide file tree
Showing 19 changed files with 51 additions and 565 deletions.
3 changes: 2 additions & 1 deletion ReleaseHistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
- NEW => new feature

## UNRELEASED
* DEP: Remove `Microsoft.CodeAnalysis`. [#934](https://github.com/microsoft/binskim/pull/934)
* DEP: Remove `Microsoft.CodeAnalysis.NetAnalyzers`. [#934](https://github.com/microsoft/binskim/pull/934)
* DEP: Update `ELFSharp` package from 2.17.1 to 2.17.2. [#930](https://github.com/microsoft/binskim/pull/930)
* DEP: Update `System.Reflection.Metadata` package from 7.0.0 to 7.0.2. [#930](https://github.com/microsoft/binskim/pull/930)
* DEP: Update `Microsoft.CodeAnalysis.NetAnalyzers` package from 7.0.0 to 7.0.3. [#930](https://github.com/microsoft/binskim/pull/930)
* DEP: Update `Newtonsoft.Json` package from 13.0.1 to 13.0.3. [#930](https://github.com/microsoft/binskim/pull/930)
* NR : `BA2029.EnableIntegrityCheck` ([Rule Request](https://github.com/microsoft/binskim/issues/909)) [#922](https://github.com/microsoft/binskim/pull/922)
* BUG: `BA2004.EnableSecureSourceCodeHashing` now explicitly reports the insecure hash algorithm or that the module has no hash data present (in that circumstance). [#929](https://github.com/microsoft/binskim/pull/929)
Expand Down
1 change: 0 additions & 1 deletion src/BinSkim.Driver/BinSkim.Driver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
Expand Down
2 changes: 1 addition & 1 deletion src/BinSkim.Driver/DriverUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private static CompositionHost CreateCompositionContainer<T>(IEnumerable<Assembl
{
ConventionBuilder conventions = GetConventions<T>();

assemblies = assemblies ?? new Assembly[] { typeof(DoNotShipVulnerableBinaries).Assembly };
assemblies ??= new Assembly[] { typeof(DoNotShipVulnerableBinaries).Assembly };

return new ContainerConfiguration()
.WithAssemblies(assemblies, conventions)
Expand Down
44 changes: 0 additions & 44 deletions src/BinSkim.Driver/RoslynAnalyzer/ActionMap.cs

This file was deleted.

113 changes: 0 additions & 113 deletions src/BinSkim.Driver/RoslynAnalyzer/ILDiagnosticsAnalyzer.cs

This file was deleted.

48 changes: 0 additions & 48 deletions src/BinSkim.Driver/RoslynAnalyzer/RoslynAnalysisContext.cs

This file was deleted.

This file was deleted.

Loading

0 comments on commit 70f4964

Please sign in to comment.