File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 <ItemGroup >
77 <PackageReference Include =" Minio" Version =" 7.0.0" />
88
9- <PackageReference Include =" Foundatio" Version =" 13.0.0-beta6" Condition =" '$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
9+ <PackageReference Include =" Foundatio" Version =" 13.0.0-beta6.2 " Condition =" '$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
1010 <ProjectReference Include =" ..\..\..\Foundatio\src\Foundatio\Foundatio.csproj" Condition =" '$(ReferenceFoundatioSource)' == 'true'" />
1111 </ItemGroup >
1212</Project >
Original file line number Diff line number Diff line change @@ -10,10 +10,9 @@ public class MinioFileStorageOptions : SharedOptions
1010
1111public class MinioFileStorageOptionsBuilder : SharedOptionsBuilder < MinioFileStorageOptions , MinioFileStorageOptionsBuilder >
1212{
13- public MinioFileStorageOptionsBuilder ConnectionString ( string connectionString )
13+ public MinioFileStorageOptionsBuilder ConnectionString ( string ? connectionString )
1414 {
15- ArgumentException . ThrowIfNullOrEmpty ( connectionString ) ;
16- Target . ConnectionString = connectionString ;
15+ Target . ConnectionString = String . IsNullOrEmpty ( connectionString ) ? null : connectionString ;
1716 return this ;
1817 }
1918
You can’t perform that action at this time.
0 commit comments