Skip to content

Commit

Permalink
Merge 3197986 into b68fb30
Browse files Browse the repository at this point in the history
  • Loading branch information
bartes committed May 15, 2024
2 parents b68fb30 + 3197986 commit 9986d60
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
version: '{build}'
skip_branch_with_pr: true
image: Visual Studio 2019
image: Visual Studio 2022
install:
- dotnet tool install coveralls.net --tool-path tools
build_script:
build_script:
- dotnet build src/Castle.Sdk
- dotnet build src/Tests -c Debug
after_build:
- dotnet pack -c Release src/Castle.Sdk
test_script:
test_script:
- dotnet test --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Include="[Castle.Sdk*]*" src/Tests/Tests.csproj
- ps: .\tools\csmacnz.coveralls.exe --opencover -i src/Tests/coverage.opencover.xml --useRelativePaths --repoToken $env:COVERALLS_REPO_TOKEN --commitId $env:APPVEYOR_REPO_COMMIT --commitBranch $env:APPVEYOR_REPO_BRANCH --commitAuthor $env:APPVEYOR_REPO_COMMIT_AUTHOR --commitEmail $env:APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL --commitMessage $env:APPVEYOR_REPO_COMMIT_MESSAGE --jobId $env:APPVEYOR_JOB_ID
- ps: .\tools\csmacnz.coveralls.exe --opencover -i src/Tests/coverage.opencover.xml --useRelativePaths --repoToken $env:COVERALLS_REPO_TOKEN --commitId $env:APPVEYOR_REPO_COMMIT --commitBranch $env:APPVEYOR_REPO_BRANCH --commitAuthor $env:APPVEYOR_REPO_COMMIT_AUTHOR --commitEmail $env:APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL --commitMessage $env:APPVEYOR_REPO_COMMIT_MESSAGE --jobId $env:APPVEYOR_JOB_ID
artifacts:
- path: 'src\Castle.Sdk\bin\Release\*.nupkg'
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version: 2
jobs:
build:
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
- image: mcr.microsoft.com/dotnet/sdk:8.0
steps:
- checkout
- run: cd src && dotnet build Castle.Sdk -c Release -f netstandard2.0
- run: cd src && dotnet test Tests
- run: cd src && dotnet build Castle.Sdk -c Release -f netstandard2.1
- run: cd src && dotnet test Tests
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## master/develop

## 2.2.0 (2024-05-15)

Added support for `skip_request_token_validation` and `skip_context_validation` options,
Added .net8 support

## 2.1.1 (2022-04-01)

Added support for transaction and changeset objects
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## Build
Build using your IDE, or with the `dotnet` command. Without .NET Framework, you won't be able to build for all target frameworks, so for `Castle.Sdk` you must specifically build for .NET Standard using the `-f` switch

`dotnet build src/Castle.Sdk/Castle.Sdk.csproj -f netstandard2.0`
`dotnet build src/Castle.Sdk/Castle.Sdk.csproj -f netstandard2.1`

## Test
### Everything
Expand Down
2 changes: 1 addition & 1 deletion src/Castle.Sdk/Castle.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/castle/castle-dotnet</PackageProjectUrl>
<RootNamespace>Castle</RootNamespace>
<Version>3.0.0</Version>
<Version>2.2.0</Version>
<Authors>Castle</Authors>
<Product>Castle .NET SDK</Product>
<Description>Castle SDK for C# / .NET</Description>
Expand Down

0 comments on commit 9986d60

Please sign in to comment.