Re-encoding all files with utf-8;

This commit is contained in:
2025-11-04 13:31:21 +09:00
parent 017153aa02
commit 2612e19d35
178 changed files with 178 additions and 178 deletions

View File

@@ -1,4 +1,4 @@
using Ghost.Core.Attributes;
using Ghost.Core.Attributes;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("Ghost.Editor")]

View File

@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>

View File

@@ -1,4 +1,4 @@
using Ghost.Data.Models;
using Ghost.Data.Models;
using System.Text.Json.Serialization;
namespace Ghost.Data;

View File

@@ -1,4 +1,4 @@
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations.Schema;
namespace Ghost.Data.Models;

View File

@@ -1,4 +1,4 @@
namespace Ghost.Data.Models;
namespace Ghost.Data.Models;
public class ProjectMetadata
{

View File

@@ -1,4 +1,4 @@
namespace Ghost.Data.Models;
namespace Ghost.Data.Models;
public class TemplateInfo
{

View File

@@ -1,4 +1,4 @@
namespace Ghost.Data.Repository;
namespace Ghost.Data.Repository;
internal class AssetsRepository
{

View File

@@ -1,4 +1,4 @@
using Ghost.Data.Models;
using Ghost.Data.Models;
using Ghost.Data.Resources;
using System.Data.SQLite;

View File

@@ -1,4 +1,4 @@
namespace Ghost.Data.Resources;
namespace Ghost.Data.Resources;
public static class AssetsPath
{

View File

@@ -1,4 +1,4 @@
namespace Ghost.Data.Resources;
namespace Ghost.Data.Resources;
public class DataPath
{

View File

@@ -1,4 +1,4 @@
using Ghost.Core;
using Ghost.Core;
using Ghost.Data.Models;
using Ghost.Data.Repository;
using Ghost.Data.Resources;