simplexcel 2.1.0.31
See the version list below for details.
dotnet add package simplexcel --version 2.1.0.31
NuGet\Install-Package simplexcel -Version 2.1.0.31
<PackageReference Include="simplexcel" Version="2.1.0.31" />
paket add simplexcel --version 2.1.0.31
#r "nuget: simplexcel, 2.1.0.31"
// Install simplexcel as a Cake Addin #addin nuget:?package=simplexcel&version=2.1.0.31 // Install simplexcel as a Cake Tool #tool nuget:?package=simplexcel&version=2.1.0.31
A 100% managed code library to generate Excel .xlsx Workbooks. Can be safely used on a server, no COM Interop or other unsafe/unsupported operations.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- System.IO.Compression (>= 4.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.1.0.195 | 37,746 | 5/1/2022 |
3.0.2.193 | 135,417 | 12/26/2020 |
3.0.1.184 | 39,987 | 11/20/2019 |
3.0.0.181 | 4,846 | 11/8/2019 |
2.3.0.174 | 1,016 | 11/2/2019 |
2.2.1.71 | 3,299 | 9/19/2018 |
2.2.0.60 | 10,169 | 2/24/2018 |
2.1.0.31 | 2,036 | 9/25/2017 |
2.0.5.23 | 1,203 | 9/24/2017 |
2.0.4.13 | 1,536 | 9/17/2017 |
2.0.3.6 | 1,618 | 9/7/2017 |
2.0.1 | 1,142 | 5/18/2017 |
2.0.0 | 1,116 | 4/22/2017 |
1.0.5 | 6,177 | 1/30/2014 |
1.0.4 | 1,294 | 1/21/2014 |
1.0.3 | 1,367 | 8/20/2013 |
1.0.2 | 1,608 | 1/10/2013 |
2.1.0 (2017-09-25)
* Functional Change: Numbers with more than 11 digits are forced as Text by Default, because of a limitation in Excel. To restore the previous functionality, you can set Worksheet.LargeNumberHandlingMode to LargeNumberHandlingMode.None. You can also use Cell.IsLargeNumber to check if a given number would be affected by this.
* Functional Change: Worksheet.Populate/Worksheet.FromData now also reads properties from base classes.
Worksheet.Populate/Worksheet.FromData accept a new argument, cacheTypeColumns which defaults to false. If set to true, then Simplexcel will cache the Reflection-based lookup of object properties. This is useful for if you have a few types that you create sheets from a lot.
* You can add [XlsxColumn] to a Property so that Worksheet.Populate/Worksheet.FromData can set the column name and a given column order. Caveat: If you set ColumnIndex on some, but not all Properties, the properties without a ColumnIndex will be on the right of the last assigned column, even if that means gaps. I recommend that you either set ColumnIndex on all properties or none.
* You can add [XlsxIgnoreColumn] to a Property so that Worksheet.Populate/Worksheet.FromData ignores it.
* Added Cell.HorizontalAlignment and Cell.VerticalAlignment to allow setting the alignment of a cell (left/center/right/justify, top/middle/bottom/justify).
* Added XmlDoc to Nuget package, so you should get Intellisense with proper comments now.