dnauck / Portable.Licensing

Portable.Licensing is a cross platform software licensing framework which allows you to implement licensing into your application or library. It provides you all tools to create and validate licenses for your software.
http://dev.nauck-it.de/projects/portable-licensing
MIT License
592 stars 173 forks source link

Is the project dead? #51

Open nikro412956 opened 5 years ago

nikro412956 commented 5 years ago

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

mika76 commented 5 years ago

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

MuhAssar commented 5 years ago

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

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

ZhangDonglin12 commented 4 years ago

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", "john.doe@example.com")
.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

bjtoftel commented 3 years ago

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