Skip to content

Commit

Permalink
fix: updating snyk-nuget-plugin (#5217)
Browse files Browse the repository at this point in the history
Update with UX improvement on unscannable projects and fixed a bug where the .deps file could not be located in certain cases.
  • Loading branch information
dotkas authored May 2, 2024
1 parent 5e98aaa commit c27d767
Show file tree
Hide file tree
Showing 7 changed files with 6,985 additions and 8 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"snyk-module": "3.1.0",
"snyk-mvn-plugin": "3.4.2",
"snyk-nodejs-lockfile-parser": "1.52.11",
"snyk-nuget-plugin": "2.4.3",
"snyk-nuget-plugin": "2.4.5",
"snyk-php-plugin": "1.9.2",
"snyk-policy": "^1.25.0",
"snyk-python-plugin": "2.1.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# dotnet_8_functions_bin_folder

Including a `<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.1.3"/>` above version 4.x will cause
a `dotnet publish` to add `/bin` to the publish dir, confusing this logic on where the `.deps` file, containing runtime
pack information, is located.

See [this thread for more](https://github.com/Azure/azure-functions-vs-build-sdk/issues/518).
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.3.0" />
</ItemGroup>
</Project>
Loading

0 comments on commit c27d767

Please sign in to comment.