Don't write found extensions

This commit is contained in:
cra0zy 2018-01-19 01:56:31 +01:00
parent a224a9e161
commit 1e626abda2
4 changed files with 3 additions and 5 deletions

View File

@ -62,8 +62,6 @@ class FuncLoader
if (ret == IntPtr.Zero)
Console.WriteLine("[WARNING] Function not found: " + function);
else
Console.WriteLine("Function found: " + function);
return ret;
}

View File

@ -10,6 +10,6 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="GtkSharp" Version="3.22.24.27" />
<PackageReference Include="GtkSharp" Version="3.22.24.*" />
</ItemGroup>
</Project>

View File

@ -10,6 +10,6 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="GtkSharp" Version="3.22.24.27" />
<PackageReference Include="GtkSharp" Version="3.22.24.*" />
</ItemGroup>
</Project>

View File

@ -6,7 +6,7 @@
// VARS
Settings.Cake = Context;
Settings.Version = "3.22.24.27";
Settings.Version = "3.22.24.28";
Settings.BuildTarget = Argument("BuildTarget", "Default");
Settings.Assembly = Argument("Assembly", "");