mirror of
https://github.com/seriocomedy/ShiftOS-C-.git
synced 2025-01-22 10:50:27 -05:00
AppVeyor build test.
This commit is contained in:
parent
73ec1f27ba
commit
62b4af3c2b
3 changed files with 4 additions and 4 deletions
|
@ -186,12 +186,12 @@ public void RegisterCore()
|
|||
WindowBorder b = null;
|
||||
foreach(Control c in win.Controls)
|
||||
{
|
||||
if ((string)c.Tag == "api_brdr")
|
||||
b = (WindowBorder)c;
|
||||
if (c is WindowBorder)
|
||||
b = c as WindowBorder;
|
||||
}
|
||||
return b;
|
||||
});
|
||||
|
||||
mod.def_update = new Action(() => API.UpdateWindows());
|
||||
mod.on_app_launcher_populate += new Action<ShiftOSDesktop, string>((desktop, func) =>
|
||||
{
|
||||
desktop.OnAppLauncherPopulate += (items) =>
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="NetSockets">
|
||||
<HintPath>..\..\..\..\Downloads\NetSockets.dll</HintPath>
|
||||
<HintPath>..\dependencies\NetSockets.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.8.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
|
|
BIN
source/dependencies/NetSockets.dll
Normal file
BIN
source/dependencies/NetSockets.dll
Normal file
Binary file not shown.
Loading…
Reference in a new issue