Skip to content

Commit 58446fd

Browse files
Update v2.6.0
1 parent 3f9cb3f commit 58446fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+230
-221
lines changed

Changelog.md

Lines changed: 10 additions & 0 deletions

Demo/Demo.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Product>NanoXLSX</Product>
77
<Company>Raphael Stoeckli</Company>
88
<Authors>Raphael Stoeckli</Authors>
9-
<Copyright>Copyright Raphael Stoeckli © 2024</Copyright>
9+
<Copyright>Copyright Raphael Stoeckli © 2025</Copyright>
1010
<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>
1111
<PackageProjectUrl>https://github.com/rabanti-github/NanoXLSX</PackageProjectUrl>
1212
<RepositoryUrl>https://github.com/rabanti-github/NanoXLSX.git</RepositoryUrl>
@@ -15,9 +15,9 @@
1515
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1616
<TargetFrameworks>net45;net5.0</TargetFrameworks>
1717
<StartupObject>Demo.Program</StartupObject>
18-
<Version>2.5.2</Version>
19-
<AssemblyVersion>2.5.2.0</AssemblyVersion>
20-
<FileVersion>2.5.1.0</FileVersion>
18+
<Version>2.6.0</Version>
19+
<AssemblyVersion>2.6.0.0</AssemblyVersion>
20+
<FileVersion>2.6.0.0</FileVersion>
2121
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
2222
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2323
<PackageTags>XLSX Excel ExcelWriter ExcelReader Office</PackageTags>

Demo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3-
* Copyright Raphael Stoeckli © 2024
3+
* Copyright Raphael Stoeckli © 2025
44
* This library is licensed under the MIT License.
55
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
66
*/

Documentation/CodeDocumentation.shfbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<VisibleItems>InheritedMembers, InheritedFrameworkMembers, Internals, Privates, Protected, SealedProtected, ProtectedInternalAsProtected, EditorBrowsableNever, NonBrowsable</VisibleItems>
4242
<FeedbackEMailAddress>
4343
</FeedbackEMailAddress>
44-
<CopyrightText>Copyright Raphael Stoeckli &amp;#169%3b 2024</CopyrightText>
44+
<CopyrightText>Copyright Raphael Stoeckli &amp;#169%3b 2025</CopyrightText>
4545
<SaveComponentCacheCapacity>100</SaveComponentCacheCapacity>
4646
<WarnOnMissingSourceContext>False</WarnOnMissingSourceContext>
4747
<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

NanoXLSX/Address.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3-
* Copyright Raphael Stoeckli © 2024
3+
* Copyright Raphael Stoeckli © 2025
44
* This library is licensed under the MIT License.
55
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
66
*/

NanoXLSX/BasicFormulas.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3-
* Copyright Raphael Stoeckli © 2024
3+
* Copyright Raphael Stoeckli © 2025
44
* This library is licensed under the MIT License.
55
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
66
*/

NanoXLSX/Cell.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3-
* Copyright Raphael Stoeckli © 2024
3+
* Copyright Raphael Stoeckli © 2025
44
* This library is licensed under the MIT License.
55
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
66
*/
@@ -206,7 +206,7 @@ public Cell(object value, CellType type)
206206
/// <param name="type">Type of the cell</param>
207207
/// <param name="address">Address of the cell</param>
208208
/// <remarks>If the <see cref="DataType"/> is defined as <see cref="CellType.EMPTY"/> any passed value will be set to null</remarks>
209-
public Cell(Object value, CellType type, string address)
209+
public Cell(object value, CellType type, string address)
210210
{
211211
if (type == CellType.EMPTY)
212212
{
@@ -231,7 +231,7 @@ public Cell(Object value, CellType type, string address)
231231
/// <param name="type">Type of the cell</param>
232232
/// <param name="address">Address struct of the cell</param>
233233
/// <remarks>If the <see cref="DataType"/> is defined as <see cref="CellType.EMPTY"/> any passed value will be set to null</remarks>
234-
public Cell(Object value, CellType type, Address address)
234+
public Cell(object value, CellType type, Address address)
235235
{
236236
if (type == CellType.EMPTY)
237237
{

NanoXLSX/Column.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3-
* Copyright Raphael Stoeckli © 2024
3+
* Copyright Raphael Stoeckli © 2025
44
* This library is licensed under the MIT License.
55
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
66
*/

NanoXLSX/Exceptions/FormatException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3-
* Copyright Raphael Stoeckli © 2024
3+
* Copyright Raphael Stoeckli © 2025
44
* This library is licensed under the MIT License.
55
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
66
*/

NanoXLSX/Exceptions/IOException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3-
* Copyright Raphael Stoeckli © 2024
3+
* Copyright Raphael Stoeckli © 2025
44
* This library is licensed under the MIT License.
55
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
66
*/

0 commit comments

Comments
 (0)