c# - IIS Working Directory -
we using third party dll, looks license file in working directory of application. when code run out of typical c# application, dll able pick license file located in same directory (\bin\
). when asp.net application running same code under iis, fails due licensing issues. work around have found has place license file in windows\system32\inetsrv
.
it seems though dll referencing license file using simple file.open("*.lic*);
, , because iis using inetsrv working directory (https://stackoverflow.com/a/16485227/693671), looks there. there way change working directory of iis application?
Comments
Post a Comment