Rename project and namespace.

This commit is contained in:
H. Utku Maden 2024-06-20 12:39:15 +03:00
parent ed462e05e1
commit 3eeb41c1c9
8 changed files with 15 additions and 18 deletions

2
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
{

@ -1,4 +1,4 @@
namespace Quik.FreeType
namespace ReFuel.FreeType
{
public enum FTError : int
{

@ -1,6 +1,6 @@
using System;
namespace Quik.FreeType
namespace ReFuel.FreeType
{
[Flags]
public enum FTLoadFlags

@ -1,4 +1,4 @@
namespace Quik.FreeType
namespace ReFuel.FreeType
{
public enum FTRenderMode
{

@ -1,6 +1,6 @@
using System;
namespace Quik.FreeType
namespace ReFuel.FreeType
{
[Flags]
public enum FaceFlag : int

@ -10,8 +10,8 @@
<PropertyGroup>
<!-- Nuget Properties. -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Quik.FreeType</PackageId>
<Version>1.1.0</Version>
<PackageId>ReFuel.FreeType</PackageId>
<Version>0.1.0-rc.1</Version>
<Authors>FreeType Authors, H. Utku Maden</Authors>
<Description>
A C# wrapper for the FreeType font loading library.

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

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