Skip to content

Commit 3a8a36f

Browse files
clanstyMenci
andcommitted
Migrate sln to slnx
Co-authored-by: Menci <mencici@msn.com>
1 parent 21c3340 commit 3a8a36f

File tree

10 files changed

+16
-97
lines changed

10 files changed

+16
-97
lines changed

AquaMai.Build/AquaMai.Build.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{4C0C68C3-8B2E-4CA8-A26D-AE87CF2A38A5}</ProjectGuid>
76
<OutputType>Library</OutputType>
87
<RootNamespace>AquaMai.Build</RootNamespace>
98
<AssemblyName>AquaMai.Build</AssemblyName>

AquaMai.Config.HeadlessLoader/AquaMai.Config.HeadlessLoader.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{6B5E1F3E-D012-4CFB-A2FA-26A6CE06BE66}</ProjectGuid>
76
<OutputType>Library</OutputType>
87
<RootNamespace>AquaMai.Config.HeadlessLoader</RootNamespace>
98
<AssemblyName>AquaMai.Config.HeadlessLoader</AssemblyName>

AquaMai.Config.Interfaces/AquaMai.Config.Interfaces.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{DF1536F9-3B06-4463-B654-4CC3E708B610}</ProjectGuid>
76
<OutputType>Library</OutputType>
87
<RootNamespace>AquaMai.Config.Interfaces</RootNamespace>
98
<AssemblyName>AquaMai.Config.Interfaces</AssemblyName>

AquaMai.Config/AquaMai.Config.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{DF1536F9-3B06-4463-B654-4CC3E708B610}</ProjectGuid>
76
<OutputType>Library</OutputType>
87
<RootNamespace>AquaMai.Config</RootNamespace>
98
<AssemblyName>AquaMai.Config</AssemblyName>

AquaMai.Core/AquaMai.Core.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{33C0D4ED-6A84-4659-9A05-12D43D75D0B3}</ProjectGuid>
76
<OutputType>Library</OutputType>
87
<RootNamespace>AquaMai.Core</RootNamespace>
98
<AssemblyName>AquaMai.Core</AssemblyName>

AquaMai.Mods/AquaMai.Mods.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{8731C0E0-53BE-4B1B-9828-193E738C6865}</ProjectGuid>
76
<OutputType>Library</OutputType>
87
<RootNamespace>AquaMai.Mods</RootNamespace>
98
<AssemblyName>AquaMai.Mods</AssemblyName>

AquaMai.sln

Lines changed: 0 additions & 88 deletions
This file was deleted.

AquaMai.slnx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Solution>
2+
3+
<Project Path="AquaMai.Build/AquaMai.Build.csproj" />
4+
5+
<Project Path="AquaMai.Config.HeadlessLoader/AquaMai.Config.HeadlessLoader.csproj" />
6+
<Project Path="AquaMai.Config.Interfaces/AquaMai.Config.Interfaces.csproj" />
7+
<Project Path="AquaMai.Config/AquaMai.Config.csproj" />
8+
<Project Path="AquaMai.Core/AquaMai.Core.csproj" />
9+
<Project Path="AquaMai.Mods/AquaMai.Mods.csproj" />
10+
11+
<Project Path="AquaMai.ErrorReport/AquaMai.ErrorReport.csproj" />
12+
<Project Path="AquaMai/AquaMai.csproj" />
13+
14+
</Solution>

AquaMai/AquaMai.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{788BC472-59F7-46F6-B760-65C18BA74389}</ProjectGuid>
76
<OutputType>Library</OutputType>
87
<RootNamespace>AquaMai</RootNamespace>
98
<AssemblyName>AquaMai</AssemblyName>

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Task("Restore")
88
.Does(() =>
99
{
1010
// 运行 dotnet restore
11-
DotNetRestore("./AquaMai.sln");
11+
DotNetRestore("./AquaMai.slnx");
1212
});
1313

1414
Task("PreBuild")
@@ -48,7 +48,7 @@ Task("Build")
4848
.Does(() =>
4949
{
5050
// 使用 dotnet build 进行构建
51-
DotNetBuild("./AquaMai.sln", new DotNetBuildSettings
51+
DotNetBuild("./AquaMai.slnx", new DotNetBuildSettings
5252
{
5353
Configuration = configuration
5454
});

0 commit comments

Comments
 (0)