Rename CairSharp > CairoSharp

This commit is contained in:
cra0zy 2017-10-29 00:52:28 +02:00
parent 91fd9463b7
commit edd43afeaf
63 changed files with 13 additions and 13 deletions

View File

@ -17,8 +17,8 @@
<ProjectReference Include="..\GioSharp\GioSharp.csproj">
<Name>GioSharp</Name>
</ProjectReference>
<ProjectReference Include="..\CairSharp\CairSharp.csproj">
<Name>CairSharp</Name>
<ProjectReference Include="..\CairSharp\CairoSharp.csproj">
<Name>CairoSharp</Name>
</ProjectReference>
<ProjectReference Include="..\PangoSharp\PangoSharp.csproj">
<Name>PangoSharp</Name>

View File

@ -7,7 +7,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GLibSharp", "GLibSharp\GLib
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GioSharp", "GioSharp\GioSharp.csproj", "{25C49839-7DA6-45BA-849A-C6D4B8FAFA31}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CairSharp", "CairSharp\CairSharp.csproj", "{23BB5F1B-2E85-4DF8-AC51-8018DDB8DE0E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CairoSharp", "CairoSharp\CairoSharp.csproj", "{23BB5F1B-2E85-4DF8-AC51-8018DDB8DE0E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PangoSharp", "PangoSharp\PangoSharp.csproj", "{B7A3467A-DFF6-4089-B78A-E13B3D11FDAD}"
EndProject

View File

@ -24,8 +24,8 @@
<ProjectReference Include="..\GdkSharp\GdkSharp.csproj">
<Name>GdkSharp</Name>
</ProjectReference>
<ProjectReference Include="..\CairSharp\CairSharp.csproj">
<Name>CairSharp</Name>
<ProjectReference Include="..\CairSharp\CairoSharp.csproj">
<Name>CairoSharp</Name>
</ProjectReference>
<ProjectReference Include="..\PangoSharp\PangoSharp.csproj">
<Name>PangoSharp</Name>

View File

@ -14,8 +14,8 @@
<ProjectReference Include="..\GLibSharp\GLibSharp.csproj">
<Name>GLibSharp</Name>
</ProjectReference>
<ProjectReference Include="..\CairSharp\CairSharp.csproj">
<Name>CairSharp</Name>
<ProjectReference Include="..\CairoSharp\CairoSharp.csproj">
<Name>CairoSharp</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>

View File

@ -32,18 +32,18 @@ var glist = new List<GAssembly>()
NativeDeps = new[] { "libatk-1.0.so.0", "libatk-1.0-0" },
ExtraArgs = "--abi-cs-usings=Atk,GLib"
},
new GAssembly("CairSharp")
new GAssembly("CairoSharp")
{
NativeDeps = new[] { "libcairo.so.2", "libcairo-2" }
},
new GAssembly("PangoSharp")
{
Deps = new[] { "GLibSharp", "CairSharp" },
Deps = new[] { "GLibSharp", "CairoSharp" },
NativeDeps = new[] { "libpango-1.0.so.0", "libpango-1.0-0" }
},
new GAssembly("GdkSharp")
{
Deps = new[] { "GLibSharp", "GioSharp", "CairSharp", "PangoSharp" },
Deps = new[] { "GLibSharp", "GioSharp", "CairoSharp", "PangoSharp" },
NativeDeps = new[] {
"libgdk-3.so.0", "libgdk-3-0",
"libgdk_pixbuf-2.0.so.0", "libgdk_pixbuf-2.0-0"
@ -51,7 +51,7 @@ var glist = new List<GAssembly>()
},
new GAssembly("GtkSharp")
{
Deps = new[] { "GLibSharp", "GioSharp", "AtkSharp", "CairSharp", "PangoSharp", "GdkSharp" },
Deps = new[] { "GLibSharp", "GioSharp", "AtkSharp", "CairoSharp", "PangoSharp", "GdkSharp" },
NativeDeps = new[] { "libgtk-3.so.0", "libgtk-3-0" },
ExtraArgs = "--abi-cs-usings=Gtk,GLib"
}
@ -86,7 +86,7 @@ Task("Prepare")
// Generate code and prepare libs projects
foreach(var gassembly in list)
gassembly.Prepare();
DotNetCoreRestore("Source/Libs/GLibSharp.sln");
DotNetCoreRestore("Source/Libs/GtkSharp.sln");
});
Task("GenerateLinuxStubs")
@ -126,7 +126,7 @@ Task("Build")
};
if (list.Count == glist.Count)
DotNetCoreBuild("Source/Libs/GLibSharp.sln", settings);
DotNetCoreBuild("Source/Libs/GtkSharp.sln", settings);
else
{
foreach(var gassembly in list)