Skip to content

Commit 536b301

Browse files
committed
[doc] origin path to mini-software path
1 parent 02da0eb commit 536b301

18 files changed

+200
-200
lines changed

README-NuGet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Please Check [Release Notes](docs)
4444

4545
### TODO
4646

47-
Please Check [TODO](https://github.com/shps951023/MiniExcel/projects/1?fullscreen=true)
47+
Please Check [TODO](https://github.com/mini-software/MiniExcel/projects/1?fullscreen=true)
4848

4949
### Performance
5050

@@ -64,7 +64,7 @@ Intel Core i7-7700 CPU 3.60GHz (Kaby Lake), 1 CPU, 8 logical and 4 physical core
6464
IterationCount=3 LaunchCount=3 WarmupCount=3
6565
```
6666

67-
Benchmark History : [Link](https://github.com/shps951023/MiniExcel/issues/276)
67+
Benchmark History : [Link](https://github.com/mini-software/MiniExcel/issues/276)
6868

6969

7070

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<p><a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/nuget/v/MiniExcel.svg" alt="NuGet"></a> <a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/nuget/dt/MiniExcel.svg" alt=""></a>
3-
<a href="https://ci.appveyor.com/project/shps951023/miniexcel/branch/master"><img src="https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true" alt="Build status"></a>
4-
<a href="https://gitee.com/dotnetchina/MiniExcel"><img src="https://gitee.com/dotnetchina/MiniExcel/badge/star.svg" alt="star"></a> <a href="https://github.com/shps951023/MiniExcel" rel="nofollow"><img src="https://img.shields.io/github/stars/shps951023/MiniExcel?logo=github" alt="GitHub stars"></a>
3+
<a href="https://ci.appveyor.com/project/mini-software/miniexcel/branch/master"><img src="https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true" alt="Build status"></a>
4+
<a href="https://gitee.com/dotnetchina/MiniExcel"><img src="https://gitee.com/dotnetchina/MiniExcel/badge/star.svg" alt="star"></a> <a href="https://github.com/mini-software/MiniExcel" rel="nofollow"><img src="https://img.shields.io/github/stars/mini-software/MiniExcel?logo=github" alt="GitHub stars"></a>
55
<a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/badge/.NET-%3E%3D%204.5-red.svg" alt="version"></a>
66
</p>
77
</div>
@@ -23,7 +23,7 @@
2323
---
2424

2525
<div align="center">
26-
Your <a href="https://github.com/shps951023/MiniExcel">Star</a> and <a href="https://miniexcel.github.io">Donate</a> can make MiniExcel better
26+
Your <a href="https://github.com/mini-software/MiniExcel">Star</a> and <a href="https://miniexcel.github.io">Donate</a> can make MiniExcel better
2727
</div>
2828

2929
---
@@ -71,7 +71,7 @@ Please Check [Release Notes](docs)
7171

7272
### TODO
7373

74-
Please Check [TODO](https://github.com/shps951023/MiniExcel/projects/1?fullscreen=true)
74+
Please Check [TODO](https://github.com/mini-software/MiniExcel/projects/1?fullscreen=true)
7575

7676
### Performance
7777

@@ -91,7 +91,7 @@ Intel Core i7-7700 CPU 3.60GHz (Kaby Lake), 1 CPU, 8 logical and 4 physical core
9191
IterationCount=3 LaunchCount=3 WarmupCount=3
9292
```
9393

94-
Benchmark History : [Link](https://github.com/shps951023/MiniExcel/issues/276)
94+
Benchmark History : [Link](https://github.com/mini-software/MiniExcel/issues/276)
9595

9696

9797

@@ -875,9 +875,9 @@ Code
875875
```csharp
876876
var projects = new[]
877877
{
878-
new {Name = "MiniExcel",Link="https://github.com/shps951023/MiniExcel",Star=146, CreateTime=new DateTime(2021,03,01)},
879-
new {Name = "HtmlTableHelper",Link="https://github.com/shps951023/HtmlTableHelper",Star=16, CreateTime=new DateTime(2020,02,01)},
880-
new {Name = "PocoClassGenerator",Link="https://github.com/shps951023/PocoClassGenerator",Star=16, CreateTime=new DateTime(2019,03,17)}
878+
new {Name = "MiniExcel",Link="https://github.com/mini-software/MiniExcel",Star=146, CreateTime=new DateTime(2021,03,01)},
879+
new {Name = "HtmlTableHelper",Link="https://github.com/mini-software/HtmlTableHelper",Star=16, CreateTime=new DateTime(2020,02,01)},
880+
new {Name = "PocoClassGenerator",Link="https://github.com/mini-software/PocoClassGenerator",Star=16, CreateTime=new DateTime(2019,03,17)}
881881
};
882882
var value = new
883883
{
@@ -1853,7 +1853,7 @@ private IEnumerable<Dictionary<int, object>> ConvertToIntIndexRows(IEnumerable<o
18531853

18541854
#### Q. No title empty excel is generated when the value is empty when exporting Excel
18551855

1856-
Because MiniExcel uses a logic similar to JSON.NET to dynamically get type from values to simplify API operations, type cannot be knew without data. You can check [issue #133](https://github.com/shps951023/MiniExcel/issues/133) for understanding.
1856+
Because MiniExcel uses a logic similar to JSON.NET to dynamically get type from values to simplify API operations, type cannot be knew without data. You can check [issue #133](https://github.com/mini-software/MiniExcel/issues/133) for understanding.
18571857

18581858
![image](https://user-images.githubusercontent.com/12729184/122639771-546c0c00-d12e-11eb-800c-498db27889ca.png)
18591859

@@ -1982,4 +1982,4 @@ Link https://github.com/orgs/mini-software/discussions/754
19821982

19831983
### Contributors
19841984

1985-
![](https://contrib.rocks/image?repo=shps951023/MiniExcel)
1985+
![](https://contrib.rocks/image?repo=mini-software/MiniExcel)

README.zh-CN.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<p><a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/nuget/v/MiniExcel.svg" alt="NuGet"></a> <a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/nuget/dt/MiniExcel.svg" alt=""></a>
3-
<a href="https://ci.appveyor.com/project/shps951023/miniexcel/branch/master"><img src="https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true" alt="Build status"></a>
4-
<a href="https://gitee.com/dotnetchina/MiniExcel"><img src="https://gitee.com/dotnetchina/MiniExcel/badge/star.svg" alt="star"></a> <a href="https://github.com/shps951023/MiniExcel" rel="nofollow"><img src="https://img.shields.io/github/stars/shps951023/MiniExcel?logo=github" alt="GitHub stars"></a>
3+
<a href="https://ci.appveyor.com/project/mini-software/miniexcel/branch/master"><img src="https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true" alt="Build status"></a>
4+
<a href="https://gitee.com/dotnetchina/MiniExcel"><img src="https://gitee.com/dotnetchina/MiniExcel/badge/star.svg" alt="star"></a> <a href="https://github.com/mini-software/MiniExcel" rel="nofollow"><img src="https://img.shields.io/github/stars/mini-software/MiniExcel?logo=github" alt="GitHub stars"></a>
55
<a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/badge/.NET-%3E%3D%204.5-red.svg" alt="version"></a>
66
</p>
77
</div>
@@ -23,7 +23,7 @@
2323
---
2424

2525
<div align="center">
26-
<p> 您的 <a href="https://github.com/shps951023/miniexcel">Star</a>、<a href="https://miniexcel.github.io">赞助</a> 和 <a href="https://edu.51cto.com/course/32914.html">购买视频</a> 能帮助 MiniExcel 成长 </p>
26+
<p> 您的 <a href="https://github.com/mini-software/miniexcel">Star</a>、<a href="https://miniexcel.github.io">赞助</a> 和 <a href="https://edu.51cto.com/course/32914.html">购买视频</a> 能帮助 MiniExcel 成长 </p>
2727
</div>
2828

2929
---
@@ -70,7 +70,7 @@ MiniExcel简单、高效避免OOM的.NET处理Excel查、写、填充数据工
7070

7171
### TODO
7272

73-
请查看 [TODO](https://github.com/shps951023/MiniExcel/projects/1?fullscreen=true)
73+
请查看 [TODO](https://github.com/mini-software/MiniExcel/projects/1?fullscreen=true)
7474

7575
### 性能比较、测试
7676

@@ -90,7 +90,7 @@ Intel Core i7-7700 CPU 3.60GHz (Kaby Lake), 1 CPU, 8 logical and 4 physical core
9090
IterationCount=3 LaunchCount=3 WarmupCount=3
9191
```
9292

93-
Benchmark History : [Link](https://github.com/shps951023/MiniExcel/issues/276)
93+
Benchmark History : [Link](https://github.com/mini-software/MiniExcel/issues/276)
9494

9595

9696
#### 导入、查询 Excel 比较
@@ -846,9 +846,9 @@ MiniExcel.SaveAsByTemplate(path, templatePath, value);
846846
```csharp
847847
var projects = new[]
848848
{
849-
new {Name = "MiniExcel",Link="https://github.com/shps951023/MiniExcel",Star=146, CreateTime=new DateTime(2021,03,01)},
850-
new {Name = "HtmlTableHelper",Link="https://github.com/shps951023/HtmlTableHelper",Star=16, CreateTime=new DateTime(2020,02,01)},
851-
new {Name = "PocoClassGenerator",Link="https://github.com/shps951023/PocoClassGenerator",Star=16, CreateTime=new DateTime(2019,03,17)}
849+
new {Name = "MiniExcel",Link="https://github.com/mini-software/MiniExcel",Star=146, CreateTime=new DateTime(2021,03,01)},
850+
new {Name = "HtmlTableHelper",Link="https://github.com/mini-software/HtmlTableHelper",Star=16, CreateTime=new DateTime(2020,02,01)},
851+
new {Name = "PocoClassGenerator",Link="https://github.com/mini-software/PocoClassGenerator",Star=16, CreateTime=new DateTime(2019,03,17)}
852852
};
853853
var value = new
854854
{
@@ -1712,7 +1712,7 @@ private IEnumerable<Dictionary<int, object>> ConvertToIntIndexRows(IEnumerable<o
17121712

17131713
#### Q. 导出时数组为空时生成没有标题空 Excel
17141714

1715-
因为 MiniExcel 使用类似 JSON.NET 动态从值获取类别机制简化 API 操作,没有数据就无法获取类别。可以查看[ issue #133](https://github.com/shps951023/MiniExcel/issues/133) 了解。
1715+
因为 MiniExcel 使用类似 JSON.NET 动态从值获取类别机制简化 API 操作,没有数据就无法获取类别。可以查看[ issue #133](https://github.com/mini-software/MiniExcel/issues/133) 了解。
17161716

17171717
![image](https://user-images.githubusercontent.com/12729184/122639771-546c0c00-d12e-11eb-800c-498db27889ca.png)
17181718

@@ -1844,5 +1844,5 @@ Link https://github.com/orgs/mini-software/discussions/754
18441844

18451845
### Contributors
18461846

1847-
![](https://contrib.rocks/image?repo=shps951023/MiniExcel)
1847+
![](https://contrib.rocks/image?repo=mini-software/MiniExcel)
18481848

README.zh-Hant.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<p><a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/nuget/v/MiniExcel.svg" alt="NuGet"></a> <a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/nuget/dt/MiniExcel.svg" alt=""></a>
3-
<a href="https://ci.appveyor.com/project/shps951023/miniexcel/branch/master"><img src="https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true" alt="Build status"></a>
4-
<a href="https://gitee.com/dotnetchina/MiniExcel"><img src="https://gitee.com/dotnetchina/MiniExcel/badge/star.svg" alt="star"></a> <a href="https://github.com/shps951023/MiniExcel" rel="nofollow"><img src="https://img.shields.io/github/stars/shps951023/MiniExcel?logo=github" alt="GitHub stars"></a>
3+
<a href="https://ci.appveyor.com/project/mini-software/miniexcel/branch/master"><img src="https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true" alt="Build status"></a>
4+
<a href="https://gitee.com/dotnetchina/MiniExcel"><img src="https://gitee.com/dotnetchina/MiniExcel/badge/star.svg" alt="star"></a> <a href="https://github.com/mini-software/MiniExcel" rel="nofollow"><img src="https://img.shields.io/github/stars/mini-software/MiniExcel?logo=github" alt="GitHub stars"></a>
55
<a href="https://www.nuget.org/packages/MiniExcel"><img src="https://img.shields.io/badge/.NET-%3E%3D%204.5-red.svg" alt="version"></a>
66
</p>
77
</div>
@@ -23,7 +23,7 @@
2323
---
2424

2525
<div align="center">
26-
<p> 您的 <a href="https://github.com/shps951023/miniexcel">Star</a> 和 <a href="https://miniexcel.github.io">贊助</a> 能幫助 MiniExcel 成長 </p>
26+
<p> 您的 <a href="https://github.com/mini-software/miniexcel">Star</a> 和 <a href="https://miniexcel.github.io">贊助</a> 能幫助 MiniExcel 成長 </p>
2727
</div>
2828

2929
---
@@ -68,7 +68,7 @@ MiniExcel 簡單、高效避免OOM的.NET處理Excel查、寫、填充工具。
6868

6969
### TODO
7070

71-
請查看 [TODO](https://github.com/shps951023/MiniExcel/projects/1?fullscreen=true)
71+
請查看 [TODO](https://github.com/mini-software/MiniExcel/projects/1?fullscreen=true)
7272

7373
### 性能比較、測試
7474

@@ -88,7 +88,7 @@ Intel Core i7-7700 CPU 3.60GHz (Kaby Lake), 1 CPU, 8 logical and 4 physical core
8888
IterationCount=3 LaunchCount=3 WarmupCount=3
8989
```
9090

91-
Benchmark History : [Link](https://github.com/shps951023/MiniExcel/issues/276)
91+
Benchmark History : [Link](https://github.com/mini-software/MiniExcel/issues/276)
9292

9393

9494

@@ -849,9 +849,9 @@ MiniExcel.SaveAsByTemplate(path, templatePath, value);
849849
```csharp
850850
var projects = new[]
851851
{
852-
new {Name = "MiniExcel",Link="https://github.com/shps951023/MiniExcel",Star=146, CreateTime=new DateTime(2021,03,01)},
853-
new {Name = "HtmlTableHelper",Link="https://github.com/shps951023/HtmlTableHelper",Star=16, CreateTime=new DateTime(2020,02,01)},
854-
new {Name = "PocoClassGenerator",Link="https://github.com/shps951023/PocoClassGenerator",Star=16, CreateTime=new DateTime(2019,03,17)}
852+
new {Name = "MiniExcel",Link="https://github.com/mini-software/MiniExcel",Star=146, CreateTime=new DateTime(2021,03,01)},
853+
new {Name = "HtmlTableHelper",Link="https://github.com/mini-software/HtmlTableHelper",Star=16, CreateTime=new DateTime(2020,02,01)},
854+
new {Name = "PocoClassGenerator",Link="https://github.com/mini-software/PocoClassGenerator",Star=16, CreateTime=new DateTime(2019,03,17)}
855855
};
856856
var value = new
857857
{
@@ -1705,7 +1705,7 @@ private IEnumerable<Dictionary<int, object>> ConvertToIntIndexRows(IEnumerable<o
17051705

17061706
#### Q. 導出時數組為空時生成沒有標題空 Excel
17071707

1708-
因為 MiniExcel 使用類似 JSON.NET 動態從值獲取類別機制簡化 API 操作,沒有數據就無法獲取類別。可以查看[ issue #133](https://github.com/shps951023/MiniExcel/issues/133) 了解。
1708+
因為 MiniExcel 使用類似 JSON.NET 動態從值獲取類別機制簡化 API 操作,沒有數據就無法獲取類別。可以查看[ issue #133](https://github.com/mini-software/MiniExcel/issues/133) 了解。
17091709

17101710
![image](https://user-images.githubusercontent.com/12729184/122639771-546c0c00-d12e-11eb-800c-498db27889ca.png)
17111711

@@ -1829,4 +1829,4 @@ Link https://github.com/orgs/mini-software/discussions/754
18291829

18301830
### Contributors
18311831

1832-
![](https://contrib.rocks/image?repo=shps951023/MiniExcel)
1832+
![](https://contrib.rocks/image?repo=mini-software/MiniExcel)

0 commit comments

Comments
 (0)