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;
|
WindowBorder b = null;
|
||||||
foreach(Control c in win.Controls)
|
foreach(Control c in win.Controls)
|
||||||
{
|
{
|
||||||
if ((string)c.Tag == "api_brdr")
|
if (c is WindowBorder)
|
||||||
b = (WindowBorder)c;
|
b = c as WindowBorder;
|
||||||
}
|
}
|
||||||
return b;
|
return b;
|
||||||
});
|
});
|
||||||
|
mod.def_update = new Action(() => API.UpdateWindows());
|
||||||
mod.on_app_launcher_populate += new Action<ShiftOSDesktop, string>((desktop, func) =>
|
mod.on_app_launcher_populate += new Action<ShiftOSDesktop, string>((desktop, func) =>
|
||||||
{
|
{
|
||||||
desktop.OnAppLauncherPopulate += (items) =>
|
desktop.OnAppLauncherPopulate += (items) =>
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="NetSockets">
|
<Reference Include="NetSockets">
|
||||||
<HintPath>..\..\..\..\Downloads\NetSockets.dll</HintPath>
|
<HintPath>..\dependencies\NetSockets.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<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>
|
<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