Skip to content

Commit

Permalink
**【Nuget】版本更新到2.2.0-beta9**
Browse files Browse the repository at this point in the history
【Excel模板导出】修复只存在一列时的导出 #73

【Excel导入】支持返回表头和索引 #76

【Excel导入导入】#63

支持使用System.ComponentModel.DataAnnotations命名空间下的部分特性来控制导入导出,比如

DisplayAttribute

DisplayFormatAttribute

DescriptionAttribute

封装简单的易于使用的单一特性,例如

IEIgnoreAttribute(可作用于属性、枚举成员,可影响导入和导出)
  • Loading branch information
codelove1314 committed Apr 16, 2020
1 parent 4782872 commit 7b5ae25
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 6 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

**一旦成为贡献者,我们将会邀请您加入Magicodes.IE管理委员会的微信群,并拥有相关的投票权。**

最新版本:**2.2.0-beta8**
最新版本:**2.2.0-beta9**

## 疯狂的徽章

Expand Down Expand Up @@ -278,6 +278,18 @@

### **更新历史**

#### **2020.04.16**
- **【Nuget】版本更新到2.2.0-beta9**
- **【Excel模板导出】修复只存在一列时的导出 [#73](https://github.com/dotnetcore/Magicodes.IE/issues/73)**
- **【Excel导入】支持返回表头和索引 [#76](https://github.com/dotnetcore/Magicodes.IE/issues/76)**
- **【Excel导入导入】[#63](https://github.com/dotnetcore/Magicodes.IE/issues/63)**
- 支持使用System.ComponentModel.DataAnnotations命名空间下的部分特性来控制导入导出,比如
- DisplayAttribute
- DisplayFormatAttribute
- DescriptionAttribute
- 封装简单的易于使用的单一特性,例如
- IEIgnoreAttribute(可作用于属性、枚举成员,可影响导入和导出)

#### **2020.04.02**
- **【Nuget】版本更新到2.2.0-beta8**
- **【Excel模板导出】支持图片 [#61](https://github.com/dotnetcore/Magicodes.IE/issues/61)**
Expand All @@ -293,7 +305,7 @@
#### **2020.03.26**
- **【Nuget】版本更新到2.2.0-beta4**
- **【Excel多Sheet导出】修复[#66](https://github.com/dotnetcore/Magicodes.IE/issues/66),并添加单元测试**

#### **2020.03.25**
- **【Nuget】版本更新到2.2.0-beta3**
- **【Excel导入】修复日期问题 [#68](https://github.com/dotnetcore/Magicodes.IE/issues/68)**
Expand Down Expand Up @@ -334,7 +346,7 @@
/// <returns></returns>
Task<byte[]> ExportAppendDataAsByteArray();

````
````

- **【Excel导出】支持多个实体导出多个Sheet**,感谢@ccccccmd 的贡献 [#pr52](https://github.com/dotnetcore/Magicodes.IE/pull/52) ,Issue见 [#50](https://github.com/dotnetcore/Magicodes.IE/issues/50)。使用代码参考,具体见单元测试(ExportMutiCollection_Test):

Expand Down
21 changes: 18 additions & 3 deletions common.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>2.2.0-beta8</Version>
<Version>2.2.0-beta9</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>雪雁</Authors>
Expand All @@ -13,10 +13,25 @@
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
2.2.0-beta8

**2020.04.16**

- **【Nuget】版本更新到2.2.0-beta9**
- **【Excel模板导出】修复只存在一列时的导出 [#73](https://github.com/dotnetcore/Magicodes.IE/issues/73)**
- **【Excel导入】支持返回表头和索引 [#76](https://github.com/dotnetcore/Magicodes.IE/issues/76)**
- **【Excel导入导入】[#63](https://github.com/dotnetcore/Magicodes.IE/issues/63)**
- 支持使用System.ComponentModel.DataAnnotations命名空间下的部分特性来控制导入导出,比如
- DisplayAttribute
- DisplayFormatAttribute
- DescriptionAttribute
- 封装简单的易于使用的单一特性,例如
- IEIgnoreAttribute(可作用于属性、枚举成员,可影响导入和导出)

**2020.04.02**
2.2.0-beta8
【Excel模板导出】支持图片 [#61](https://github.com/dotnetcore/Magicodes.IE/issues/61)

2.2.0-beta7
2.2.0-beta7
【Excel模板导出】修复渲染问题 [#51](https://github.com/dotnetcore/Magicodes.IE/issues/51)
</Description>
</PropertyGroup>
Expand Down

0 comments on commit 7b5ae25

Please sign in to comment.