forked from icgam/Easify.Excel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade to dotnet 8 * version * update the workflows tests will fail next * closed xml next major version breaks our tests * fix git version
- Loading branch information
1 parent
31ac03f
commit 71fa402
Showing
13 changed files
with
37 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,11 +24,11 @@ jobs: | |
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: "5.5.x" | ||
versionSpec: "5.8.x" | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: "3.1.x" | ||
dotnet-version: "8.0.x" | ||
- name: Install dependencies | ||
run: dotnet restore src | ||
- name: Use GitVersion | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,11 @@ jobs: | |
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: "5.5.x" | ||
versionSpec: "5.8.x" | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: "3.1.x" | ||
dotnet-version: "8.0.x" | ||
- name: Install dependencies | ||
run: dotnet restore src | ||
- name: Use GitVersion | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
next-version: 1.0.3 | ||
next-version: 2.0.0 | ||
mode: Mainline | ||
major-version-bump-message: '\+semver:\s?(breaking|major)' | ||
minor-version-bump-message: '\+semver:\s?(feature|minor)' | ||
patch-version-bump-message: '\+semver:\s?(fix|patch)' | ||
no-bump-message: '\+semver:\s?(none|skip)' | ||
ignore: | ||
commits-before: 2023-01-01T00:00:00 # what is this for? should it be removed? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...cks.Excel.ClosedXml.IntegrationTests/LittleBlocks.Excel.ClosedXml.IntegrationTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
src/LittleBlocks.Excel.ClosedXml/LittleBlocks.Excel.ClosedXml.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/LittleBlocks.Excel.Extensions/LittleBlocks.Excel.Extensions.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
src/LittleBlocks.Excel.SampleApp/LittleBlocks.Excel.SampleApp.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
src/LittleBlocks.Excel.UnitTests/LittleBlocks.Excel.UnitTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Authors>Mohammad Moattar, Justin French, Aurimas Gecas</Authors> | ||
<Company>ICG</Company> | ||
<Description>Abstraction & Fluent API for loading and manipulating excel OpenDocument format.</Description> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<RepositoryUrl>https://github.com/LittleBlocks/LittleBlocks.Excel</RepositoryUrl> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="LittleBlocks.Extensions" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.3" /> | ||
<PackageReference Include="LittleBlocks.Extensions" Version="2.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" /> | ||
</ItemGroup> | ||
</Project> |