File tree Expand file tree Collapse file tree 6 files changed +25
-1
lines changed
NLog.Extensions.AzureBlobStorage
NLog.Extensions.AzureDataTables
NLog.Extensions.AzureEventHub
NLog.Extensions.AzureQueueStorage
NLog.Extensions.AzureServiceBus Expand file tree Collapse file tree 6 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ public sealed class BlobStorageTarget : AsyncTaskTarget
3434 /// </summary>
3535 public Layout ServiceUri { get ; set ; }
3636
37+ [ System . ComponentModel . EditorBrowsable ( System . ComponentModel . EditorBrowsableState . Never ) ]
38+ [ Obsolete ( "Instead use ServiceUri" ) ]
39+ public Layout ServiceUrl { get => ServiceUri ; set => ServiceUri = value ; }
40+
3741 /// <summary>
3842 /// Alternative to ConnectionString, when using <see cref="ServiceUri"/>
3943 /// </summary>
@@ -67,6 +71,10 @@ public sealed class BlobStorageTarget : AsyncTaskTarget
6771 [ RequiredParameter ]
6872 public Layout Container { get ; set ; }
6973
74+ [ System . ComponentModel . EditorBrowsable ( System . ComponentModel . EditorBrowsableState . Never ) ]
75+ [ Obsolete ( "Instead use Container" ) ]
76+ public Layout ContainerName { get => Container ; set => Container = value ; }
77+
7078 [ RequiredParameter ]
7179 public Layout BlobName { get ; set ; }
7280
Original file line number Diff line number Diff line change @@ -64,6 +64,10 @@ public override int GetHashCode()
6464 /// </remarks>
6565 public Layout ServiceUri { get ; set ; }
6666
67+ [ System . ComponentModel . EditorBrowsable ( System . ComponentModel . EditorBrowsableState . Never ) ]
68+ [ Obsolete ( "Instead use ServiceUri" ) ]
69+ public Layout ServiceUrl { get => ServiceUri ; set => ServiceUri = value ; }
70+
6771 /// <summary>
6872 /// Alternative to ConnectionString, when using <see cref="ServiceUri"/>
6973 /// </summary>
Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ public class EventHubTarget : AsyncTaskTarget
8686 /// </summary>
8787 public Layout ServiceUri { get ; set ; }
8888
89+ [ System . ComponentModel . EditorBrowsable ( System . ComponentModel . EditorBrowsableState . Never ) ]
90+ [ Obsolete ( "Instead use ServiceUri" ) ]
91+ public Layout ServiceUrl { get => ServiceUri ; set => ServiceUri = value ; }
92+
8993 /// <summary>
9094 /// Alternative to ConnectionString, when using <see cref="ServiceUri"/>
9195 /// </summary>
Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ public sealed class QueueStorageTarget : AsyncTaskTarget
3030 /// </summary>
3131 public Layout ServiceUri { get ; set ; }
3232
33+ [ System . ComponentModel . EditorBrowsable ( System . ComponentModel . EditorBrowsableState . Never ) ]
34+ [ Obsolete ( "Instead use ServiceUri" ) ]
35+ public Layout ServiceUrl { get => ServiceUri ; set => ServiceUri = value ; }
36+
3337 /// <summary>
3438 /// Alternative to ConnectionString, when using <see cref="ServiceUri"/>
3539 /// </summary>
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ Docs: https://github.com/JDetmar/NLog.Extensions.AzureStorage/blob/master/src/NL
3636 </ItemGroup >
3737
3838 <ItemGroup >
39- <PackageReference Include =" Azure.Messaging.ServiceBus" Version =" 7.16.1 " />
39+ <PackageReference Include =" Azure.Messaging.ServiceBus" Version =" 7.16.2 " />
4040 <PackageReference Include =" Azure.Identity" Version =" 1.10.3" />
4141 <PackageReference Include =" NLog" Version =" 4.7.15" />
4242 <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1" PrivateAssets =" All" />
Original file line number Diff line number Diff line change @@ -107,6 +107,10 @@ public sealed class ServiceBusTarget : AsyncTaskTarget
107107 /// </summary>
108108 public Layout ServiceUri { get ; set ; }
109109
110+ [ System . ComponentModel . EditorBrowsable ( System . ComponentModel . EditorBrowsableState . Never ) ]
111+ [ Obsolete ( "Instead use ServiceUri" ) ]
112+ public Layout ServiceUrl { get => ServiceUri ; set => ServiceUri = value ; }
113+
110114 /// <summary>
111115 /// Alternative to ConnectionString, when using <see cref="ServiceUri"/>
112116 /// </summary>
You can’t perform that action at this time.
0 commit comments