File tree Expand file tree Collapse file tree 5 files changed +13
-16
lines changed
Shuttle.Core.Reflection.Tests Expand file tree Collapse file tree 5 files changed +13
-16
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net5 .0</TargetFramework >
4+ <TargetFramework >net6 .0</TargetFramework >
55 </PropertyGroup >
66
77 <ItemGroup >
8- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.0 .0" />
9- <PackageReference Include =" NUnit" Version =" 3.13.2 " />
10- <PackageReference Include =" NUnit3TestAdapter" Version =" 4.2 .1" />
8+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.4 .0" />
9+ <PackageReference Include =" NUnit" Version =" 3.13.3 " />
10+ <PackageReference Include =" NUnit3TestAdapter" Version =" 4.3 .1" />
1111 </ItemGroup >
1212
1313 <ItemGroup >
Original file line number Diff line number Diff line change 33<package >
44 <metadata >
55 <id >Shuttle.Core.Reflection</id >
6- <version >12.0.0 </version >
6+ <version >12.0.1 </version >
77 <authors >Eben Roux</authors >
88 <owners >Eben Roux</owners >
99 <license type =" expression" >BSD-3-Clause</license >
1616 <copyright >Copyright (c) 2022, Eben Roux</copyright >
1717 <tags >shuttle reflection</tags >
1818 <dependencies >
19- <dependency id =" Microsoft.Extensions.DependencyModel" version =" 6 .0.0" />
20- <dependency id =" Shuttle.Core.Contract" version =" 10.1.0 " />
19+ <dependency id =" Microsoft.Extensions.DependencyModel" version =" 7 .0.0" />
20+ <dependency id =" Shuttle.Core.Contract" version =" 10.1.2 " />
2121 </dependencies >
2222 </metadata >
2323 <files >
Original file line number Diff line number Diff line change @@ -10,11 +10,8 @@ public class ExceptionRaisedEventArgs : EventArgs
1010
1111 public ExceptionRaisedEventArgs ( string methodName , Exception exception )
1212 {
13- Guard . AgainstNullOrEmptyString ( methodName , nameof ( methodName ) ) ;
14- Guard . AgainstNull ( exception , nameof ( exception ) ) ;
15-
16- MethodName = methodName ;
17- Exception = exception ;
13+ MethodName = Guard . AgainstNullOrEmptyString ( methodName , nameof ( methodName ) ) ;
14+ Exception = Guard . AgainstNull ( exception , nameof ( exception ) ) ;
1815 }
1916 }
2017}
Original file line number Diff line number Diff line change 1313[ assembly: AssemblyTitle ( ".NET Standard" ) ]
1414#endif
1515
16- [ assembly: AssemblyVersion ( "12.0.0 .0" ) ]
16+ [ assembly: AssemblyVersion ( "12.0.1 .0" ) ]
1717[ assembly: AssemblyCopyright ( "Copyright (c) 2022, Eben Roux" ) ]
1818[ assembly: AssemblyProduct ( "Shuttle.Core.Reflection" ) ]
1919[ assembly: AssemblyCompany ( "Eben Roux" ) ]
2020[ assembly: AssemblyConfiguration ( "Release" ) ]
21- [ assembly: AssemblyInformationalVersion ( "12.0.0 " ) ]
21+ [ assembly: AssemblyInformationalVersion ( "12.0.1 " ) ]
2222[ assembly: ComVisible ( false ) ]
Original file line number Diff line number Diff line change 2121 </ItemGroup >
2222
2323 <ItemGroup >
24- <PackageReference Include =" Microsoft.Extensions.DependencyModel" Version =" 6 .0.0" />
25- <PackageReference Include =" Shuttle.Core.Contract" Version =" 10.1.0 " />
24+ <PackageReference Include =" Microsoft.Extensions.DependencyModel" Version =" 7 .0.0" />
25+ <PackageReference Include =" Shuttle.Core.Contract" Version =" 10.1.2 " />
2626 </ItemGroup >
2727
2828 <ItemGroup >
You can’t perform that action at this time.
0 commit comments