Skip to content

Commit 43de469

Browse files
authored
Merge pull request #11 from fenase/2.3
2.3
2 parents bf0d1d4 + c6b8700 commit 43de469

39 files changed

+2181
-763
lines changed

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
name: 'Dependency Review'
88
on: [pull_request]
99

10-
1110
permissions:
1211
contents: read
1312

@@ -18,4 +17,4 @@ jobs:
1817
- name: 'Checkout Repository'
1918
uses: actions/checkout@v3
2019
- name: 'Dependency Review'
21-
uses: actions/dependency-review-action@v2
20+
uses: actions/dependency-review-action@v3
Lines changed: 135 additions & 135 deletions
Original file line numberDiff line numberDiff line change
@@ -1,140 +1,140 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard1.3;net40;net46;net48;net35</TargetFrameworks>
5-
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
6-
<Title>Create large Excel files with stylesheet Quickly using SAX</Title>
7-
<Description>Create Excel files using OpenXML SAX with styling.
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0;netstandard1.3;net40;net46;net48;net6.0;net35</TargetFrameworks>
5+
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
6+
<Title>Create large Excel files with stylesheet Quickly using SAX</Title>
7+
<Description>Create Excel files using OpenXML SAX with styling.
88
This is specially useful when trying to write tens of thousands of rows.</Description>
9-
<Authors>Federico Seckel</Authors>
10-
<PackageTags>Excel;SAX;OpenXML;</PackageTags>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
12-
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
13-
<EnableNETAnalyzers>True</EnableNETAnalyzers>
14-
<AnalysisLevel>latest-all</AnalysisLevel>
15-
<VersionSuffix>2.2.$([System.DateTime]::UtcNow.ToString(yyyy)).$([System.DateTime]::UtcNow.DayOfYear.ToString())$([System.DateTime]::UtcNow.ToString(HH))</VersionSuffix>
16-
<Version Condition=" '$(VersionSuffix)' == '' ">2.2.0.0</Version>
17-
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)</Version>
18-
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
19-
<Deterministic>True</Deterministic>
20-
<LangVersion>latest</LangVersion>
21-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
22-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
23-
<PackageProjectUrl>https://www.nuget.org/packages/BigExcelCreator/#readme-body-tab</PackageProjectUrl>
24-
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../CHANGELOG.md"))</PackageReleaseNotes>
25-
<GenerateDocumentationFile>True</GenerateDocumentationFile>
26-
</PropertyGroup>
27-
28-
29-
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
30-
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
31-
<DebugType>embedded</DebugType>
32-
</PropertyGroup>
33-
34-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
35-
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
36-
<DebugType>embedded</DebugType>
37-
</PropertyGroup>
38-
39-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
40-
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
41-
<DebugType>embedded</DebugType>
42-
</PropertyGroup>
43-
44-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
45-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
46-
<DebugType>embedded</DebugType>
47-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
48-
</PropertyGroup>
49-
50-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
51-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
52-
<DebugType>embedded</DebugType>
53-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
54-
</PropertyGroup>
55-
56-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.3|AnyCPU'">
57-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
58-
<DebugType>embedded</DebugType>
59-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
60-
</PropertyGroup>
61-
62-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.3|AnyCPU'">
63-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
64-
<DebugType>embedded</DebugType>
65-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
66-
</PropertyGroup>
67-
68-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|AnyCPU'">
69-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
70-
<DebugType>embedded</DebugType>
71-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
72-
</PropertyGroup>
73-
74-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'">
75-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
76-
<DebugType>embedded</DebugType>
77-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
78-
</PropertyGroup>
79-
80-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net46|AnyCPU'">
81-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
82-
<DebugType>embedded</DebugType>
83-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
84-
</PropertyGroup>
85-
86-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net46|AnyCPU'">
87-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
88-
<DebugType>embedded</DebugType>
89-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
90-
</PropertyGroup>
91-
92-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net48|AnyCPU'">
93-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
94-
<DebugType>embedded</DebugType>
95-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
96-
</PropertyGroup>
97-
98-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net48|AnyCPU'">
99-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
100-
<DebugType>embedded</DebugType>
101-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
102-
</PropertyGroup>
103-
104-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net35|AnyCPU'">
105-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
106-
<DebugType>embedded</DebugType>
107-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
108-
</PropertyGroup>
109-
110-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net35|AnyCPU'">
111-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
112-
<DebugType>embedded</DebugType>
113-
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
114-
</PropertyGroup>
115-
116-
<ItemGroup>
117-
<None Include="..\README.md">
118-
<Pack>True</Pack>
119-
<PackagePath>\</PackagePath>
120-
</None>
121-
<None Include="..\CHANGELOG.md">
122-
<Pack>True</Pack>
123-
<PackagePath>\</PackagePath>
124-
</None>
125-
<None Include="..\LICENSE">
126-
<Pack>True</Pack>
127-
<PackagePath>\</PackagePath>
128-
</None>
129-
</ItemGroup>
130-
131-
132-
<ItemGroup>
133-
<PackageReference Include="DocumentFormat.OpenXml" Version="2.18.0" />
134-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
135-
<PrivateAssets>all</PrivateAssets>
136-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
137-
</PackageReference>
138-
</ItemGroup>
9+
<Authors>Federico Seckel</Authors>
10+
<PackageTags>Excel;SAX;OpenXML;</PackageTags>
11+
<PackageReadmeFile>README.md</PackageReadmeFile>
12+
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
13+
<EnableNETAnalyzers>True</EnableNETAnalyzers>
14+
<AnalysisLevel>latest-all</AnalysisLevel>
15+
<VersionSuffix>2.3.$([System.DateTime]::UtcNow.ToString(yyyy)).$([System.DateTime]::UtcNow.DayOfYear.ToString())$([System.DateTime]::UtcNow.ToString(HH))</VersionSuffix>
16+
<Version Condition=" '$(VersionSuffix)' == '' ">2.3.0.0</Version>
17+
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)</Version>
18+
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
19+
<Deterministic>True</Deterministic>
20+
<LangVersion>latest</LangVersion>
21+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
22+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
23+
<PackageProjectUrl>https://www.nuget.org/packages/BigExcelCreator/#readme-body-tab</PackageProjectUrl>
24+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../CHANGELOG.md"))</PackageReleaseNotes>
25+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
26+
<NoWarn>1701;1702;S3220</NoWarn>
27+
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
28+
</PropertyGroup>
29+
30+
31+
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
32+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
33+
<DebugType>embedded</DebugType>
34+
</PropertyGroup>
35+
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
37+
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
38+
<DebugType>embedded</DebugType>
39+
</PropertyGroup>
40+
41+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
42+
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
43+
<DebugType>embedded</DebugType>
44+
</PropertyGroup>
45+
46+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
47+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
48+
<DebugType>embedded</DebugType>
49+
</PropertyGroup>
50+
51+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
52+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
53+
<DebugType>embedded</DebugType>
54+
</PropertyGroup>
55+
56+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.3|AnyCPU'">
57+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
58+
<DebugType>embedded</DebugType>
59+
</PropertyGroup>
60+
61+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.3|AnyCPU'">
62+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
63+
<DebugType>embedded</DebugType>
64+
</PropertyGroup>
65+
66+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|AnyCPU'">
67+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
68+
<DebugType>embedded</DebugType>
69+
</PropertyGroup>
70+
71+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'">
72+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
73+
<DebugType>embedded</DebugType>
74+
</PropertyGroup>
75+
76+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net46|AnyCPU'">
77+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
78+
<DebugType>embedded</DebugType>
79+
</PropertyGroup>
80+
81+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net46|AnyCPU'">
82+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
83+
<DebugType>embedded</DebugType>
84+
</PropertyGroup>
85+
86+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net48|AnyCPU'">
87+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
88+
<DebugType>embedded</DebugType>
89+
</PropertyGroup>
90+
91+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net48|AnyCPU'">
92+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
93+
<DebugType>embedded</DebugType>
94+
</PropertyGroup>
95+
96+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
97+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
98+
<DebugType>embedded</DebugType>
99+
</PropertyGroup>
100+
101+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
102+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
103+
<DebugType>embedded</DebugType>
104+
</PropertyGroup>
105+
106+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net35|AnyCPU'">
107+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
108+
<DebugType>embedded</DebugType>
109+
</PropertyGroup>
110+
111+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net35|AnyCPU'">
112+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
113+
<DebugType>embedded</DebugType>
114+
</PropertyGroup>
115+
116+
<ItemGroup>
117+
<None Include="..\README.md">
118+
<Pack>True</Pack>
119+
<PackagePath>\</PackagePath>
120+
</None>
121+
<None Include="..\CHANGELOG.md">
122+
<Pack>True</Pack>
123+
<PackagePath>\</PackagePath>
124+
</None>
125+
<None Include="..\LICENSE">
126+
<Pack>True</Pack>
127+
<PackagePath>\</PackagePath>
128+
</None>
129+
</ItemGroup>
130+
131+
132+
<ItemGroup>
133+
<PackageReference Include="DocumentFormat.OpenXml" Version="[2.20.0,3)" />
134+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
135+
<PrivateAssets>all</PrivateAssets>
136+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
137+
</PackageReference>
138+
</ItemGroup>
139139

140140
</Project>

0 commit comments

Comments
 (0)