You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"llmsSummary": "A small, dependency-free .NET library to create and read Microsoft Excel (XLSX) files. Modular plugin architecture: a Core package plus optional Reader, Writer, and Formatting plugins. Targets .NET Standard 2.0 and .NET Framework 4.5+."
9
+
"llmsSummary": "A small, dependency-free .NET library to create and read Microsoft Excel (XLSX) files. Modular plugin architecture: a Core package plus optional Reader, Writer, and Formatting plugins. Targets .NET Standard 2.0 and .NET Framework 4.5+.",
10
+
"llmsBodyParagraph": "NanoXLSX is a meta-package bundling NanoXLSX.Core, NanoXLSX.Reader, NanoXLSX.Writer, and NanoXLSX.Formatting.",
11
+
"llmsUsageSnippetLanguage": "csharp",
12
+
"llmsUsageSnippet": "Workbook workbook = new Workbook(\"myWorkbook.xlsx\", \"Sheet1\");\nworkbook.CurrentWorksheet.AddNextCell(\"Some Data\");\nworkbook.CurrentWorksheet.AddNextCell(42);\nworkbook.CurrentWorksheet.GoToNextRow();\nworkbook.CurrentWorksheet.AddNextCell(DateTime.Now);\nworkbook.Save();\n\n\\\\Reading a workbook\nWorkbook workbook = WorkbookReader.Load(\"myWorkbook.xlsx\");",
// Optional section (spec-defined: these entries can be skipped in short contexts)
101
115
sb.AppendLine();
102
-
sb.AppendLine("## Demos");
103
-
sb.AppendLine();
104
-
sb.Append("- Repository with running demo use cases: ").AppendLine(root.DemoRepositoryUrl);
105
-
sb.Append("- Direct folder URL with use cases for ").Append(root.ProjectName).Append(": ").AppendLine(root.DemoRepositoryUseCaseUrl);
106
-
107
-
sb.AppendLine();
108
-
sb.AppendLine("## Notes");
116
+
sb.AppendLine("## Optional");
109
117
sb.AppendLine();
110
-
sb.AppendLine("- Docs.IndexGenerator/ is a build utility and not part of the public API.");
111
-
sb.AppendLine("- This file is generated automatically on build from Docs.IndexGenerator/Config/*.json — do not edit by hand.");
118
+
sb.Append("- [Demo repository](").Append(root.DemoRepositoryUrl).AppendLine("): Running demo use cases");
119
+
sb.Append("- [").Append(root.ProjectName).Append(" demo use cases](").Append(root.DemoRepositoryUseCaseUrl).AppendLine("): Direct folder with NanoXLSX examples");
120
+
if(!string.IsNullOrEmpty(root.WikiUrl))
121
+
sb.Append("- [Getting started](").Append(root.WikiUrl).AppendLine("): Wiki / getting started guide");
Copy file name to clipboardExpand all lines: llms.txt
+27-17Lines changed: 27 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -2,35 +2,45 @@
2
2
3
3
> A small, dependency-free .NET library to create and read Microsoft Excel (XLSX) files. Modular plugin architecture: a Core package plus optional Reader, Writer, and Formatting plugins. Targets .NET Standard 2.0 and .NET Framework 4.5+.
4
4
5
-
## Packages
5
+
NanoXLSX is a meta-package bundling NanoXLSX.Core, NanoXLSX.Reader, NanoXLSX.Writer, and NanoXLSX.Formatting.
6
6
7
-
Meta package **NanoXLSX v3.1.0** bundles all of the below.
7
+
## Packages
8
8
9
9
- [NanoXLSX](https://www.nuget.org/packages/NanoXLSX): NanoXLSX is a library to generate and read Microsoft Excel files (XLSX) in an easy and native way. This package is the meta package of NanoXLSX and should be used in most cases as dependency in your project.
10
10
- [NanoXLSX.Core](https://www.nuget.org/packages/NanoXLSX.Core): Core library: workbooks, worksheets, cells, styles, colors. Has no external dependencies. (bundled)
11
11
- [NanoXLSX.Reader](https://www.nuget.org/packages/NanoXLSX.Reader): Reader plugin: extension methods to load XLSX files. Depends on Core. (bundled)
12
12
- [NanoXLSX.Writer](https://www.nuget.org/packages/NanoXLSX.Writer): Writer plugin: extension methods to save XLSX files. Depends on Core. (bundled)
13
13
- [NanoXLSX.Formatting](https://www.nuget.org/packages/NanoXLSX.Formatting): Formatting plugin: in-line cell formatting (rich text). Depends on Core. Maintained in an external repository. (bundled)
0 commit comments