Skip to content

Commit 323284e

Browse files
committed
Adding netstandard2.1 and netcoreapp3.0 as TFMs
1 parent 3796aae commit 323284e

File tree

9 files changed

+10
-9
lines changed

9 files changed

+10
-9
lines changed

Global.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)FubarDev.FtpServer.ruleset</CodeAnalysisRuleSet>
1919
<NoWarn>SA1636;SA1641;$(NoWarn)</NoWarn>
2020
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
21-
<Nullable>enable</Nullable>
21+
<Nullable Condition=" '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'netcoreapp3.0' ">enable</Nullable>
22+
<Nullable Condition=" '$(TargetFramework)' != 'netcoreapp3.0' and '$(TargetFramework)' != 'netstandard2.1' ">annotations</Nullable>
2223
</PropertyGroup>
2324

2425
<ItemGroup>

src/FubarDev.FtpServer.Abstractions/FubarDev.FtpServer.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;netstandard2.0;net461</TargetFrameworks>
4+
<TargetFrameworks>netstandard1.3;netstandard2.0;net461;netstandard2.1</TargetFrameworks>
55
<Description>Interfaces for the portable FTP server</Description>
66
<RootNamespace>FubarDev.FtpServer</RootNamespace>
77
<PackageTags>portable;FTP;server</PackageTags>

src/FubarDev.FtpServer.Commands/FubarDev.FtpServer.Commands.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.3;netstandard2.0;net461</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.3;netstandard2.0;net461;netstandard2.1</TargetFrameworks>
44
<Description>Commands for the portable FTP server</Description>
55
<RootNamespace>FubarDev.FtpServer</RootNamespace>
66
<PackageTags>portable;FTP;server</PackageTags>

src/FubarDev.FtpServer.FileSystem.DotNet/FubarDev.FtpServer.FileSystem.DotNet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;netstandard2.0;net461</TargetFrameworks>
4+
<TargetFrameworks>netstandard1.3;netstandard2.0;netstandard2.1;net461</TargetFrameworks>
55
<Description>.NET file system for portable FTP server</Description>
66
<PackageTags>file;system;portable;FTP;server</PackageTags>
77
</PropertyGroup>

src/FubarDev.FtpServer.FileSystem.GoogleDrive/FubarDev.FtpServer.FileSystem.GoogleDrive.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;netstandard2.0;net461</TargetFrameworks>
4+
<TargetFrameworks>netstandard1.3;netstandard2.0;netstandard2.1;net461</TargetFrameworks>
55
<Description>Google Drive file system for the portable FTP server</Description>
66
<PackageTags>portable;FTP;server;Google;Drive</PackageTags>
77
</PropertyGroup>

src/FubarDev.FtpServer.FileSystem.InMemory/FubarDev.FtpServer.FileSystem.InMemory.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.3;netstandard2.0;net461</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.3;netstandard2.0;netstandard2.1;net461</TargetFrameworks>
44
<Description>In-memory file system for portable FTP server</Description>
55
<PackageTags>file;system;portable;FTP;server</PackageTags>
66
</PropertyGroup>

src/FubarDev.FtpServer.FileSystem.Unix/FubarDev.FtpServer.FileSystem.Unix.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
55
<Description>Unix file system for portable FTP server</Description>
66
<PackageTags>unix;file;system;portable;FTP;server</PackageTags>
77
</PropertyGroup>

src/FubarDev.FtpServer.MembershipProvider.Pam/FubarDev.FtpServer.MembershipProvider.Pam.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="../../PackageLibrary.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netcoreapp2.0</TargetFramework>
6+
<TargetFrameworks>netcoreapp2.0;netcoreapp3.0</TargetFrameworks>
77
<Description>PAM membership provider for portable FTP server</Description>
88
<PackageTags>pam;membership;portable;FTP;server</PackageTags>
99
</PropertyGroup>

src/FubarDev.FtpServer/FubarDev.FtpServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.0;net461;net47</TargetFrameworks>
4+
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.0;net461;net47;netstandard2.1;netcoreapp3.0</TargetFrameworks>
55
<Description>TCP-based FTP server implementation</Description>
66
<PackageTags>portable;FTP;server</PackageTags>
77
</PropertyGroup>

0 commit comments

Comments
 (0)