Skip to content

Commit 6c698c5

Browse files
committed
Update to preview9 SDK and dependencies
1 parent a600fdd commit 6c698c5

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install:
1818
- powershell .build\setup_appveyor.ps1
1919
# The following can be used to install a custom version of .NET Core
2020
- ps: Invoke-WebRequest -Uri "https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1" -OutFile "install-dotnet.ps1"
21-
- ps: .\install-dotnet.ps1 -Version 3.0.100-preview8-013656 -InstallDir "dotnetcli"
21+
- ps: .\install-dotnet.ps1 -Version 3.0.100-preview9-014004 -InstallDir "dotnetcli"
2222
services:
2323
- postgresql111
2424
before_build:

Directory.Build.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
<SignAssembly>true</SignAssembly>
3030
</PropertyGroup>
3131

32+
<!-- Dependency versions -->
33+
<PropertyGroup>
34+
<NodaTimeVersion>2.4.6</NodaTimeVersion>
35+
</PropertyGroup>
36+
3237
<!-- Reference .NET Framework reference assemblies, allows building on environments without .NET Framework installed
3338
(e.g. Linux). Gets ignored on non-framework TFMs. -->
3439
<ItemGroup>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.0.100-preview8-013656"
3+
"version": "3.0.100-preview9-014004"
44
}
55
}

src/Npgsql.GeoJSON/Npgsql.GeoJSON.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<SignAssembly>false</SignAssembly>
88
</PropertyGroup>
99
<ItemGroup>
10-
<PackageReference Include="GeoJSON.Net" Version="1.1.70" />
10+
<PackageReference Include="GeoJSON.Net" Version="1.1.73" />
1111
</ItemGroup>
1212
<ItemGroup>
1313
<ProjectReference Include="../Npgsql/Npgsql.csproj" />

src/Npgsql.Json.NET/Npgsql.Json.NET.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
77
</PropertyGroup>
88
<ItemGroup>
9-
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
9+
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
1010
</ItemGroup>
1111
<ItemGroup>
1212
<ProjectReference Include="..\Npgsql\Npgsql.csproj" />

src/Npgsql.NodaTime/Npgsql.NodaTime.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
77
</PropertyGroup>
88
<ItemGroup>
9-
<PackageReference Include="NodaTime" Version="2.4.4" />
9+
<PackageReference Include="NodaTime" Version="$(NodaTimeVersion)" />
1010
</ItemGroup>
1111
<ItemGroup>
1212
<ProjectReference Include="..\Npgsql\Npgsql.csproj" />

src/Npgsql/Npgsql.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1010
</PropertyGroup>
1111
<ItemGroup>
12-
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview8.19405.3" />
12+
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview9.19421.4 " />
1313
</ItemGroup>
1414
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
1515
<Reference Include="System.Transactions" Pack="false" />
@@ -21,6 +21,6 @@
2121
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
2222
</ItemGroup>
2323
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' ">
24-
<PackageReference Include="System.Text.Json" Version="4.6.0-preview8.19405.3" />
24+
<PackageReference Include="System.Text.Json" Version="4.6.0-preview9.19421.4" />
2525
</ItemGroup>
2626
</Project>

test/Npgsql.PluginTests/Npgsql.PluginTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<SignAssembly>false</SignAssembly>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="NodaTime" Version="2.4.4" />
6+
<PackageReference Include="NodaTime" Version="$(NodaTimeVersion)" />
77
<PackageReference Include="NUnit" Version="3.11.0" />
88
<PackageReference Include="NLog" Version="4.5.11" />
99
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />

0 commit comments

Comments
 (0)