Skip to content

Commit

Permalink
upgrade to .net5
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmad-moussawi committed Mar 14, 2021
1 parent cd1b06d commit 405b611
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -12,8 +12,8 @@ env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
# Project name to pack and publish
PROJECT_NAME: SqlKata
# DOTNET_VERSION: 5.0.100
DOTNET_VERSION: 2.2.203
DOTNET_VERSION: 5.0.201
# DOTNET_VERSION: 2.2.203
# GitHub Packages Feed settings
GITHUB_FEED: https://nuget.pkg.github.com/sqlkata/
GITHUB_USER: ahmad-moussawi
Expand Down Expand Up @@ -104,6 +104,6 @@ jobs:
echo Clean Version: $VERSION
dotnet pack -v normal -c Release --include-symbols --include-source -p:PackageVersion=$VERSION -o nupkg SqlKata.Execution/SqlKata.Execution.csproj
- name: Push to GitHub Feed
run: dotnet nuget push ./nupkg/*.nupkg --source $GITHUB_FEED --skip-duplicate --api-key $GITHUB_TOKEN
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source $GITHUB_FEED --api-key $GITHUB_TOKEN
- name: Push to NuGet Feed
run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source $NUGET_FEED --api-key $NUGET_KEY
2 changes: 1 addition & 1 deletion QueryBuilder.Tests/QueryBuilder.Tests.csproj
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
<TargetFrameworks>net5.0</TargetFrameworks>
<OutputType>Library</OutputType>
<IsPackable>false</IsPackable>
<RootNamespace>SqlKata.Tests</RootNamespace>
Expand Down

0 comments on commit 405b611

Please sign in to comment.