c# - Do I have to add Microsoft.Bcl.Async to my InstallShield project? -


i'm developing library .net framework 4.0, c# , visual studio 2012.

on library use nuget package microsoft.bcl.async. packages.config:

<?xml version="1.0" encoding="utf-8"?> <packages>   <package id="microsoft.bcl" version="1.1.10" targetframework="net40" />   <package id="microsoft.bcl.async" version="1.0.168" targetframework="net40" />   <package id="microsoft.bcl.build" version="1.0.14" targetframework="net40" />   <package id="microsoft.net.http" version="2.2.29" targetframework="net40" />   <package id="newtonsoft.json" version="6.0.8" targetframework="net40" /> </packages> 

now, i'm adding project existing installshield project install dlls on gac (i have more libraries projects).

my question is: have add installshield project?

i'm asking because microsoft.bcl.async uses system.runtime.dll, system.threading.tasks.dll , system.io.dll. i'm not user if have add these libraries installshield project or conflicts on installation computer.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -