hi,
i am on the trial deciding wither to buy or not and have sent emails regarding this problem since week and i did not received any reply so i thought let me make a final try here
I have downloaded it and started playing, it indeed build the project, but the dlls are not update, with .Net Demon everything works fine, so I am confused.
What I am doing is very simple, I have ASP.NET MVC project, and for example, I have created this class below which if I change anything inside of it like adding new property , nothing happens until I manually build the solution, though NCrunch is building fine.
I have made the test by either using ILSpy .Reflector, or by just hitting the website in the browser.
public class ReceivedCampaign
{
public string CampaignId { get; set; }
public List<string> Lists { get; set; }
public ReceivedCampaign()
{
this.Lists = new List<string>();
}
}
more so, any change i make to any C# code wither it is Controller, Class, etc.. it gets compiled correctly but when i test the website i don't see the changes.
thanks in advanced.