Skip to content

Commit 9332672

Browse files
committed
Merge branch 'update-framework' into 'master'.
2 parents 68b04e1 + f9c82ab commit 9332672

77 files changed

Lines changed: 115 additions & 36780 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ src/packages/
1111
*.DotSettings.user
1212
*.csproj.user
1313
.vs/
14-
14+
*.csproj.user
15+
*.DotSettings.user

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Changelog
2+
3+
### 2.0.0
4+
5+
* Remove support for Microsoft Jet
6+
* MS Ace driver is now a hard requirement
7+
* Target AnyCPU
8+
* Switch .Net framework to 4.5.1
9+
110
### 1.11.0
211

312
* Refactorings
-165 KB
Binary file not shown.
-70 KB
Binary file not shown.

lib/Remotion/Remotion.dll

-728 KB
Binary file not shown.

package/LinqToExcel.nuspec

Lines changed: 0 additions & 13 deletions
This file was deleted.

project.build

Lines changed: 0 additions & 163 deletions
This file was deleted.

src/LinqToExcel.Tests/Company.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class Company
66
{
77
public string Name { get; set; }
88
public string CEO { get; set; }
9-
public int EmployeeCount { get; set; }
9+
public int? EmployeeCount { get; set; }
1010
public DateTime StartDate { get; set; }
1111
public bool IsActive { get; set; }
1212
}

src/LinqToExcel.Tests/IndexToColumnNamesTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using System.Collections.Generic;
44
using System.Linq;
55
using System.Text;
6-
using System.Threading.Tasks;
76

87
namespace LinqToExcel.Tests
98
{

0 commit comments

Comments
 (0)