fixed nuget dependency issues
This commit is contained in:
parent
1a678d0c79
commit
f8668934ac
|
|
@ -56,7 +56,6 @@ namespace Novetus.Bootstrapper
|
|||
private void CMDHelpButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
LocalFuncs.LaunchApplication(LocalPaths.CMDName, "-help");
|
||||
Close();
|
||||
}
|
||||
|
||||
private void DependencyInstallerButton_Click(object sender, EventArgs e)
|
||||
|
|
|
|||
|
|
@ -1726,14 +1726,6 @@ public class GlobalFuncs
|
|||
return Regex.Replace(lines, @"^\s*$\n|\r", string.Empty, RegexOptions.Multiline).TrimEnd();
|
||||
}
|
||||
|
||||
#if !BASICLAUNCHER
|
||||
//task.delay is only available on net 4.5.......
|
||||
public static async void Delay(int miliseconds)
|
||||
{
|
||||
await TaskEx.Delay(miliseconds);
|
||||
}
|
||||
#endif
|
||||
|
||||
// Credit to Carrot for the original code. Rewote it to be smaller.
|
||||
public static string CryptStringWithByte(string word)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -92,9 +92,6 @@
|
|||
<Reference Include="Mono.Nat">
|
||||
<HintPath>..\packages\Mono.Nat.1.2.24.0\lib\net40\Mono.Nat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\NLog.4.7.2\lib\net40-client\NLog.dll</HintPath>
|
||||
</Reference>
|
||||
|
|
|
|||
|
|
@ -5,6 +5,5 @@
|
|||
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net40" />
|
||||
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net40" />
|
||||
<package id="Mono.Nat" version="1.2.24.0" targetFramework="net40" />
|
||||
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net40" />
|
||||
<package id="NLog" version="4.7.2" targetFramework="net40" />
|
||||
</packages>
|
||||
Loading…
Reference in New Issue