diff --git a/FT.cs b/FT.cs index 3a1fa9a..56a0cf6 100644 --- a/FT.cs +++ b/FT.cs @@ -2,7 +2,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -namespace Quik.FreeType +namespace ReFuel.FreeType { public static class FT { diff --git a/FTError.cs b/FTError.cs index d80c4b7..1d35f07 100644 --- a/FTError.cs +++ b/FTError.cs @@ -1,4 +1,4 @@ -namespace Quik.FreeType +namespace ReFuel.FreeType { public enum FTError : int { diff --git a/FTLoadFlags.cs b/FTLoadFlags.cs index ad8ff4a..d4a746c 100644 --- a/FTLoadFlags.cs +++ b/FTLoadFlags.cs @@ -1,6 +1,6 @@ using System; -namespace Quik.FreeType +namespace ReFuel.FreeType { [Flags] public enum FTLoadFlags diff --git a/FTRenderMode.cs b/FTRenderMode.cs index c3cd212..870a1cf 100644 --- a/FTRenderMode.cs +++ b/FTRenderMode.cs @@ -1,4 +1,4 @@ -namespace Quik.FreeType +namespace ReFuel.FreeType { public enum FTRenderMode { diff --git a/FaceFlag.cs b/FaceFlag.cs index dde662f..0088f9e 100644 --- a/FaceFlag.cs +++ b/FaceFlag.cs @@ -1,6 +1,6 @@ using System; -namespace Quik.FreeType +namespace ReFuel.FreeType { [Flags] public enum FaceFlag : int diff --git a/Quik.FreeType.csproj b/ReFuel.FreeType.csproj similarity index 91% rename from Quik.FreeType.csproj rename to ReFuel.FreeType.csproj index 6babb23..7aa73fd 100644 --- a/Quik.FreeType.csproj +++ b/ReFuel.FreeType.csproj @@ -10,8 +10,8 @@ True - Quik.FreeType - 1.1.0 + ReFuel.FreeType + 0.1.0-rc.1 FreeType Authors, H. Utku Maden A C# wrapper for the FreeType font loading library. diff --git a/Quik.FreeType.sln b/ReFuel.FreeType.sln similarity index 50% rename from Quik.FreeType.sln rename to ReFuel.FreeType.sln index 3e76399..3cd9e22 100644 --- a/Quik.FreeType.sln +++ b/ReFuel.FreeType.sln @@ -1,25 +1,22 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.5.002.0 +VisualStudioVersion = 17.0.31903.59 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Quik.FreeType", "Quik.FreeType.csproj", "{A19CFEF1-19F1-41DD-A784-29AEE6072315}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReFuel.FreeType", "ReFuel.FreeType.csproj", "{983377DF-BE92-42A5-A1B7-C2E1D5F3AAF2}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A19CFEF1-19F1-41DD-A784-29AEE6072315}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A19CFEF1-19F1-41DD-A784-29AEE6072315}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A19CFEF1-19F1-41DD-A784-29AEE6072315}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A19CFEF1-19F1-41DD-A784-29AEE6072315}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {F64EFC25-A7C1-4A63-8068-D5626B24871F} + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {983377DF-BE92-42A5-A1B7-C2E1D5F3AAF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {983377DF-BE92-42A5-A1B7-C2E1D5F3AAF2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {983377DF-BE92-42A5-A1B7-C2E1D5F3AAF2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {983377DF-BE92-42A5-A1B7-C2E1D5F3AAF2}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/Structures.cs b/Structures.cs index 6a4eca8..b44342c 100644 --- a/Structures.cs +++ b/Structures.cs @@ -4,7 +4,7 @@ using System.Runtime.InteropServices; // Disable unused warnings for native types. #pragma warning disable CS0649 -namespace Quik.FreeType +namespace ReFuel.FreeType { public struct FTLibrary {