I am facing very strange issue. I have googled a lot but nothing is related to my issue.
Whenever I deploy new version in IIS it is not picking the latest changes no mater what I do. Recycle the pool , reset the website .
IIS only picks changes if I deploy again with some changes.
for example: deployment A contains this:
printf("abc");
It will not reflect in IIS.
now when I will deploy deployment B with following changes:
printf("abc"); printf("xyz");
It will pick the deployment A . deployment B will be still unpicked by the IIS. as soon as I deploy deployment C , deployment B will be picked.
Hence , every time in order to reflect changes in IIS , I need to deploy two time. one with real changes and the next with dummy change.
I discussed this with my Server department but they are totally blank about it. Google is not helpful too. finally I am here. help will be highly appreciated.