Skip to content

Commit

Permalink
正式版發布前準備
Browse files Browse the repository at this point in the history
  • Loading branch information
maxzh1999tw committed Jan 17, 2024
1 parent e8480c3 commit c5c3278
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Excely.ClosedXML/Excely.ClosedXML.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Authors>Max Zheng</Authors>
<Version>0.1.0-alpha</Version>
<Version>1.0.0</Version>
<Description>Excely 的 ClosedXML 擴展,以 ClosedXML 來處理 Excel 檔案。</Description>
<Copyright>Copyright (c) MaxZheng 2023</Copyright>
<PackageProjectUrl>https://github.com/maxzh1999tw/Excely</PackageProjectUrl>
Expand All @@ -16,7 +16,7 @@
<RepositoryUrl>https://github.com/maxzh1999tw/Excely</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>excel,csv,import,export</PackageTags>
<PackageReleaseNotes>預覽版本</PackageReleaseNotes>
<PackageReleaseNotes></PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Excely.EPPlus.LGPL/Excely.EPPlus.LGPL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>0.1.0-alpha</Version>
<Version>1.0.0</Version>
<Authors>Max Zheng</Authors>
<Description>Excely 的 EPPlus 擴展,以最後一版 LGPL 的 EPPlus 來處理 Excel 檔案。</Description>
<Copyright>Copyright (c) MaxZheng 2023</Copyright>
Expand All @@ -16,7 +16,7 @@
<RepositoryUrl>https://github.com/maxzh1999tw/Excely</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>excel,csv,import,export</PackageTags>
<PackageReleaseNotes>預覽版本</PackageReleaseNotes>
<PackageReleaseNotes></PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Excely/Excely.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
<PackageProjectUrl>https://github.com/maxzh1999tw/Excely</PackageProjectUrl>
<PackageTags>excel,csv,import,export</PackageTags>
<PackageIcon>Excely-128x128.png</PackageIcon>
<Version>0.1.0-alpha</Version>
<Version>1.0.0</Version>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>預覽版本</PackageReleaseNotes>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions Excely/TableConverters/ClassListTableConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ public delegate bool ErrorHandlingPolicyDelegate(
public static string? DefaultPropertyNamePolicy(PropertyInfo property) => property.Name;

public static int? DefaultPropertyIndexPolicy(PropertyInfo[] allProperties, PropertyInfo property) => Array.IndexOf(allProperties, property);

public static object? DefaultPropertyValueSettingPolicy(PropertyInfo property, object? originalValue) => originalValue;

public static bool DefaultErrorHandlingPolicyDelegate(
CellLocation cellLocation,
TClass writtingObject,
Expand Down
6 changes: 1 addition & 5 deletions Excely/TableConverters/DictionaryListTableConverter.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Formats.Asn1;
using System.Reflection;

namespace Excely.TableConverters
namespace Excely.TableConverters
{
/// <summary>
/// 將 Table 轉換為字典列表。
Expand Down
5 changes: 1 addition & 4 deletions Excely/TableFactories/DictionaryListTableFactory.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System.Formats.Asn1;
using System.Reflection;

namespace Excely.TableFactories
namespace Excely.TableFactories
{
/// <summary>
/// 提供以字典 Key 為欄位,將字典集合傾印至表格的功能。
Expand Down

0 comments on commit c5c3278

Please sign in to comment.