Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Npgsql from 4.1.3.1 to 8.0.3 in /test/ProjNet.Tests #117

Merged
merged 5 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/full-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Get source
uses: actions/checkout@v2

- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
- name: Setup .NET Core 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.406
dotnet-version: '6.x'

- name: Build
run: dotnet build -c Release -v minimal -p:WarningLevel=3
Expand All @@ -44,10 +44,10 @@ jobs:
if: github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')

steps:
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
- name: Setup .NET Core 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.406
dotnet-version: '6.x'

- name: Download Package Files
uses: actions/download-artifact@v2
Expand All @@ -69,10 +69,10 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'

steps:
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
- name: Setup .NET Core 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.406
dotnet-version: '6.x'

- name: Download Package Files
uses: actions/download-artifact@v2
Expand Down
4 changes: 2 additions & 2 deletions test/ProjNet.Tests/ProjNET.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6</TargetFramework>
<SignAssembly>true</SignAssembly>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Npgsql" Version="4.1.3.1" />
<PackageReference Include="Npgsql" Version="8.0.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading