I would like to share libraries between .NET Core 2.0 applications and SQL Server CLR Procedures. I've tried putting the shared logic in the following project types:
.NET Standard Library
A .NET Standard Library can be used from a .NET Core Project, and I can add a reference from the SQL Server Project, however, the Classes cannot be referenced in the CLR Procedure:

Portable Class Library
A Portable Class Library can be referenced from the CLR Procedure. There is an option for a PCL to target ASP.NET Core 1.0, but I'm not able to find a way to target .NET Core 2.0. When I reference this library from a .NET Core 2.0 project, I get the following compilation error:
Project PortableLibrary1 is not compatible with netcoreapp2.0 (.NETCoreApp,Version=v2.0). Project PortableLibrary1 supports: dotnet5.0 (.NETPlatform,Version=v5.0)
Are there any other options to share a library between .NET Core 2.0 and SQL Server CLR?