Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 44d0861

Browse files
authored
fix: [OSM-1016] .NET runtime resolution testing now supports projects targeting .NET Standard frameworks (#5169)
* fix: .NET runtime resolution testing now supports projects targeting .NET Standard * fix: added missing restore file
1 parent d564470 commit 44d0861

File tree

6 files changed

+3265
-8
lines changed

6 files changed

+3265
-8
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"snyk-module": "3.1.0",
123123
"snyk-mvn-plugin": "3.3.1",
124124
"snyk-nodejs-lockfile-parser": "1.52.11",
125-
"snyk-nuget-plugin": "2.4.1",
125+
"snyk-nuget-plugin": "2.4.3",
126126
"snyk-php-plugin": "1.9.2",
127127
"snyk-policy": "^1.25.0",
128128
"snyk-python-plugin": "2.1.1",
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>netstandard2.0</TargetFramework>
4+
</PropertyGroup>
5+
<ItemGroup>
6+
<PackageReference Include="NSubstitute" Version="5.1.0" />
7+
</ItemGroup>
8+
</Project>

0 commit comments

Comments
 (0)