You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue seems to be that i'm forced to keep a version of NApp.Update.Framework.dll in the executable directory although packed with fody, is there a workaround for this?
I have an issue updating my application as the file is always locked an the following error occurs
Maybe there is something i'm not doing right?
Using the latest nuget package
<?xml version="1.0" encoding="utf-8" ?> <Feed> <Tasks> <FileUpdateTask hotswap="true" updateTo="https://localhost.test/loader.exe" localPath="loader.exe"> <Description>Fixes several bugs with the display</Description> <Conditions> <FileVersionCondition what="below" version="0.0.0.5" /> </Conditions> </FileUpdateTask> </Tasks> </Feed>
`public LoginForm()
{
InitializeComponent();
UManager = UpdateManager.Instance;
UManager.UpdateSource = new SimpleWebSource("https://localhost.test/xml/update.xml");
UManager.Config.TempFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"Equalitybots\Update");
CheckForUpdates();
}
The text was updated successfully, but these errors were encountered: