Update VersionPrefix to 5.3.5 #539
This file contains hidden or 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
| name: .NET Core Build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Build EFCoreSecondLevelCacheInterceptor lib | |
| run: dotnet build ./src/EFCoreSecondLevelCacheInterceptor/EFCoreSecondLevelCacheInterceptor.csproj --configuration Release | |
| - name: Run EFCoreSecondLevelCacheInterceptor lib unit tests | |
| run: dotnet test ./src/Tests/EFCoreSecondLevelCacheInterceptor.UnitTests/EFCoreSecondLevelCacheInterceptor.UnitTests.csproj --logger "console;verbosity=detailed" | |
| - name: Build EFCoreSecondLevelCacheInterceptor.CacheManager.Core lib | |
| run: dotnet build ./src/EFCoreSecondLevelCacheInterceptor.CacheManager.Core/EFCoreSecondLevelCacheInterceptor.CacheManager.Core.csproj --configuration Release | |
| - name: Build EFCoreSecondLevelCacheInterceptor.EasyCaching.Core lib | |
| run: dotnet build ./src/EFCoreSecondLevelCacheInterceptor.EasyCaching.Core/EFCoreSecondLevelCacheInterceptor.EasyCaching.Core.csproj --configuration Release | |
| - name: Build EFCoreSecondLevelCacheInterceptor.MemoryCache lib | |
| run: dotnet build ./src/EFCoreSecondLevelCacheInterceptor.MemoryCache/EFCoreSecondLevelCacheInterceptor.MemoryCache.csproj --configuration Release | |
| - name: Build EFCoreSecondLevelCacheInterceptor.FusionCache lib | |
| run: dotnet build ./src/EFCoreSecondLevelCacheInterceptor.FusionCache/EFCoreSecondLevelCacheInterceptor.FusionCache.csproj --configuration Release | |
| - name: Build EFCoreSecondLevelCacheInterceptor.StackExchange.Redis lib | |
| run: dotnet build ./src/EFCoreSecondLevelCacheInterceptor.StackExchange.Redis/EFCoreSecondLevelCacheInterceptor.StackExchange.Redis.csproj --configuration Release | |
| - name: Build EFCoreSecondLevelCacheInterceptor.HybridCache lib | |
| run: dotnet build ./src/EFCoreSecondLevelCacheInterceptor.HybridCache/EFCoreSecondLevelCacheInterceptor.HybridCache.csproj --configuration Release | |
| - name: Push Package to NuGet.org | |
| if: github.event_name == 'push' | |
| run: dotnet nuget push **\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate |