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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,10 +44,10 @@ To run all unit tests, for all targets:
44
44
dotnet test test/LaunchDarkly.EventSource.Tests
45
45
```
46
46
47
-
Or, to run tests only for the .NET Standard 2.0 target (using the .NET Core 2.1 runtime):
47
+
Or, to run tests only for the .NET Standard 2.0 target (using the .NET Core 3.1 runtime):
48
48
49
49
```
50
-
dotnet test test/LaunchDarkly.EventSource.Tests -f netcoreapp2.1
50
+
dotnet test test/LaunchDarkly.EventSource.Tests -f netcoreapp3.1
51
51
```
52
52
53
53
Note that the unit tests can only be run in Debug configuration. There is an `InternalsVisibleTo` directive that allows the test code to access internal members of the library, and assembly strong-naming in the Release configuration interferes with this.
Copy file name to clipboardExpand all lines: README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,8 @@ The `LaunchDarkly.EventSource` package allows .NET developers to consume Server-
12
12
13
13
This version of the library is built for the following targets:
14
14
15
-
* .NET Framework 4.5.2: runs on .NET Framework 4.5.x and above.
16
-
* .NET Core 2.1: runs on .NET Core 2.x and 3.x, or .NET 5. This target provides an adapter to the standard .NET Core logging framework, `Logs.CoreLogging`, which is not available in .NET Framework.
17
-
* .NET Standard 2.0: runs on .NET Core 2.x and 3.x or .NET 5, or within a library that is targeted to .NET Standard 2.x.
15
+
* .NET Framework 4.6.2: runs on .NET Framework 4.6.2 and above.
16
+
* .NET Standard 2.0: runs on .NET Core 3.x or .NET 6.0+, or within a library that is targeted to .NET Standard 2.x.
18
17
19
18
The .NET build tools should automatically load the most appropriate build of the library for whatever platform your application or library is targeted to.
0 commit comments