AppVeyor build test.

This commit is contained in:
MichaelTheShifter 2016-07-06 10:26:36 -04:00
parent 73ec1f27ba
commit 62b4af3c2b
3 changed files with 4 additions and 4 deletions

View file

@ -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) =>

View file

@ -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>

Binary file not shown.