Portable.Licensing icon indicating copy to clipboard operation
Portable.Licensing copied to clipboard

Is the project dead?

Open nikro412956 opened this issue 5 years ago • 4 comments

Is this project dead? Why isn't there a more recent release then 2013 when the last commit was in 2015?

nikro412956 avatar Mar 04 '19 12:03 nikro412956

You could say that 🤣 There are a bunch of forks you can look at https://github.com/D10221/Portable.Licensing/network and some pull requests https://github.com/dnauck/Portable.Licensing/pulls but I'm still using the original release and it's still working fine for me

mika76 avatar Apr 04 '19 08:04 mika76

this is a good fork/replacement that supports .net core:

https://github.com/junian/Standard.Licensing

MuhAssar avatar Aug 19 '19 12:08 MuhAssar

var license = License.New()
.WithUniqueIdentifier(Guid.NewGuid())
.As(LicenseType.Trial)
.ExpiresAt(DateTime.Now.AddDays(5))
.WithMaximumUtilization(5)
.WithProductFeatures(new Dictionary<string, string>
{
{"Sales Module", "yes"},
{"Purchase Module", "yes"},
{"Maximum Transactions", "10000"}
})
.LicensedTo("John Doe", "[email protected]")
.CreateAndSignWithPrivateKey(privateKey, passPhrase); ' When i use the code to create the License ,but i throw a Exception ,It tells me the "When Converting a string to DateTime ,parse the string to take the date before putting each variable into DateTime object"? How could fix that? Thanks a lot

ZhangDonglin12 avatar Oct 23 '19 01:10 ZhangDonglin12

This seems to be the most updated and still alive fork: https://github.com/CoreCompat/Portable.Licensing

bjtoftel avatar Nov 27 '20 13:11 bjtoftel