Skip to content

Commit ac2401b

Browse files
committed
Adjust namespase and add entry point.
1 parent 24251b5 commit ac2401b

8 files changed

Lines changed: 73 additions & 26 deletions

File tree

src/TryToExecute/CodeExec/Abstract/Func/TryToExecute.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,13 @@
2525
using Microsoft.Extensions.Logging;
2626
#endif
2727

28+
// ReSharper disable CheckNamespace
29+
2830
#endregion
2931

30-
namespace TryToExecute.CodeExec.Abstract.Func
32+
namespace TryToExecute.CodeExec
3133
{
32-
/// -------------------------------------------------------------------------------------------------
33-
/// <content>
34-
/// A try catch execute base.
35-
/// </content>
36-
/// =================================================================================================
34+
/// <inheritdoc cref="CodeExec.TryCatchExecuteBase"/>
3735
public abstract partial class TryCatchExecuteBase
3836
{
3937
/// -------------------------------------------------------------------------------------------------

src/TryToExecute/CodeExec/Abstract/Func/TryToExecuteAsync.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,13 @@
2626
using Microsoft.Extensions.Logging;
2727
#endif
2828

29+
// ReSharper disable CheckNamespace
30+
2931
#endregion
3032

31-
namespace TryToExecute.CodeExec.Abstract.Func
33+
namespace TryToExecute.CodeExec
3234
{
33-
/// -------------------------------------------------------------------------------------------------
34-
/// <content>
35-
/// A try catch execute base.
36-
/// </content>
37-
/// =================================================================================================
35+
/// <inheritdoc cref="CodeExec.TryCatchExecuteBase"/>
3836
public abstract partial class TryCatchExecuteBase
3937
{
4038
/// -------------------------------------------------------------------------------------------------

src/TryToExecute/CodeExec/Static/Func/TryToExecuteStatic.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,13 @@
2525
using Microsoft.Extensions.Logging;
2626
#endif
2727

28+
// ReSharper disable CheckNamespace
29+
2830
#endregion
2931

30-
namespace TryToExecute.CodeExec.Static.Func
32+
namespace TryToExecute.CodeExec
3133
{
32-
/// -------------------------------------------------------------------------------------------------
33-
/// <content>
34-
/// A try catch execute static base.
35-
/// </content>
36-
/// =================================================================================================
34+
/// <inheritdoc cref="CodeExec.TryCatchExecuteStaticBase"/>
3735
public partial class TryCatchExecuteStaticBase
3836
{
3937
/// -------------------------------------------------------------------------------------------------

src/TryToExecute/CodeExec/Static/Func/TryToExecuteStaticAsync.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,13 @@
2626
using Microsoft.Extensions.Logging;
2727
#endif
2828

29+
// ReSharper disable CheckNamespace
30+
2931
#endregion
3032

31-
namespace TryToExecute.CodeExec.Static.Func
33+
namespace TryToExecute.CodeExec
3234
{
33-
/// -------------------------------------------------------------------------------------------------
34-
/// <content>
35-
/// A try catch execute static base.
36-
/// </content>
37-
/// =================================================================================================
35+
/// <inheritdoc cref="CodeExec.TryCatchExecuteStaticBase"/>
3836
public partial class TryCatchExecuteStaticBase
3937
{
4038
/// -------------------------------------------------------------------------------------------------
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// ***********************************************************************
2+
// Assembly : RzR.Shared.Extensions.TryToExecute
3+
// Author : RzR
4+
// Created On : 2024-12-04 14:52
5+
//
6+
// Last Modified By : RzR
7+
// Last Modified On : 2024-12-04 14:53
8+
// ***********************************************************************
9+
// <copyright file="TryCatchExecuteBase.cs" company="RzR SOFT & TECH">
10+
// Copyright © RzR. All rights reserved.
11+
// </copyright>
12+
//
13+
// <summary>
14+
// </summary>
15+
// ***********************************************************************
16+
17+
namespace TryToExecute.CodeExec
18+
{
19+
/// -------------------------------------------------------------------------------------------------
20+
/// <content>
21+
/// A try catch execute base.
22+
/// </content>
23+
/// =================================================================================================
24+
public abstract partial class TryCatchExecuteBase
25+
{
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// ***********************************************************************
2+
// Assembly : RzR.Shared.Extensions.TryToExecute
3+
// Author : RzR
4+
// Created On : 2024-12-04 14:53
5+
//
6+
// Last Modified By : RzR
7+
// Last Modified On : 2024-12-04 14:53
8+
// ***********************************************************************
9+
// <copyright file="TryCatchExecuteStaticBase.cs" company="RzR SOFT & TECH">
10+
// Copyright © RzR. All rights reserved.
11+
// </copyright>
12+
//
13+
// <summary>
14+
// </summary>
15+
// ***********************************************************************
16+
17+
namespace TryToExecute.CodeExec
18+
{
19+
/// -------------------------------------------------------------------------------------------------
20+
/// <content>
21+
/// A try catch execute static base.
22+
/// </content>
23+
/// =================================================================================================
24+
public partial class TryCatchExecuteStaticBase
25+
{
26+
}
27+
}

src/tests/TryExecuteTests/TryCatchExecuteStaticAsyncTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using AggregatedGenericResultMessage;
44
using AggregatedGenericResultMessage.Abstractions;
55
using Microsoft.Extensions.Logging;
6-
using TryToExecute.CodeExec.Static.Func;
6+
using TryToExecute.CodeExec;
77

88
#endregion
99

src/tests/TryExecuteTests/TryCatchExecuteStaticTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#region U S A G E S
22

33
using Microsoft.Extensions.Logging;
4-
using TryToExecute.CodeExec.Static.Func;
4+
using TryToExecute.CodeExec;
5+
56

67
// ReSharper disable NotAccessedField.Local
78

0 commit comments

Comments
 (0)