c# - How licenses.licx file is used -
i've got licenses.licx file included 1 of projects properties. not sure how used dlls. used msbuild? have idea how used when solution building?
since indicate stellareleven's reply doesn't help, guess you're looking simpler. not 100% correct, understanding of how works:
the licx file list of "licensed" components used application.
each line in file of following format:
[component name], [assembly name] for example 1 of projects uses licensed ip works netdial component .licx file contains following line:
nsoftware.ipworks.netdial, nsoftware.ipworks in context of project (.csproj) file, .licx file referenced embeddedresource. during build process, lc.exe verifies machine performing build has appropriate license(s) component in question, , generates binary .licenses file gets embedded resource ([assemblyname].exe.licenses) in final executable.
does help?
Comments
Post a Comment