Skip to content

Commit 6cabcca

Browse files
committed
Port to .Net 4.8
1 parent b3df625 commit 6cabcca

File tree

21 files changed

+25
-203
lines changed

21 files changed

+25
-203
lines changed

Document.sln

Lines changed: 0 additions & 57 deletions
This file was deleted.

doc/Berrysoft.Documents/Berrysoft.Documents.shfbproj

Lines changed: 0 additions & 106 deletions
This file was deleted.

doc/Berrysoft.Documents/ContentLayout.content

Lines changed: 0 additions & 2 deletions
This file was deleted.
-4.83 KB
Binary file not shown.

samples/Berrysoft.Data.MapSample/Berrysoft.Data.MapSample.vbproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<RootNamespace>Berrysoft.Data.MapSample</RootNamespace>
6-
<TargetFramework>netcoreapp2.2</TargetFramework>
6+
<TargetFramework>netcoreapp3.0</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>

samples/Berrysoft.Data.TreeSample/Berrysoft.Data.TreeSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
</PropertyGroup>
77

88
<PropertyGroup>

samples/Berrysoft.Html.Sample/Berrysoft.Html.Sample.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<RootNamespace>Berrysoft.Html.Sample</RootNamespace>
6-
<TargetFramework>netcoreapp2.2</TargetFramework>
6+
<TargetFramework>netcoreapp3.0</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>

samples/Berrysoft.Unsafe.Sample/Berrysoft.Unsafe.Sample.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<RootNamespace>Berrysoft.Unsafe.Sample</RootNamespace>
6-
<TargetFramework>netcoreapp2.2</TargetFramework>
6+
<TargetFramework>netcoreapp3.0</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>

samples/TsinghuaNet/TsinghuaNet.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<RootNamespace>TsinghuaNet</RootNamespace>
6-
<TargetFramework>netcoreapp2.2</TargetFramework>
6+
<TargetFramework>netcoreapp3.0</TargetFramework>
77
</PropertyGroup>
88

99
<ItemGroup>

src/Berrysoft.Console/CommandLine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private Dictionary<string, string> InitArgs(string[] args)
136136
{
137137
throw ExceptionHelper.ArgInvalid(argKey);
138138
}
139-
#if NETCOREAPP
139+
#if NETCOREAPP || NETSTANDARD
140140
if (!result.TryAdd(argKey, argValue))
141141
{
142142
throw ExceptionHelper.ArgInvalid(argKey);

0 commit comments

Comments
 (0)