You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: src/Exceptions/CallMethodException.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,10 @@
3
3
namespacePowerUtils.xUnit.Extensions.Exceptions
4
4
{
5
5
[Serializable]
6
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
6
7
publicclassCallMethodException:Exception
7
8
{
8
9
publicCallMethodException(stringmethodName)
9
10
:base($"It was not possible to call the method '{methodName}'"){}
Copy file name to clipboardExpand all lines: src/Exceptions/ConstructorNotFoundException.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,10 @@
3
3
namespacePowerUtils.xUnit.Extensions.Exceptions
4
4
{
5
5
[Serializable]
6
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/Exceptions/FieldNotFoundException.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,10 @@
3
3
namespacePowerUtils.xUnit.Extensions.Exceptions
4
4
{
5
5
[Serializable]
6
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/Exceptions/MethodNotFoundException.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,10 @@
3
3
namespacePowerUtils.xUnit.Extensions.Exceptions
4
4
{
5
5
[Serializable]
6
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/Exceptions/PropertyNotFoundException.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,10 @@
3
3
namespacePowerUtils.xUnit.Extensions.Exceptions
4
4
{
5
5
[Serializable]
6
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/NonPublicMethodExtensions.cs
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
6
6
namespacePowerUtils.xUnit.Extensions
7
7
{
8
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
8
9
publicstaticclassNonPublicMethodExtensions
9
10
{
10
11
/// <summary>
@@ -17,6 +18,7 @@ public static class NonPublicMethodExtensions
17
18
/// <returns>Value returned from method</returns>
18
19
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
19
20
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
21
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
@@ -51,6 +53,7 @@ public static TResult InvokeNonPublicMethod<TResult>(this object obj, string met
51
53
/// <param name="parameters">Petermeters to send to non-public method</param>
52
54
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
53
55
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
56
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
@@ -87,6 +90,7 @@ public static void InvokeNonPublicMethod(this object obj, string methodName, par
87
90
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
88
91
/// <exception cref="CallMethodException">When it is not possible to call the method <paramref name="methodName">methodName</paramref></exception>
89
92
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
93
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
@@ -127,6 +131,7 @@ public static async Task<TResult> InvokeNonPublicMethodAsync<TResult>(this objec
127
131
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
128
132
/// <exception cref="CallMethodException">When it is not possible to call the method <paramref name="methodName">methodName</paramref></exception>
129
133
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
134
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/NonPublicPropertyExtensions.cs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
6
6
namespacePowerUtils.xUnit.Extensions
7
7
{
8
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
8
9
publicstaticclassNonPublicPropertyExtensions
9
10
{
10
11
/// <summary>
@@ -14,6 +15,7 @@ public static class NonPublicPropertyExtensions
/// <param name="newValue">Value for property</param>
16
17
/// <exception cref="ArgumentNullException">When the <paramref name="source">source</paramref> is null</exception>
18
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
/// <param name="newValue">Value for property</param>
35
37
/// <exception cref="ArgumentNullException">When the <paramref name="source">source</paramref> is null</exception>
36
38
/// <exception cref="PropertyNotFoundException">When the <paramref name="propertyName">propertyName</paramref> not found</exception>
39
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
/// <param name="newValue">Value for field</param>
63
66
/// <exception cref="ArgumentNullException">When the <paramref name="source">source</paramref> is null</exception>
64
67
/// <exception cref="FieldNotFoundException">When the <paramref name="fieldName">propertyName</paramref> not found</exception>
68
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/ObjectFactory.cs
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,14 @@
1
-
usingSystem.Linq;
1
+
usingSystem;
2
+
usingSystem.Linq;
2
3
usingSystem.Reflection;
3
4
usingPowerUtils.xUnit.Extensions.Exceptions;
4
5
5
6
namespacePowerUtils.xUnit.Extensions
6
7
{
8
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
7
9
publicstaticclassObjectFactory
8
10
{
11
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/ObjectInvoker.cs
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
6
6
namespacePowerUtils.xUnit.Extensions
7
7
{
8
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
8
9
publicclassObjectInvoker
9
10
{
10
11
/// <summary>
@@ -17,6 +18,7 @@ public class ObjectInvoker
17
18
/// <returns>Value returned from method</returns>
18
19
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
19
20
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
21
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
/// <param name="parameters">Petermeters to send to non-public method</param>
51
53
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
52
54
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
55
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
86
89
/// <exception cref="CallMethodException">When it is not possible to call the method <paramref name="methodName">methodName</paramref></exception>
87
90
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
91
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
/// <exception cref="MethodNotFoundException">When the <paramref name="methodName">methodName</paramref> not found</exception>
125
129
/// <exception cref="CallMethodException">When it is not possible to call the method <paramref name="methodName">methodName</paramref></exception>
126
130
/// <exception cref="ArgumentNullException">When the <paramref name="obj">obj</paramref> is null</exception>
131
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
Copy file name to clipboardExpand all lines: src/OrderTests/PriorityOrderer.cs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,15 @@
6
6
7
7
namespacePowerUtils.xUnit.Extensions.OrderTests
8
8
{
9
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
9
10
publicclassPriorityOrderer:ITestCaseOrderer
10
11
{
12
+
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
[Obsolete("This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.")]
0 commit comments