Skip to content

Commit

Permalink
Update v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rabanti-github committed Jan 22, 2024
1 parent d9d6b4f commit 7965e6f
Show file tree
Hide file tree
Showing 47 changed files with 333 additions and 323 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.3.1

---
Release Date: **22.01.2024**

- Fixed a bug when reading fill styles. Bug fix provided by Marq Watkin
- Fixed a bug regarding casting floats to integers, in the worksheet reader. Bug fix provided by wappenull
- Removed broken debug code in tests
- Code maintenance

## v2.3.0

---
Expand Down
103 changes: 52 additions & 51 deletions Demo .NET Standard/Demo .NET Standard.csproj
Original file line number Diff line number Diff line change
@@ -1,52 +1,53 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>NanoXLSX</RootNamespace>
<AssemblyName>NanoXLSX.Demo</AssemblyName>
<VersionPrefix>1.6.0</VersionPrefix>

<Title>NanoXLSX Demo</Title>
<Product>NanoXLSX</Product>
<Company>Raphael Stoeckli</Company>
<Authors>Raphael Stoeckli</Authors>
<Copyright>Copyright Raphael Stoeckli © 2023</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>

<OutputType>exe</OutputType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<TargetFramework>net5.0</TargetFramework>

<StartupObject>Demo.Program</StartupObject>

<Version>2.3.0</Version>

<AssemblyVersion>2.3.0.0</AssemblyVersion>

<FileVersion>2.3.0.0</FileVersion>

<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

<PackageLicenseExpression>MIT</PackageLicenseExpression>

<PackageIcon>NanoXLSX.png</PackageIcon>

<PackageIconUrl />

<PackageTags>XLSX Excel ExcelWriter ExcelReader Office</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Demo\Program.cs" Link="Program.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NanoXLSX .NET Standard\NanoXLSX .NET Standard.csproj" />
</ItemGroup>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>NanoXLSX</RootNamespace>
<AssemblyName>NanoXLSX.Demo</AssemblyName>
<VersionPrefix>1.6.0</VersionPrefix>

<Title>NanoXLSX Demo</Title>
<Product>NanoXLSX</Product>
<Company>Raphael Stoeckli</Company>
<Authors>Raphael Stoeckli</Authors>
<Copyright>Copyright Raphael Stoeckli © 2024</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>

<OutputType>exe</OutputType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<TargetFramework>net5.0</TargetFramework>

<StartupObject>Demo.Program</StartupObject>

<Version>2.3.1</Version>

<AssemblyVersion>2.3.1.0</AssemblyVersion>

<FileVersion>2.3.1.0</FileVersion>

<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

<PackageLicenseExpression>MIT</PackageLicenseExpression>

<PackageIcon>NanoXLSX.png</PackageIcon>

<PackageIconUrl />

<PackageTags>XLSX Excel ExcelWriter ExcelReader Office</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Demo\Program.cs" Link="Program.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NanoXLSX .NET Standard\NanoXLSX .NET Standard.csproj" />
<ProjectReference Include="..\NanoXLSX\NanoXLSX.csproj" />
</ItemGroup>
</Project>
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 © 2023
* Copyright Raphael Stoeckli © 2024
* 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 Demo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("NanoXLSX")]
[assembly: AssemblyCopyright("Copyright Raphael Stoeckli © 2023")]
[assembly: AssemblyCopyright("Copyright Raphael Stoeckli © 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.0.0")]
[assembly: AssemblyFileVersion("2.3.0.0")]
[assembly: AssemblyVersion("2.3.1.0")]
[assembly: AssemblyFileVersion("2.3.1.0")]
216 changes: 108 additions & 108 deletions NanoXLSX .NET Standard/NanoXLSX .NET Standard.csproj
Original file line number Diff line number Diff line change
@@ -1,109 +1,109 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>NanoXLSX</RootNamespace>
<AssemblyName>NanoXLSX</AssemblyName>
<PackageId>NanoXLSX</PackageId>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>

<Title>NanoXLSX</Title>
<VersionPrefix>1.6.0</VersionPrefix>
<Product>NanoXLSX</Product>
<Company>Raphael Stoeckli</Company>
<Authors>Raphael Stoeckli</Authors>
<Copyright>Copyright Raphael Stoeckli © 2023</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>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageIconUrl></PackageIconUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageTags>Excel Office XLSX</PackageTags>
<PackageIcon>NanoXLSX.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseFile></PackageLicenseFile>
<PackageReleaseNotes>Please see https://github.com/rabanti-github/NanoXLSX/blob/master/Changelog.md for the release notes</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
<FileVersion>2.3.0.0</FileVersion>
<Version>2.3.0</Version>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\NanoXLSX.xml</DocumentationFile>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DocumentationFile></DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\NanoXLSX\Address.cs" Link="Address.cs" />
<Compile Include="..\NanoXLSX\BasicFormulas.cs" Link="BasicFormulas.cs" />
<Compile Include="..\NanoXLSX\Cell.cs" Link="Cell.cs" />
<Compile Include="..\NanoXLSX\Column.cs" Link="Column.cs" />
<Compile Include="..\NanoXLSX\Exceptions\FormatException.cs" Link="Exceptions\FormatException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\IOException.cs" Link="Exceptions\IOException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\RangeException.cs" Link="Exceptions\RangeException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\StyleException.cs" Link="Exceptions\StyleException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\WorksheetException.cs" Link="Exceptions\WorksheetException.cs" />
<Compile Include="..\NanoXLSX\ImportOptions.cs" Link="ImportOptions.cs" />
<Compile Include="..\NanoXLSX\LowLevel\DocumentPath.cs" Link="LowLevel\DocumentPath.cs" />
<Compile Include="..\NanoXLSX\LowLevel\MetadataReader.cs" Link="LowLevel\MetadataReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\ReaderUtils.cs" Link="LowLevel\ReaderUtils.cs" />
<Compile Include="..\NanoXLSX\LowLevel\SharedStringsReader.cs" Link="LowLevel\SharedStringsReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\SortedMap.cs" Link="LowLevel\SortedMap.cs" />
<Compile Include="..\NanoXLSX\LowLevel\StyleReader.cs" Link="LowLevel\StyleReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\StyleReaderContainer.cs" Link="LowLevel\StyleReaderContainer.cs" />
<Compile Include="..\NanoXLSX\LowLevel\WorkbookReader.cs" Link="LowLevel\WorkbookReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\WorksheetReader.cs" Link="LowLevel\WorksheetReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\RelationshipReader.cs" Link="LowLevel\RelationshipReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\XlsxReader.cs" Link="LowLevel\XlsxReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\XlsxWriter.cs" Link="LowLevel\XlsxWriter.cs" />
<Compile Include="..\NanoXLSX\Metadata.cs" Link="Metadata.cs" />
<Compile Include="..\NanoXLSX\Range.cs" Link="Range.cs" />
<Compile Include="..\NanoXLSX\Shortener.cs" Link="Shortener.cs" />
<Compile Include="..\NanoXLSX\Styles\AbstractStyle.cs" Link="Styles\AbstractStyle.cs" />
<Compile Include="..\NanoXLSX\Styles\AppendAttribute.cs" Link="Styles\AppendAttribute.cs" />
<Compile Include="..\NanoXLSX\Styles\BasicStyles.cs" Link="Styles\BasicStyles.cs" />
<Compile Include="..\NanoXLSX\Styles\Border.cs" Link="Styles\Border.cs" />
<Compile Include="..\NanoXLSX\Styles\CellXf.cs" Link="Styles\CellXf.cs" />
<Compile Include="..\NanoXLSX\Styles\Fill.cs" Link="Styles\Fill.cs" />
<Compile Include="..\NanoXLSX\Styles\Font.cs" Link="Styles\Font.cs" />
<Compile Include="..\NanoXLSX\Styles\NumberFormat.cs" Link="Styles\NumberFormat.cs" />
<Compile Include="..\NanoXLSX\Styles\Style.cs" Link="Styles\Style.cs" />
<Compile Include="..\NanoXLSX\Styles\StyleManager.cs" Link="Styles\StyleManager.cs" />
<Compile Include="..\NanoXLSX\Styles\StyleRepository.cs" Link="Styles\StyleRepository.cs" />
<Compile Include="..\NanoXLSX\Utils.cs" Link="Utils.cs" />
<Compile Include="..\NanoXLSX\Workbook.cs" Link="Workbook.cs" />
<Compile Include="..\NanoXLSX\Worksheet.cs" Link="Worksheet.cs" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.IO.Packaging" Version="4.7.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System.IO.Compression" />
<Reference Include="WindowsBase" />
</ItemGroup>

<ItemGroup>
<Folder Include="Exceptions\" />
<Folder Include="LowLevel\" />
</ItemGroup>

<ItemGroup>
<None Include="NanoXLSX.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>NanoXLSX</RootNamespace>
<AssemblyName>NanoXLSX</AssemblyName>
<PackageId>NanoXLSX</PackageId>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>

<Title>NanoXLSX</Title>
<VersionPrefix>1.6.0</VersionPrefix>
<Product>NanoXLSX</Product>
<Company>Raphael Stoeckli</Company>
<Authors>Raphael Stoeckli</Authors>
<Copyright>Copyright Raphael Stoeckli © 2024</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>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageIconUrl></PackageIconUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageTags>Excel Office XLSX</PackageTags>
<PackageIcon>NanoXLSX.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseFile></PackageLicenseFile>
<PackageReleaseNotes>Please see https://github.com/rabanti-github/NanoXLSX/blob/master/Changelog.md for the release notes</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AssemblyVersion>2.3.1.0</AssemblyVersion>
<FileVersion>2.3.1.0</FileVersion>
<Version>2.3.1</Version>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\NanoXLSX.xml</DocumentationFile>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DocumentationFile></DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\NanoXLSX\Address.cs" Link="Address.cs" />
<Compile Include="..\NanoXLSX\BasicFormulas.cs" Link="BasicFormulas.cs" />
<Compile Include="..\NanoXLSX\Cell.cs" Link="Cell.cs" />
<Compile Include="..\NanoXLSX\Column.cs" Link="Column.cs" />
<Compile Include="..\NanoXLSX\Exceptions\FormatException.cs" Link="Exceptions\FormatException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\IOException.cs" Link="Exceptions\IOException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\RangeException.cs" Link="Exceptions\RangeException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\StyleException.cs" Link="Exceptions\StyleException.cs" />
<Compile Include="..\NanoXLSX\Exceptions\WorksheetException.cs" Link="Exceptions\WorksheetException.cs" />
<Compile Include="..\NanoXLSX\ImportOptions.cs" Link="ImportOptions.cs" />
<Compile Include="..\NanoXLSX\LowLevel\DocumentPath.cs" Link="LowLevel\DocumentPath.cs" />
<Compile Include="..\NanoXLSX\LowLevel\MetadataReader.cs" Link="LowLevel\MetadataReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\ReaderUtils.cs" Link="LowLevel\ReaderUtils.cs" />
<Compile Include="..\NanoXLSX\LowLevel\SharedStringsReader.cs" Link="LowLevel\SharedStringsReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\SortedMap.cs" Link="LowLevel\SortedMap.cs" />
<Compile Include="..\NanoXLSX\LowLevel\StyleReader.cs" Link="LowLevel\StyleReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\StyleReaderContainer.cs" Link="LowLevel\StyleReaderContainer.cs" />
<Compile Include="..\NanoXLSX\LowLevel\WorkbookReader.cs" Link="LowLevel\WorkbookReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\WorksheetReader.cs" Link="LowLevel\WorksheetReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\RelationshipReader.cs" Link="LowLevel\RelationshipReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\XlsxReader.cs" Link="LowLevel\XlsxReader.cs" />
<Compile Include="..\NanoXLSX\LowLevel\XlsxWriter.cs" Link="LowLevel\XlsxWriter.cs" />
<Compile Include="..\NanoXLSX\Metadata.cs" Link="Metadata.cs" />
<Compile Include="..\NanoXLSX\Range.cs" Link="Range.cs" />
<Compile Include="..\NanoXLSX\Shortener.cs" Link="Shortener.cs" />
<Compile Include="..\NanoXLSX\Styles\AbstractStyle.cs" Link="Styles\AbstractStyle.cs" />
<Compile Include="..\NanoXLSX\Styles\AppendAttribute.cs" Link="Styles\AppendAttribute.cs" />
<Compile Include="..\NanoXLSX\Styles\BasicStyles.cs" Link="Styles\BasicStyles.cs" />
<Compile Include="..\NanoXLSX\Styles\Border.cs" Link="Styles\Border.cs" />
<Compile Include="..\NanoXLSX\Styles\CellXf.cs" Link="Styles\CellXf.cs" />
<Compile Include="..\NanoXLSX\Styles\Fill.cs" Link="Styles\Fill.cs" />
<Compile Include="..\NanoXLSX\Styles\Font.cs" Link="Styles\Font.cs" />
<Compile Include="..\NanoXLSX\Styles\NumberFormat.cs" Link="Styles\NumberFormat.cs" />
<Compile Include="..\NanoXLSX\Styles\Style.cs" Link="Styles\Style.cs" />
<Compile Include="..\NanoXLSX\Styles\StyleManager.cs" Link="Styles\StyleManager.cs" />
<Compile Include="..\NanoXLSX\Styles\StyleRepository.cs" Link="Styles\StyleRepository.cs" />
<Compile Include="..\NanoXLSX\Utils.cs" Link="Utils.cs" />
<Compile Include="..\NanoXLSX\Workbook.cs" Link="Workbook.cs" />
<Compile Include="..\NanoXLSX\Worksheet.cs" Link="Worksheet.cs" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.IO.Packaging" Version="4.7.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System.IO.Compression" />
<Reference Include="WindowsBase" />
</ItemGroup>

<ItemGroup>
<Folder Include="Exceptions\" />
<Folder Include="LowLevel\" />
</ItemGroup>

<ItemGroup>
<None Include="NanoXLSX.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>
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 © 2023
* Copyright Raphael Stoeckli © 2024
* 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 © 2023
* Copyright Raphael Stoeckli © 2024
* 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/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 © 2023
* Copyright Raphael Stoeckli © 2024
* 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/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 © 2023
* Copyright Raphael Stoeckli © 2024
* 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 7965e6f

Please sign in to comment.