File tree Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change
1
+ <Project >
2
+
3
+ <PropertyGroup Condition =" '$(VersionPrefix)' == '2.1.6' " >
4
+ <PackagesInPatch >
5
+ Microsoft.Extensions.ObjectPool;
6
+ Microsoft.Extensions.Primitives;
7
+ </PackagesInPatch >
8
+ </PropertyGroup >
9
+ <PropertyGroup Condition =" '$(VersionPrefix)' == '2.1.10' " >
10
+ <PackagesInPatch >
11
+ Microsoft.Extensions.Configuration.Binder;
12
+ </PackagesInPatch >
13
+ </PropertyGroup >
14
+ <PropertyGroup Condition =" '$(VersionPrefix)' == '2.1.23' " >
15
+ <PackagesInPatch >
16
+ Microsoft.Extensions.Caching.Abstractions;
17
+ Microsoft.Extensions.Caching.Memory;
18
+ </PackagesInPatch >
19
+ </PropertyGroup >
20
+
21
+ </Project >
Original file line number Diff line number Diff line change @@ -679,8 +679,8 @@ public void TryGetValueFromCacheWithNullKeyThrows()
679
679
public void GetOrCreateFromCacheWithNullKeyThrows ( )
680
680
{
681
681
var cache = CreateCache ( ) ;
682
- Assert . Throws < ArgumentNullException > ( ( ) => cache . GetOrCreate < object > ( null , null ) )
683
- ; }
682
+ Assert . Throws < ArgumentNullException > ( ( ) => cache . GetOrCreate < object > ( null , null ) ) ;
683
+ }
684
684
685
685
[ Fact ]
686
686
public async Task GetOrCreateAsyncFromCacheWithNullKeyThrows ( )
@@ -695,4 +695,4 @@ private class TestKey
695
695
public override int GetHashCode ( ) => 0 ;
696
696
}
697
697
}
698
- }
698
+ }
You can’t perform that action at this time.
0 commit comments