Skip to content

Commit 95069bc

Browse files
authored
Merge pull request #9 from caleblloyd/f_upgrade_2.2.0
Bump to 2.2; remove static operator overrides
2 parents 5319474 + 3835d23 commit 95069bc

File tree

10 files changed

+189
-198
lines changed

10 files changed

+189
-198
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,3 +251,6 @@ paket-files/
251251
# JetBrains Rider
252252
.idea/
253253
*.sln.iml
254+
255+
# VSCode
256+
.vscode

Directory.Build.targets

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<Project>
22
<PropertyGroup>
33
<!-- Assign these values at the end of the project after TargetFramework has been assigned. TargetFramework is not assigned yet in Directory.Build.props. -->
4-
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">$(MicrosoftNETCoreApp11PackageVersion)</RuntimeFrameworkVersion>
54
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
6-
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">$(MicrosoftNETCoreApp21PackageVersion)</RuntimeFrameworkVersion>
5+
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.2' ">$(MicrosoftNETCoreApp22PackageVersion)</RuntimeFrameworkVersion>
76
<NETStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard2.0' ">$(NETStandardLibrary20PackageVersion)</NETStandardImplicitPackageVersion>
87
</PropertyGroup>
98
</Project>

build/dependencies.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<MicrosoftNETTestSdkPackageVersion>15.6.1</MicrosoftNETTestSdkPackageVersion>
1212
<XunitAssertPackageVersion>2.3.1</XunitAssertPackageVersion>
1313
<XunitCorePackageVersion>2.3.1</XunitCorePackageVersion>
14-
<XunitRunnerVisualStudioPackageVersion>2.4.0-beta.1.build3958</XunitRunnerVisualStudioPackageVersion>
14+
<XunitRunnerVisualStudioPackageVersion>2.4.0</XunitRunnerVisualStudioPackageVersion>
1515
</PropertyGroup>
1616
<Import Project="$(DotNetPackageVersionPropsPath)" Condition=" '$(DotNetPackageVersionPropsPath)' != '' " />
1717
</Project>

global.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"sdk": {
3-
"version": "2.1.301"
4-
},
5-
"msbuild-sdks": {
6-
"Microsoft.DotNet.GlobalTools.Sdk": "2.1.3-rtm-15802"
7-
}
2+
"sdk": {
3+
"version": "2.2.102"
4+
},
5+
"msbuild-sdks": {
6+
"Internal.AspNetCore.Sdk": "2.2.1-build-20190117.5"
87
}
8+
}

korebuild-lock.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version:2.1.3-rtm-15802
2-
commithash:a7c08b45b440a7d2058a0aa1eaa3eb6ba811976a
1+
version:2.2.1-build-20190117.5
2+
commithash:28bc5808b442f2a068bf3bff362f0aed3c5f163e

korebuild.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/release/2.1/tools/korebuild.schema.json",
3-
"channel": "release/2.1"
4-
}
2+
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/release/2.2/tools/korebuild.schema.json",
3+
"channel": "release/2.2"
4+
}

src/Pomelo.JsonObject/Pomelo.JsonObject.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<PackageTags>JSON;Entity Framework Core;entity-framework-core;MySQL;EF;ORM</PackageTags>
1010
<PackageIconUrl>http://www.1234.sh/assets/Shared/pomelofoundation.png</PackageIconUrl>
1111
<PackageProjectUrl>https://github.com/PomeloFoundation/Pomelo.JsonObject</PackageProjectUrl>
12-
<PackageLicenseUrl>https://github.com/PomeloFoundation/Pomelo.JsonObject/blob/master/LICENSE</PackageLicenseUrl>
1312
<RepositoryType>git</RepositoryType>
1413
<RepositoryUrl>git://github.com/PomeloFoundation/Pomelo.JsonObject.git</RepositoryUrl>
1514
</PropertyGroup>

0 commit comments

Comments
 (0)