.net - How do I find out where my application depends on BouncyCastle and log4net? -


my application has references 2 packages bouncycastle , log4net:

installed nuget packages

how find if application depends on them? can't work out if need deploy them installer. have noted similar question.

update

i not sure when file app.config used application, have reference log4net:

<?xml version="1.0" encoding="utf-8"?> <configuration>     <startup>          <supportedruntime version="v4.0" sku=".netframework,version=v4.5.1" />     </startup>   <runtime>     <assemblybinding xmlns="urn:schemas-microsoft-com:asm.v1">       <dependentassembly>         <assemblyidentity name="system.net.http.primitives" publickeytoken="b03f5f7f11d50a3a" culture="neutral" />         <bindingredirect oldversion="0.0.0.0-4.2.22.0" newversion="4.2.22.0" />       </dependentassembly>       <dependentassembly>         <assemblyidentity name="newtonsoft.json" publickeytoken="30ad4fe6b2a6aeed" culture="neutral" />         <bindingredirect oldversion="0.0.0.0-8.0.0.0" newversion="8.0.0.0" />       </dependentassembly>       <dependentassembly>         <assemblyidentity name="log4net" publickeytoken="669e0ddf0bb1aa2a" culture="neutral" />         <bindingredirect oldversion="0.0.0.0-1.2.15.0" newversion="1.2.15.0" />       </dependentassembly>     </assemblybinding>   </runtime> </configuration> 

anyone know file used for? found this article explaining for. looks me maybe log4net installed here. not clear if have deploy it.

delete reference , try compiling , running? if there compile time errors can catch dependencies are.


Comments

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -