Skip to content

Commit

Permalink
Made SPSS library .NET core enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Roeland Nieuwenhuis committed Feb 26, 2016
1 parent f9078ba commit 32a4c0d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 266 deletions.
259 changes: 0 additions & 259 deletions SpssLib/DataReader/SpssDataReader.cs

This file was deleted.

7 changes: 0 additions & 7 deletions SpssLib/FileParser/SavFileParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.IO;
using SpssLib.Compression;
using SpssLib.FileParser.Records;
using System.Data;
using SpssLib.SpssDataset;

namespace SpssLib.FileParser
Expand Down Expand Up @@ -305,12 +304,6 @@ public SpssDataset.SpssDataset ToSpssDataset()
return new SpssDataset.SpssDataset(this);
}

[Obsolete("Use SpssDataReader constructor directly")]
public IDataReader GetDataReader()
{
return new DataReader.SpssDataReader(this);
}

public void Dispose()
{
Dispose(true);
Expand Down
16 changes: 16 additions & 0 deletions SpssLib/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"frameworks": {
"dnx451": {},
"dnxcore50": {
"frameworkAssemblies": {
"System.Core": "4.0.0.0",
"System": "4.0.0.0",
"System.Xml.Linq": "4.0.0.0",
"System.Data": "4.0.0.0",
"System.Data.DataSetExtensions": "4.0.0.0",
"System.Xml": "4.0.0.0",
"System.Data.Common": "4.0.0.0"
}
}
}
}

0 comments on commit 32a4c0d

Please sign in to comment.