Skip to content

Commit 92f9842

Browse files
committed
chore: 重命名
1 parent 72c5fd6 commit 92f9842

16 files changed

+16
-16
lines changed

Core/Input/Executor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Threading.Tasks;
33

4-
namespace StoryParser
4+
namespace StoryTable
55
{
66
public class Executor
77
{

Core/Input/IntermediateFile.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading.Tasks;
55
using System.Text;
66

7-
namespace StoryParser
7+
namespace StoryTable
88
{
99
public static class IntermediateFile
1010
{

Core/Statement/Containers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
public class Line
44
{

Core/Statement/ParseAttribute.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
44
public class ParseAttribute : Attribute

Core/Statement/Statement.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
public enum ExecuteMode
44
{

Core/Statement/StatementFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
public static class StatementFactory
44
{

Core/Util/Locator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
public readonly struct Locator
44
{

Core/Util/Separators.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
public static class Separators
44
{

Extension/If.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
[Parse("IF")]
44
public class If : Statement

Extension/Menu.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace StoryParser
3+
namespace StoryTable
44
{
55
[Parse("MENU")]
66
public class Menu : Statement

Extension/Provider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
public static class Provider
44
{

Extension/Say.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text.RegularExpressions;
22

3-
namespace StoryParser
3+
namespace StoryTable
44
{
55
[Parse("SAY")]
66
public class Say : Statement

Extension/Vary.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace StoryParser
1+
namespace StoryTable
22
{
33
[Parse("VARY")]
44
public class Vary : Statement

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# StoryParser
1+
# StoryTable

StoryParser.csproj StoryTable.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<LangVersion>9.0</LangVersion>
4+
<LangVersion>10.0</LangVersion>
55
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>

StoryParser.sln StoryTable.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.8.34322.80
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StoryParser", "StoryParser.csproj", "{03DF030B-30DF-4C59-B50F-C093B9D1B291}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StoryTable", "StoryTable.csproj", "{03DF030B-30DF-4C59-B50F-C093B9D1B291}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

0 commit comments

Comments
 (0)