Skip to content

Commit d5a650b

Browse files
Update README.md
1 parent 6570f6f commit d5a650b

1 file changed

Lines changed: 5 additions & 11 deletions

File tree

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ NanoXLSX v3 is split into modular NuGet packages:
2626
| Module | Status | Description |
2727
|--------|--------|-------------|
2828
| **[NanoXLSX.Core](https://www.nuget.org/packages/NanoXLSX.Core)** | :green_circle: Mandatory, Bundled | Core library with workbooks, worksheets, cells, styles. No external dependencies |
29-
| **[NanoXLSX.Reader](https://www.nuget.org/packages/NanoXLSX.Reader)** | :blue_circle: Optional, Bundled | Extension methods to read/load XLSX files. Depends on Core |
30-
| **[NanoXLSX.Writer](https://www.nuget.org/packages/NanoXLSX.Writer)** | :blue_circle: Optional, Bundled | Extension methods to write/save XLSX files. Depends on Core |
31-
| **[NanoXLSX.Formatting](https://www.nuget.org/packages/NanoXLSX.Formatting)** | :blue_circle: Optional, Bundled | In-line cell formatting (rich text). [External repo](https://github.com/rabanti-github/NanoXLSX.Formatting). Depends on Core |
29+
| **[NanoXLSX.Reader](https://www.nuget.org/packages/NanoXLSX.Reader)** | :large_blue_circle: Optional, Bundled | Extension methods to read/load XLSX files. Depends on Core |
30+
| **[NanoXLSX.Writer](https://www.nuget.org/packages/NanoXLSX.Writer)** | :large_blue_circle: Optional, Bundled | Extension methods to write/save XLSX files. Depends on Core |
31+
| **[NanoXLSX.Formatting](https://www.nuget.org/packages/NanoXLSX.Formatting)** | :large_blue_circle: Optional, Bundled | In-line cell formatting (rich text). [External repo](https://github.com/rabanti-github/NanoXLSX.Formatting). Depends on Core |
3232
| **[NanoXLSX](https://www.nuget.org/packages/NanoXLSX)** | :star: Meta-Package | Bundles all of the above. **Recommended for most users** |
3333

3434
> **Note:** All bundled modules are included when you install the `NanoXLSX` meta-package. There are currently no non-bundled (standalone) modules.
@@ -93,7 +93,7 @@ The Test project and GitHub Actions may also require dependencies like unit test
9393

9494
## :inbox_tray: Installation
9595

96-
### Using NuGet
96+
### Using NuGet (recommended)
9797

9898
By package Manager (PM):
9999

@@ -107,13 +107,7 @@ By .NET CLI:
107107
dotnet add package NanoXLSX
108108
```
109109

110-
### As DLL
111-
112-
Simply place the NanoXLSX DLL into your .NET project and add a reference to it. Please keep in mind that the .NET version of your solution must match with the runtime version of the NanoXLSX DLL (currently compiled with 4.5 and .NET Standard 2.0).
113-
114-
### As source files
115-
116-
Place all .CS files from the NanoXLSX source folder and its sub-folders into your project. In case of the .NET >=4.5 version, the necessary dependencies have to be referenced as well.
110+
:information_source: **Note**: Other methods like adding DLLs or source files directly into your project are technically still possible, but **not recommended** anymore. Use dependency management, whenever possible
117111

118112
## :bulb: Usage
119113

0 commit comments

Comments
 (0)