Skip to content
This repository was archived by the owner on Jan 5, 2021. It is now read-only.

Commit c2debee

Browse files
committed
Target .NET Standard 1.0 platform
Target .NET Standard 1.0 platform to support all PCL profiles and .NET Framework 3.5+. Do not track changes in lock.json files. Add release dates to changelog.
1 parent cf84103 commit c2debee

File tree

8 files changed

+19
-8085
lines changed

8 files changed

+19
-8085
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,7 @@ FakesAssemblies/
200200
/out/
201201
/src/packages/
202202
/src/packet-files/
203+
204+
# .NET Core preview tools
205+
*.lock.json
206+

CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
## 1.0.11.93
2+
3+
2017-02-28
4+
25
- ADDED: support for .NET Core / .NET Standard 1.6
36
- CHANGED: converted C++ projects to VC++ 2015
47
- NOTE: support for Xamarin (Android and iOS) is still questionable
58

69
## 1.0.10.93
10+
11+
2016-03-14
12+
713
- BUGFIX: support for Mono (with full .NET 4 assembly, not only Portable)
814
- ISSUE: added InteractiveRead mode (useful with network streams)
915
- DEPRECATED: some LZ4Stream constructors are now depreacated, please use new ones instead
1016

1117
## 1.0.9.93
18+
19+
2015-09-25
20+
1221
- ADDED: support for .NET 2
1322
- ADDED: support for Windows Phone
1423
- ADDED: support for Xamarin (Android and iOS)

src/LZ4.netcore/Properties/AssemblyInfo.cs

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,4 @@
1313
// Setting ComVisible to false makes the types in this assembly not visible
1414
// to COM components. If you need to access a type in this assembly from
1515
// COM, set the ComVisible attribute to true on that type.
16-
[assembly: ComVisible(false)]
17-
18-
// The following GUID is for the ID of the typelib if this project is exposed to COM
19-
[assembly: Guid("a887c2ca-33ad-416a-a20a-640605b7bef2")]
16+
[assembly: ComVisible(false)]

src/LZ4.netcore/project.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
"version": "1.0.0-*",
33

44
"dependencies": {
5-
"LZ4pn.dnx": "1.0.0-*",
5+
"LZ4pn.dnx": { "target": "project"},
66
"NETStandard.Library": "1.6.0"
77
},
88

99
"frameworks": {
10-
"netstandard1.6": {
11-
"imports": "dnxcore50"
12-
}
10+
"netstandard1.0": {},
11+
"net35": {}
1312
},
1413

1514
"configurations": {

0 commit comments

Comments
 (0)