Compare commits

...

2 Commits

Author SHA1 Message Date
Adam Hathcock
8d16925662 Add Profile259 2016-07-18 14:37:39 +01:00
Adam Hathcock
ef0bf2758e Add Silverlight 5 2016-07-13 13:26:01 +01:00
4 changed files with 44 additions and 3 deletions

View File

@@ -34,6 +34,12 @@ I'm always looking for help or ideas. Please submit code or email with ideas. Un
## Version Log
### Version 0.12.2
* Support Profile 259 again
### Version 0.12.1
* Support Silverlight 5
### Version 0.12.0
* .NET Core RTM!
* Bug fix for Tar long paths

View File

@@ -65,11 +65,13 @@ namespace SharpCompress.IO
{
throw new NotSupportedException();
}
#if !SILVERLIGHT
public override decimal ReadDecimal()
{
throw new NotSupportedException();
}
#endif
public override double ReadDouble()
{

View File

@@ -1,5 +1,5 @@
{
"version": "0.12.0",
"version": "0.12.2",
"title": "SharpCompress - Pure C# Decompression/Compression",
"authors": [ "Adam Hathcock" ],
"language": "en-US",
@@ -30,6 +30,39 @@
"allowUnsafe": true
}
},
"sl5": {
"buildOptions": {
"warningsAsErrors": true,
"allowUnsafe": true,
"define": [ "NO_FILE", "NO_CRYPTO", "SILVERLIGHT" ]
},
"frameworkAssemblies": {
"mscorlib": "",
"System": "",
"System.Core": ""
}
},
".NETPortable,Version=v4.5,Profile=Profile259": {
"buildOptions": {
"warningsAsErrors": true,
"allowUnsafe": true,
"define": [ "NO_FILE", "NO_CRYPTO", "SILVERLIGHT" ]
},
"frameworkAssemblies": {
"Microsoft.CSharp": "",
"System": "",
"System.Collections": "",
"System.Core": "",
"System.Diagnostics.Debug": "",
"System.IO": "",
"System.Linq": "",
"System.Linq.Expressions": "",
"System.Resources.ResourceManager": "",
"System.Runtime": "",
"System.Runtime.Extensions": "",
"System.Text.Encoding": ""
}
},
"netstandard1.0": {
"buildOptions": {
"warningsAsErrors": true,

View File

@@ -17,7 +17,7 @@
},
"dependencies": {
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
"SharpCompress": "0.12.0",
"SharpCompress": "0.12.2",
"xunit": "2.2.0-beta2-build3300",
"dotnet-test-xunit": "2.2.0-preview2-build1029"
}