-
Notifications
You must be signed in to change notification settings - Fork 50
/
NOTES.txt
53 lines (36 loc) · 1.36 KB
/
NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
This file contains important notes regarding
- our build targets (which framework version we are building for)
- our NuGet dependencies
TARGETS
-------
References:
https://docs.microsoft.com/en-us/dotnet/standard/frameworks
https://github.com/dotnet/designs/blob/main/accepted/2020/net5/net5.md
Our tooling:
Hazelcast.Net.DocAsCode
dll: net48 (tooling, net48 required by DocFX 2.x)
Hazelcast.Net.Testing
dll: netstandard2.0;netstandard2.1 (tooling)
Hazelcast.Net.JetBrainsAnnotations
dll: netstandard2.0 (tooling)
Our tests and benchmarks:
Hazelcast.Net.Benchmarks
exe: netcoreapp5.0 (test)
Hazelcast.Net.Tests
dll: net462;net48;netcoreapp3.1;net5.0 (test)
Hazelcast.Net.Examples
dll: net462;net48;netcoreapp3.1;net5.0 (test)
The 3 packages we ship:
Hazelcast.Net
dll: netstandard2.0;netstandard2.1;net5.0 (ship)
Hazelcast.Net.DependencyInjection
dll: netstandard2.0;netstandard2.1;net5.0 (ship)
Hazelcast.Net.Win32
dll: netstandard2.0;netstandard2.1;net5.0 (ship)
NUGET
-----
Do *NOT* upgrade these packages without understanding what you do:
- System.Composition 1.0.31 in Hazelcast.Net.DocAsCode required by DocFX
- NUnit 3.12.0 in Hazelcast.Net.Tests as long as https://github.com/nunit/nunit3-vs-adapter/issues/780 is not fixed!
- NUnit3TestAdapter 3.16.1 same as above
/