Reputation: 10225
If I reference the Python Standard Library using IronPython do I have to deploy any Python related libraries or runtimes along with my .net dll? Or, can I just deploy the dll?
Upvotes: 1
Views: 187
Reputation: 4487
you need to deploy the python libraries you're referencing along with your dll. it wont be included statically in there for you.
Upvotes: 3