Skip to content

Commit 1c9e8b4

Browse files
committed
Updated dependencies
1 parent f8a40c5 commit 1c9e8b4

File tree

9 files changed

+54
-54
lines changed

9 files changed

+54
-54
lines changed

samples/Exceptionless.SampleConsole/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class Program {
4444

4545
public static void Main(string[] args) {
4646
Console.CursorVisible = false;
47-
if (!Console.IsInputRedirected)
47+
if (!Console.IsInputRedirected)
4848
StartDisplayingLogMessages();
4949

5050
ExceptionlessClient.Default.Configuration.UpdateSettingsWhenIdleInterval = TimeSpan.FromSeconds(15);
@@ -55,7 +55,7 @@ public static void Main(string[] args) {
5555

5656
if (ExceptionlessClient.Default.Configuration.Settings.GetBoolean("EnableWelcomeMessage", false))
5757
Console.WriteLine($"Hello {Environment.MachineName}!");
58-
58+
5959
// Test NLog
6060
GlobalDiagnosticsContext.Set("GlobalProp", "GlobalValue");
6161
Log.Info()

samples/Exceptionless.SampleConsole/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
"../../src/GlobalAssemblyInfo.cs",
77
"../../tests/Exceptionless.Tests/Utility/RandomEventGenerator.cs"
88
],
9-
"exclude": "store"
9+
"exclude": "store"
1010
},
1111
"emitEntryPoint": true
1212
},
1313
"dependencies": {
1414
"Exceptionless": {
1515
"target": "project"
1616
},
17-
"Exceptionless.DateTimeExtensions": "3.2.53",
17+
"Exceptionless.DateTimeExtensions": "3.2.55",
1818
"Exceptionless.NLog": {
1919
"target": "project"
2020
},
21-
"Exceptionless.RandomData": "1.1.24",
21+
"Exceptionless.RandomData": "1.1.26",
2222
"Microsoft.NETCore.App": {
2323
"type": "platform",
2424
"version": "1.0.1"

src/Exceptionless.Signed/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"System.ComponentModel.TypeConverter": "4.1.0",
103103
"System.Data.Common": "4.1.0",
104104
"System.Diagnostics.Process": "4.1.0",
105-
"System.Diagnostics.StackTrace": "4.0.1",
105+
"System.Diagnostics.StackTrace": "4.0.2",
106106
"System.Diagnostics.TraceSource": "4.0.0",
107107
"System.Dynamic.Runtime": "4.0.11",
108108
"System.Net.NameResolution": "4.0.0",
@@ -132,7 +132,7 @@
132132
"System.ComponentModel.TypeConverter": "4.1.0",
133133
"System.Data.Common": "4.1.0",
134134
"System.Diagnostics.Process": "4.1.0",
135-
"System.Diagnostics.StackTrace": "4.0.1",
135+
"System.Diagnostics.StackTrace": "4.0.2",
136136
"System.Diagnostics.TraceSource": "4.0.0",
137137
"System.Dynamic.Runtime": "4.0.11",
138138
"System.Net.NameResolution": "4.0.0",
@@ -162,7 +162,7 @@
162162
"System.ComponentModel.TypeConverter": "4.1.0",
163163
"System.Data.Common": "4.1.0",
164164
"System.Diagnostics.Process": "4.1.0",
165-
"System.Diagnostics.StackTrace": "4.0.1",
165+
"System.Diagnostics.StackTrace": "4.0.2",
166166
"System.Diagnostics.TraceSource": "4.0.0",
167167
"System.Dynamic.Runtime": "4.0.11",
168168
"System.Net.NameResolution": "4.0.0",

src/Exceptionless/Extensions/ExceptionlessConfigurationExtensions.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public static void UseSessions(this ExceptionlessConfiguration config, bool send
120120
public static void ApplySavedServerSettings(this ExceptionlessConfiguration config) {
121121
SettingsManager.ApplySavedServerSettings(config);
122122
}
123-
123+
124124
/// <summary>
125125
/// Automatically set a reference id for error events.
126126
/// </summary>
@@ -130,7 +130,7 @@ public static void UseReferenceIds(this ExceptionlessConfiguration config) {
130130

131131

132132
/// <summary>
133-
/// Reads the <see cref="ExceptionlessAttribute" /> and <see cref="ExceptionlessSettingAttribute" />
133+
/// Reads the <see cref="ExceptionlessAttribute" /> and <see cref="ExceptionlessSettingAttribute" />
134134
/// from the passed in assembly.
135135
/// </summary>
136136
/// <param name="config">The configuration object you want to apply the attribute settings to.</param>
@@ -143,7 +143,7 @@ public static void ReadFromAttributes(this ExceptionlessConfiguration config, pa
143143
}
144144

145145
/// <summary>
146-
/// Reads the <see cref="ExceptionlessAttribute" /> and <see cref="ExceptionlessSettingAttribute" />
146+
/// Reads the <see cref="ExceptionlessAttribute" /> and <see cref="ExceptionlessSettingAttribute" />
147147
/// from the passed in assemblies.
148148
/// </summary>
149149
/// <param name="config">The configuration object you want to apply the attribute settings to.</param>
@@ -167,7 +167,7 @@ public static void ReadFromAttributes(this ExceptionlessConfiguration config, IC
167167
var attr = assembly.GetCustomAttributes(typeof(ExceptionlessAttribute)).FirstOrDefault() as ExceptionlessAttribute;
168168
if (attr == null)
169169
continue;
170-
170+
171171
if (!attr.Enabled)
172172
config.Enabled = false;
173173

@@ -223,7 +223,7 @@ public static void UseFileLogger(this ExceptionlessConfiguration config, string
223223
public static void UseFolderStorage(this ExceptionlessConfiguration config, string folder) {
224224
config.Resolver.Register<IObjectStorage>(new FolderObjectStorage(config.Resolver, folder));
225225
}
226-
226+
227227
public static void UseTraceLogEntriesPlugin(this ExceptionlessConfiguration config, int? defaultMaxEntriesToInclude = null) {
228228
int maxEntriesToInclude = config.Settings.GetInt32(TraceLogPlugin.MaxEntriesToIncludeKey, defaultMaxEntriesToInclude ?? 0);
229229

@@ -289,10 +289,10 @@ public static void ReadFromConfigSection(this ExceptionlessConfiguration config)
289289

290290
if (!section.Enabled)
291291
config.Enabled = false;
292-
292+
293293
if (IsValidApiKey(section.ApiKey))
294294
config.ApiKey = section.ApiKey;
295-
295+
296296
if (!String.IsNullOrEmpty(section.ServerUrl))
297297
config.ServerUrl = section.ServerUrl;
298298

@@ -371,7 +371,7 @@ public static void ReadFromAppSettings(this ExceptionlessConfiguration config) {
371371
bool enabled;
372372
if (Boolean.TryParse(ConfigurationManager.AppSettings["Exceptionless:Enabled"], out enabled) && !enabled)
373373
config.Enabled = false;
374-
374+
375375
string serverUrl = ConfigurationManager.AppSettings["Exceptionless:ServerUrl"];
376376
if (!String.IsNullOrEmpty(serverUrl))
377377
config.ServerUrl = serverUrl;
@@ -391,18 +391,18 @@ public static void ReadFromEnvironmentalVariables(this ExceptionlessConfiguratio
391391
bool enabled;
392392
if (Boolean.TryParse(GetEnvironmentalVariable("Exceptionless:Enabled") ?? GetEnvironmentalVariable("Exceptionless__Enabled"), out enabled) && !enabled)
393393
config.Enabled = false;
394-
394+
395395
string serverUrl = GetEnvironmentalVariable("Exceptionless:ServerUrl") ?? GetEnvironmentalVariable("Exceptionless__ServerUrl");
396396
if (!String.IsNullOrEmpty(serverUrl))
397397
config.ServerUrl = serverUrl;
398398
}
399-
399+
400400
private static Dictionary<string, string> _environmentVariables;
401401

402402
private static string GetEnvironmentalVariable(string name) {
403403
if (String.IsNullOrEmpty(name))
404404
return null;
405-
405+
406406
if (_environmentVariables == null) {
407407
try {
408408
_environmentVariables = Environment.GetEnvironmentVariables().Cast<DictionaryEntry>().ToDictionary(e => e.Key.ToString(), e => e.Value.ToString());
@@ -411,7 +411,7 @@ private static string GetEnvironmentalVariable(string name) {
411411
return null;
412412
}
413413
}
414-
414+
415415
if (!_environmentVariables.ContainsKey(name))
416416
return null;
417417

src/Exceptionless/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"System.ComponentModel.TypeConverter": "4.1.0",
9797
"System.Data.Common": "4.1.0",
9898
"System.Diagnostics.Process": "4.1.0",
99-
"System.Diagnostics.StackTrace": "4.0.1",
99+
"System.Diagnostics.StackTrace": "4.0.2",
100100
"System.Diagnostics.TraceSource": "4.0.0",
101101
"System.Dynamic.Runtime": "4.0.11",
102102
"System.Net.NameResolution": "4.0.0",
@@ -125,7 +125,7 @@
125125
"System.ComponentModel.TypeConverter": "4.1.0",
126126
"System.Data.Common": "4.1.0",
127127
"System.Diagnostics.Process": "4.1.0",
128-
"System.Diagnostics.StackTrace": "4.0.1",
128+
"System.Diagnostics.StackTrace": "4.0.2",
129129
"System.Diagnostics.TraceSource": "4.0.0",
130130
"System.Dynamic.Runtime": "4.0.11",
131131
"System.Net.NameResolution": "4.0.0",
@@ -154,7 +154,7 @@
154154
"System.ComponentModel.TypeConverter": "4.1.0",
155155
"System.Data.Common": "4.1.0",
156156
"System.Diagnostics.Process": "4.1.0",
157-
"System.Diagnostics.StackTrace": "4.0.1",
157+
"System.Diagnostics.StackTrace": "4.0.2",
158158
"System.Diagnostics.TraceSource": "4.0.0",
159159
"System.Dynamic.Runtime": "4.0.11",
160160
"System.Net.NameResolution": "4.0.0",

src/Platforms/Exceptionless.Log4net/BufferingExceptionlessAppender.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ protected override void SendBuffer(LoggingEvent[] events) {
1717

1818
public override void ActivateOptions() {
1919
base.ActivateOptions();
20-
20+
2121
if (String.IsNullOrEmpty(ApiKey) && String.IsNullOrEmpty(ServerUrl))
2222
return;
2323

src/Platforms/Exceptionless.NLog/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"define": [ "NET45" ]
4949
},
5050
"dependencies": {
51-
"NLog": "4.3.8"
51+
"NLog": "4.3.11"
5252
}
5353
}
5454
}

0 commit comments

Comments
 (0)