Skip to content

Commit 405b611

Browse files
upgrade to .net5
1 parent cd1b06d commit 405b611

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ env:
1212
DOTNET_CLI_TELEMETRY_OPTOUT: true
1313
# Project name to pack and publish
1414
PROJECT_NAME: SqlKata
15-
# DOTNET_VERSION: 5.0.100
16-
DOTNET_VERSION: 2.2.203
15+
DOTNET_VERSION: 5.0.201
16+
# DOTNET_VERSION: 2.2.203
1717
# GitHub Packages Feed settings
1818
GITHUB_FEED: https://nuget.pkg.github.com/sqlkata/
1919
GITHUB_USER: ahmad-moussawi
@@ -104,6 +104,6 @@ jobs:
104104
echo Clean Version: $VERSION
105105
dotnet pack -v normal -c Release --include-symbols --include-source -p:PackageVersion=$VERSION -o nupkg SqlKata.Execution/SqlKata.Execution.csproj
106106
- name: Push to GitHub Feed
107-
run: dotnet nuget push ./nupkg/*.nupkg --source $GITHUB_FEED --skip-duplicate --api-key $GITHUB_TOKEN
107+
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source $GITHUB_FEED --api-key $GITHUB_TOKEN
108108
- name: Push to NuGet Feed
109-
run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY
109+
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source $NUGET_FEED --api-key $NUGET_KEY

QueryBuilder.Tests/QueryBuilder.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
3+
<TargetFrameworks>net5.0</TargetFrameworks>
44
<OutputType>Library</OutputType>
55
<IsPackable>false</IsPackable>
66
<RootNamespace>SqlKata.Tests</RootNamespace>

0 commit comments

Comments
 (0)