Skip to content

Commit 124826b

Browse files
committed
Remove isolated storage support from .NET Core until it works cross plat
https://github.com/dotnet/corefx/issues/9842
1 parent f0494c8 commit 124826b

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"src/Samples"
66
],
77
"sdk": {
8-
"version": "1.0.0-preview2-003121"
8+
"version": "1.0.0-preview2-003131"
99
}
1010
}

src/Exceptionless/Extensions/ExceptionlessConfigurationExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public static void UseTraceLogEntriesPlugin(this ExceptionlessConfiguration conf
237237
}
238238
#endif
239239

240-
#if NET45 || NETSTANDARD1_4 || NETSTANDARD1_5
240+
#if NET45
241241
public static void UseIsolatedStorageLogger(this ExceptionlessConfiguration config, LogLevel minLogLevel = null) {
242242
var log = new SafeExceptionlessLog(new IsolatedStorageFileExceptionlessLog("exceptionless.log")) { MinimumLogLevel = minLogLevel ?? LogLevel.Info };
243243
config.Resolver.Register<IExceptionlessLog>(log);

src/Exceptionless/Logging/IsolatedStorageFileExceptionlessLog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if NET45 || NETSTANDARD1_4 || NETSTANDARD1_5
1+
#if NET45
22
using System;
33
using System.IO;
44
using System.IO.IsolatedStorage;

src/Exceptionless/Storage/IsolatedStorageObjectStorage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if NET45 || NETSTANDARD1_4 || NETSTANDARD1_5
1+
#if NET45
22
using System;
33
using System.Collections.Generic;
44
using System.Collections.ObjectModel;

src/Exceptionless/project.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@
130130
"System.Diagnostics.StackTrace": "4.0.1",
131131
"System.Diagnostics.TraceSource": "4.0.0",
132132
"System.Dynamic.Runtime": "4.0.11",
133-
"System.IO.IsolatedStorage": "4.0.1",
134133
"System.Net.NameResolution": "4.0.0",
135134
"System.Reflection.Emit.ILGeneration": "4.0.1",
136135
"System.Reflection.Emit.Lightweight": "4.0.1",
@@ -162,7 +161,6 @@
162161
"System.Diagnostics.StackTrace": "4.0.1",
163162
"System.Diagnostics.TraceSource": "4.0.0",
164163
"System.Dynamic.Runtime": "4.0.11",
165-
"System.IO.IsolatedStorage": "4.0.1",
166164
"System.Net.NameResolution": "4.0.0",
167165
"System.Reflection.Emit.ILGeneration": "4.0.1",
168166
"System.Reflection.Emit.Lightweight": "4.0.1",

src/Samples/Exceptionless.SampleConsole/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"Exceptionless.RandomData": "1.1.24",
2222
"Microsoft.NETCore.App": {
2323
"type": "platform",
24-
"version": "1.0.0"
24+
"version": "1.0.1"
2525
}
2626
},
2727
"frameworks": {

0 commit comments

Comments
 (0)