public static License Gen() { LicenseName n = new LicenseName() { Full = "CC0 1.0 Universal (CC0 1.0)", Short = "CC0 1.0" }; LicenseDescription d = new LicenseDescription() { Full = "The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work " + "worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and " + "perform the work, even for commercial purposes, all without asking permission. ", Short = "License (CC0) You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission: http://creativecommons.org/publicdomain/zero/1.0/" }; License cc0 = new License() { Name = n, Description = d }; return(cc0); }
public static License Gen() { LicenseName n = new LicenseName() { Full = "Attribution 3.0 Unported (CC BY 3.0)", Short = "CC BY 3.0" }; LicenseDescription d = new LicenseDescription() { Full = "You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, " + "but not in any way that suggests the licensor endorses you or your use. You may not apply legal terms or technological measures that legally restrict " + "others from doing anything the license permits.", Short = "You are free to: Share — copy and redistribute the material in any medium or format Adapt — remix, transform, and build upon the material for " + "any purpose, even commercially, as long as attribution is included." }; License cc3 = new License() { Name = n, Description = d }; return(cc3); }