Skip to content

Commit

Permalink
Update v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rabanti-github committed Nov 24, 2024
2 parents f574551 + 31374b7 commit d3f2575
Show file tree
Hide file tree
Showing 18 changed files with 76 additions and 522 deletions.
4 changes: 3 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
## v2.5.2

---
Release Date: **23.11.2024**
Release Date: **24.11.2024**

- Fixed a bug of the column address (letter) resolution. Column letters above 'Z' were resolved incorrectly
- Changed async handing of the workbook reader, to avoid deadlocks. Change provided by Jarren Long
- Simplified project structure (unified .Net 4.x and Standard). Change provided by Jarren Long
- Added tests for column address resolution

## v2.5.1
Expand Down
6 changes: 0 additions & 6 deletions Demo .NET Standard/App.config

This file was deleted.

52 changes: 0 additions & 52 deletions Demo .NET Standard/Demo .NET Standard.csproj

This file was deleted.

6 changes: 0 additions & 6 deletions Demo/App.config

This file was deleted.

83 changes: 27 additions & 56 deletions Demo/Demo.csproj
Original file line number Diff line number Diff line change
@@ -1,41 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{724CB7BF-A98C-4A0C-855A-4CAC66231746}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Demo</RootNamespace>
<AssemblyName>Demo</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<RootNamespace>NanoXLSX</RootNamespace>
<AssemblyName>NanoXLSX.Demo</AssemblyName>
<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>
<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>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>XLSX Excel ExcelWriter ExcelReader Office</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Demo.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NanoXLSX\NanoXLSX.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
Expand All @@ -44,29 +40,4 @@
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Testing\Performance.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Testing\TypeTesting.cs" />
<Compile Include="Testing\Utils.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NanoXLSX\NanoXLSX.csproj">
<Project>{a70e40aa-98c1-453a-8030-b4798a89ebfc}</Project>
<Name>NanoXLSX</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
36 changes: 0 additions & 36 deletions Demo/Properties/AssemblyInfo.cs

This file was deleted.

45 changes: 0 additions & 45 deletions Demo/Properties/AssemblyInfo.cs.bak

This file was deleted.

45 changes: 0 additions & 45 deletions Demo/Properties/AssemblyInfo.cs.orig

This file was deleted.

4 changes: 2 additions & 2 deletions Documentation/CodeDocumentation.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<DisableCodeBlockComponent>False</DisableCodeBlockComponent>
<CleanIntermediates>True</CleanIntermediates>
<DocumentationSources>
<DocumentationSource sourceFile="..\NanoXLSX .NET Standard\bin\Debug\net45\NanoXLSX.xml" />
<DocumentationSource sourceFile="..\NanoXLSX .NET Standard\bin\Debug\net45\NanoXLSX.dll" />
<DocumentationSource sourceFile="..\NanoXLSX\bin\Debug\net45\NanoXLSX.xml" />
<DocumentationSource sourceFile="..\NanoXLSX\bin\Debug\net45\NanoXLSX.dll" />
</DocumentationSources>
<HelpFileVersion>1.0.0.0</HelpFileVersion>
<MaximumGroupParts>2</MaximumGroupParts>
Expand Down
Empty file.
Empty file.
Loading

0 comments on commit d3f2575

Please sign in to comment.