Skip to content

Commit

Permalink
Update v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rabanti-github committed Jan 12, 2025
1 parent 3f9cb3f commit 58446fd
Show file tree
Hide file tree
Showing 45 changed files with 230 additions and 221 deletions.
10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## v2.6.0

---
Release Date: **12.01.2025**

- Added InsertRow and InsertColumn functions. Functionality provided by Alexander Schlecht
- Added FirstCewllByValue, FirstOrDefaultCell, CellsByValue functions. Functionality provided by Alexander Schlecht
- Added ReplaceCellValue function. Functionality provided by Alexander Schlecht
- Code maintenance

## v2.5.2

---
Expand Down
8 changes: 4 additions & 4 deletions Demo/Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Product>NanoXLSX</Product>
<Company>Raphael Stoeckli</Company>
<Authors>Raphael Stoeckli</Authors>
<Copyright>Copyright Raphael Stoeckli © 2024</Copyright>
<Copyright>Copyright Raphael Stoeckli © 2025</Copyright>
<Description>Demo Library showing the use of NanoXLSX, a library to generate and read Microsoft Excel files (XLSX) in an easy and native way</Description>
<PackageProjectUrl>https://github.com/rabanti-github/NanoXLSX</PackageProjectUrl>
<RepositoryUrl>https://github.com/rabanti-github/NanoXLSX.git</RepositoryUrl>
Expand All @@ -15,9 +15,9 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFrameworks>net45;net5.0</TargetFrameworks>
<StartupObject>Demo.Program</StartupObject>
<Version>2.5.2</Version>
<AssemblyVersion>2.5.2.0</AssemblyVersion>
<FileVersion>2.5.1.0</FileVersion>
<Version>2.6.0</Version>
<AssemblyVersion>2.6.0.0</AssemblyVersion>
<FileVersion>2.6.0.0</FileVersion>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>XLSX Excel ExcelWriter ExcelReader Office</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion Demo/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion Documentation/CodeDocumentation.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<VisibleItems>InheritedMembers, InheritedFrameworkMembers, Internals, Privates, Protected, SealedProtected, ProtectedInternalAsProtected, EditorBrowsableNever, NonBrowsable</VisibleItems>
<FeedbackEMailAddress>
</FeedbackEMailAddress>
<CopyrightText>Copyright Raphael Stoeckli &amp;#169%3b 2024</CopyrightText>
<CopyrightText>Copyright Raphael Stoeckli &amp;#169%3b 2025</CopyrightText>
<SaveComponentCacheCapacity>100</SaveComponentCacheCapacity>
<WarnOnMissingSourceContext>False</WarnOnMissingSourceContext>
<ProjectSummary>&amp;lt%3bp&amp;gt%3bNanoXLSX is a small .NET / C# library to create and read XLSX files %28Microsoft Excel 2007 or newer%29 in an easy and native way&amp;lt%3b/p&amp;gt%3b
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Address.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/BasicFormulas.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
6 changes: 3 additions & 3 deletions NanoXLSX/Cell.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down Expand Up @@ -206,7 +206,7 @@ public Cell(object value, CellType type)
/// <param name="type">Type of the cell</param>
/// <param name="address">Address of the cell</param>
/// <remarks>If the <see cref="DataType"/> is defined as <see cref="CellType.EMPTY"/> any passed value will be set to null</remarks>
public Cell(Object value, CellType type, string address)
public Cell(object value, CellType type, string address)
{
if (type == CellType.EMPTY)
{
Expand All @@ -231,7 +231,7 @@ public Cell(Object value, CellType type, string address)
/// <param name="type">Type of the cell</param>
/// <param name="address">Address struct of the cell</param>
/// <remarks>If the <see cref="DataType"/> is defined as <see cref="CellType.EMPTY"/> any passed value will be set to null</remarks>
public Cell(Object value, CellType type, Address address)
public Cell(object value, CellType type, Address address)
{
if (type == CellType.EMPTY)
{
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Column.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Exceptions/FormatException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Exceptions/IOException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Exceptions/RangeException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Exceptions/StyleException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Exceptions/WorksheetException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/ImportOptions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/DocumentPath.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/MetadataReader.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/ReaderUtils.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/RelationshipReader.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/SharedStringsReader.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/SortedMap.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/StyleReader.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/StyleReaderContainer.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/WorkbookReader.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/WorksheetReader.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/XlsxReader.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/LowLevel/XlsxWriter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Metadata.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
8 changes: 4 additions & 4 deletions NanoXLSX/NanoXLSX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Product>NanoXLSX</Product>
<Company>Raphael Stoeckli</Company>
<Authors>Raphael Stoeckli</Authors>
<Copyright>Copyright Raphael Stoeckli © 2024</Copyright>
<Copyright>Copyright Raphael Stoeckli © 2025</Copyright>
<Description>NanoXLSX is a library to generate and read Microsoft Excel files (XLSX) in an easy and native way</Description>
<PackageProjectUrl>https://github.com/rabanti-github/NanoXLSX</PackageProjectUrl>
<RepositoryUrl>https://github.com/rabanti-github/NanoXLSX.git</RepositoryUrl>
Expand All @@ -23,9 +23,9 @@
<PackageLicenseFile></PackageLicenseFile>
<PackageReleaseNotes>Please see https://github.com/rabanti-github/NanoXLSX/blob/master/Changelog.md for the release notes</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>2.5.2</Version>
<AssemblyVersion>2.5.2.0</AssemblyVersion>
<FileVersion>2.5.2.0</FileVersion>
<Version>2.6.0</Version>
<AssemblyVersion>2.6.0.0</AssemblyVersion>
<FileVersion>2.6.0.0</FileVersion>
<RepositoryType>git</RepositoryType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Range.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Shortener.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/AbstractStyle.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/AppendAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/BasicStyles.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/Border.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/CellXf.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/Fill.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/Font.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/NumberFormat.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/Style.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/StyleManager.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Styles/StyleRepository.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Utils.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion NanoXLSX/Workbook.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
* Copyright Raphael Stoeckli © 2024
* Copyright Raphael Stoeckli © 2025
* This library is licensed under the MIT License.
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
*/
Expand Down
Loading

0 comments on commit 58446fd

Please sign in to comment.