Additionally the target framework needed to be updated to make use of the 3.0 functionality. If this is an issue, I can update to target both netcoreapp3.0;netstandard2.0 and wrap the <FrameworkReference Include="Microsoft.AspNetCore.App" /> in conditional <ItemGroup> tags based on the target framework being built for. This just requires cross compiling the library.
fixes #24
Additionally the target framework needed to be updated to make use of the 3.0 functionality. If this is an issue, I can update to target both
netcoreapp3.0;netstandard2.0
and wrap the<FrameworkReference Include="Microsoft.AspNetCore.App" />
in conditional<ItemGroup>
tags based on the target framework being built for. This just requires cross compiling the library.