Hi All,I came across NAU today, which was fantastic as I want to implement auto updating in a console application of mine. I have some requirements though, and that is that there are no DLL files or any other files required outside of my primary exe file.What I did was grabbed all the source code and put it inside of my application, that worked after changing some references.What I need is a bit of guidance in setting this all up I read the blog article that was linked elsewhere and it hasn't been that beneficial to me. I keep getting errors with the XML file saying that I need to check the feed (the XML was made by the feed creater app) It also seems as though the update cannot process if cannot find an XML file in the same dir as the exe. What options do I have here?Thanks,Brendan--
You received this message because you are subscribed to the Google Groups "NAppUpdate" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nappupdate+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
public
static void CheckForUpdatesAndApply()
{
var updateManager = UpdateManager.Instance;
IUpdateSource src = new SimpleWebSource(@"http://updates.domain.com/LogQuery/Beta/LogQuery2.xml");
updateManager.CheckForUpdates(src);
updateManager.PrepareUpdates();
updateManager.ApplyUpdates();
}
Above is my testing method for NAU, as I just want to get it working from that external source and preferably without requiring to manually have to put the LogQuery2.xml file in my applications directory (the one I am trying to update)
Thanks,
Brendan
--
--
Thanks,Brendan--