From 33fb1ce87f46cc7e5f575d51493228117a821968 Mon Sep 17 00:00:00 2001 From: Argo-Cloud Date: Sat, 5 Dec 2020 21:02:52 +0800 Subject: [PATCH 1/2] =?UTF-8?q?refactor:=20=E5=A2=9E=E5=8A=A0=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E6=96=B9=E6=A1=88=E4=B8=8E=E5=B7=A5=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SliderCaptcha.sln | 25 +++++++++++++++++++++++++ src/slidercaptch.csproj | 7 +++++++ 2 files changed, 32 insertions(+) create mode 100644 SliderCaptcha.sln create mode 100644 src/slidercaptch.csproj diff --git a/SliderCaptcha.sln b/SliderCaptcha.sln new file mode 100644 index 0000000..5461f82 --- /dev/null +++ b/SliderCaptcha.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30717.126 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorApp1", "BlazorApp1\BlazorApp1\BlazorApp1.csproj", "{619FBEB8-0134-41E3-9571-8BD468FB9A7A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0C8F0C02-F1A5-4927-B035-6BC8030B8F29} + EndGlobalSection +EndGlobal diff --git a/src/slidercaptch.csproj b/src/slidercaptch.csproj new file mode 100644 index 0000000..842a770 --- /dev/null +++ b/src/slidercaptch.csproj @@ -0,0 +1,7 @@ + + + + net5.0 + + + -- Gitee From ff1e5ce01c778fb330c92f9a5d6aed201974a929 Mon Sep 17 00:00:00 2001 From: Argo-Cloud Date: Sat, 5 Dec 2020 21:03:39 +0800 Subject: [PATCH 2/2] =?UTF-8?q?refactor:=20=E6=9B=B4=E6=96=B0=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E6=96=B9=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SliderCaptcha.sln | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SliderCaptcha.sln b/SliderCaptcha.sln index 5461f82..d0a3f88 100644 --- a/SliderCaptcha.sln +++ b/SliderCaptcha.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30717.126 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorApp1", "BlazorApp1\BlazorApp1\BlazorApp1.csproj", "{619FBEB8-0134-41E3-9571-8BD468FB9A7A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "slidercaptch", "src\slidercaptch.csproj", "{69EB6B1A-5846-4927-BEC2-75AA7BFD8F4B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,10 +11,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {619FBEB8-0134-41E3-9571-8BD468FB9A7A}.Release|Any CPU.Build.0 = Release|Any CPU + {69EB6B1A-5846-4927-BEC2-75AA7BFD8F4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {69EB6B1A-5846-4927-BEC2-75AA7BFD8F4B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {69EB6B1A-5846-4927-BEC2-75AA7BFD8F4B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {69EB6B1A-5846-4927-BEC2-75AA7BFD8F4B}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE -- Gitee