diff --git a/CircleFanCount/CircleFanCount.csproj b/CircleFanCount/CircleFanCount.csproj
index 1d6238e..c30a7b5 100644
--- a/CircleFanCount/CircleFanCount.csproj
+++ b/CircleFanCount/CircleFanCount.csproj
@@ -9,13 +9,18 @@
$(AssemblyName)
- 1.0.1
+ 1.0.2
icon.ico
true
+ README.md
+ https://github.com/LoveCany/CircleFanCount
+ git
+ umamusume
1701;1702;CS8509;CS8618
+ True
diff --git a/CircleFanCount/Config.cs b/CircleFanCount/Config.cs
index 3f620c2..1c5a5b8 100644
--- a/CircleFanCount/Config.cs
+++ b/CircleFanCount/Config.cs
@@ -11,7 +11,7 @@ namespace CircleFanCount
{
internal static class Config
{
- internal static string CONFIG_FILEPATH = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "UmamusumeResponseAnalyzer", ".config");
+ internal static string CONFIG_FILEPATH = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "CircleFanCount", ".config");
internal static Dictionary ConfigSet { get; set; } = new();
internal static Dictionary Configuration { get; private set; } = new();
internal static void Initialize()
@@ -22,7 +22,7 @@ internal static void Initialize()
});
ConfigSet.Add(Resource.ConfigSet_SaveResponseForDebug, Array.Empty());
ConfigSet.Add(Resource.ConfigSet_DMMLaunch, Array.Empty());
- Directory.CreateDirectory(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "UmamusumeResponseAnalyzer"));
+ Directory.CreateDirectory(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "CircleFanCount"));
if (File.Exists(CONFIG_FILEPATH))
{
try