1

I have created a nuget package implementing TinyEncryptionAlgorithm but it supports only .Net 4.6.1

Now I want to use this nuget into a .net core application NETStandard.Library and I don't know what I have to do.

Do I have to implement a completely new nuget package or I can include both assemplies in the same nuget package?

I have tried to create a NetStandard library and reference it from a .Net 4.6.1 but this is not working.

Menelaos Vergis
  • 3,715
  • 5
  • 30
  • 46

1 Answers1

1

To support multiple version of .Net you must create portable libs.

Here is a tutorial of how to publish nuget for portable libs.

https://docs.nuget.org/ndocs/guides/create-net-standard-packages-vs2015

Menelaos Vergis
  • 3,715
  • 5
  • 30
  • 46