Skip to content

Commit eddabba

Browse files
committed
build
1 parent 8c8f628 commit eddabba

129 files changed

Lines changed: 138 additions & 2958 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ obj/
44
riderModule.iml
55
/_ReSharper.Caches/
66
.vs
7+
*.user
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"dotnet-ef": {
6+
"version": "8.0.8",
7+
"commands": [
8+
"dotnet-ef"
9+
],
10+
"rollForward": false
11+
}
12+
}
13+
}

MaiChartManager/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
wwwroot

MaiChartManager/Launcher.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.Net;
22
using System.Net.Sockets;
3+
using System.Text.Json;
34
using System.Windows.Forms;
45
using Microsoft.AspNetCore.Hosting.Server;
56
using Microsoft.AspNetCore.Hosting.Server.Features;
@@ -17,7 +18,7 @@ public Launcher()
1718
# if DEBUG
1819
checkBox1.Checked = true;
1920
StaticSettings.Config.Export = true;
20-
textBox1.Text = @"D:\Maimai HDD\sdga145";
21+
textBox1.Text = @"E:\Desktop\wsb\sdga145";
2122
button2_Click(null, null);
2223
WindowState = FormWindowState.Minimized;
2324
# endif

MaiChartManager/MaiChartManager.csproj

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
4+
<TargetFramework>net8.0-windows</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<InvariantGlobalization>false</InvariantGlobalization>
88
<Platforms>x64</Platforms>
99
<IsTransformWebConfigDisabled>True</IsTransformWebConfigDisabled>
1010
<StaticWebAssetsEnabled>True</StaticWebAssetsEnabled>
1111
<OutputType>WinExe</OutputType>
12+
<ValidateExecutableReferencesMatchSelfContained>False</ValidateExecutableReferencesMatchSelfContained>
13+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
14+
<PublishTrimmed>False</PublishTrimmed>
15+
<PublishAot>False</PublishAot>
16+
<StartupObject>MaiChartManager.Program</StartupObject>
17+
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
18+
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
19+
<UseWindowsForms>true</UseWindowsForms>
1220
</PropertyGroup>
1321

1422
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
15-
<IsPublishable>False</IsPublishable>
23+
<IsPublishable>True</IsPublishable>
1624
<PlatformTarget>x64</PlatformTarget>
1725
</PropertyGroup>
1826

1927
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
20-
<IsPublishable>False</IsPublishable>
28+
<IsPublishable>True</IsPublishable>
2129
<PlatformTarget>x64</PlatformTarget>
2230
</PropertyGroup>
2331

@@ -119,4 +127,8 @@
119127
</EmbeddedResource>
120128
</ItemGroup>
121129

130+
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
131+
<Exec Command="cd Front&#xD;&#xA;pnpm build" />
132+
</Target>
133+
122134
</Project>

MaiChartManager/MaiChartManager.csproj.DotSettings.user

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System.Reflection;
2+
3+
[assembly: AssemblyCompany("MaiChartManager")]
4+
[assembly: AssemblyFileVersion("1.0.0.0")]
5+
[assembly: AssemblyInformationalVersion("1.0.0")]
6+
[assembly: AssemblyProduct("MaiChartManager")]
7+
[assembly: AssemblyTitle("MaiChartManager")]
8+
[assembly: AssemblyVersion("1.0.0.0")]
9+
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0")]
10+
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<DeleteExistingFiles>true</DeleteExistingFiles>
8+
<ExcludeApp_Data>false</ExcludeApp_Data>
9+
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
10+
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
11+
<LastUsedPlatform>x64</LastUsedPlatform>
12+
<PublishProvider>FileSystem</PublishProvider>
13+
<PublishUrl>bin\publish</PublishUrl>
14+
<WebPublishMethod>FileSystem</WebPublishMethod>
15+
<_TargetId>Folder</_TargetId>
16+
<SiteUrlToLaunchAfterPublish />
17+
<TargetFramework>net8.0-windows</TargetFramework>
18+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
19+
<PublishReadyToRun>true</PublishReadyToRun>
20+
<ProjectGuid>16cdf3f3-c0e1-4d32-bfc9-07c8057b8f68</ProjectGuid>
21+
<SelfContained>true</SelfContained>
22+
<PublishSingleFile>false</PublishSingleFile>
23+
</PropertyGroup>
24+
</Project>

MaiChartManager/ServerManager.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
using System.Security.Cryptography.X509Certificates;
1+
using System.Net;
2+
using System.Security.Cryptography.X509Certificates;
23
using System.Text.Json.Serialization;
34
using System.Windows.Forms;
5+
using Microsoft.AspNetCore.Server.Kestrel.Https;
46
using Pluralsight.Crypto;
57
using Sentry.AspNetCore;
68

-10.2 MB
Binary file not shown.

0 commit comments

Comments
 (0)