From d7bee814c7425196c717417ef8a0f954747d0816 Mon Sep 17 00:00:00 2001 From: justerzhu Date: Wed, 4 Sep 2024 00:35:26 +0800 Subject: [PATCH] =?UTF-8?q?feature:=20=E6=B7=BB=E5=8A=A0=E5=8D=95=E5=85=83?= =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GeneralUpdate.Bowl.Test.csproj | 23 ++++++++++++ src/c#/GeneralUpdate.Bowl.Test/UnitTest1.cs | 9 +++++ .../GeneralUpdate.Client.Test.csproj | 23 ++++++++++++ src/c#/GeneralUpdate.Client.Test/UnitTest1.cs | 9 +++++ .../GeneralUpdate.Differential.Test.csproj | 23 ++++++++++++ .../UnitTest1.cs | 9 +++++ .../GeneralUpdate.Upgrad.Test.csproj | 23 ++++++++++++ src/c#/GeneralUpdate.Upgrad.Test/UnitTest1.cs | 9 +++++ .../GeneralUpdate.Zip.Test.csproj | 23 ++++++++++++ src/c#/GeneralUpdate.Zip.Test/UnitTest1.cs | 9 +++++ src/c#/GeneralUpdate.sln | 37 +++++++++++++++++++ 11 files changed, 197 insertions(+) create mode 100644 src/c#/GeneralUpdate.Bowl.Test/GeneralUpdate.Bowl.Test.csproj create mode 100644 src/c#/GeneralUpdate.Bowl.Test/UnitTest1.cs create mode 100644 src/c#/GeneralUpdate.Client.Test/GeneralUpdate.Client.Test.csproj create mode 100644 src/c#/GeneralUpdate.Client.Test/UnitTest1.cs create mode 100644 src/c#/GeneralUpdate.Differential.Test/GeneralUpdate.Differential.Test.csproj create mode 100644 src/c#/GeneralUpdate.Differential.Test/UnitTest1.cs create mode 100644 src/c#/GeneralUpdate.Upgrad.Test/GeneralUpdate.Upgrad.Test.csproj create mode 100644 src/c#/GeneralUpdate.Upgrad.Test/UnitTest1.cs create mode 100644 src/c#/GeneralUpdate.Zip.Test/GeneralUpdate.Zip.Test.csproj create mode 100644 src/c#/GeneralUpdate.Zip.Test/UnitTest1.cs diff --git a/src/c#/GeneralUpdate.Bowl.Test/GeneralUpdate.Bowl.Test.csproj b/src/c#/GeneralUpdate.Bowl.Test/GeneralUpdate.Bowl.Test.csproj new file mode 100644 index 0000000..085bddd --- /dev/null +++ b/src/c#/GeneralUpdate.Bowl.Test/GeneralUpdate.Bowl.Test.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + diff --git a/src/c#/GeneralUpdate.Bowl.Test/UnitTest1.cs b/src/c#/GeneralUpdate.Bowl.Test/UnitTest1.cs new file mode 100644 index 0000000..c76c89c --- /dev/null +++ b/src/c#/GeneralUpdate.Bowl.Test/UnitTest1.cs @@ -0,0 +1,9 @@ +namespace GeneralUpdate.Bowl.Test; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + } +} \ No newline at end of file diff --git a/src/c#/GeneralUpdate.Client.Test/GeneralUpdate.Client.Test.csproj b/src/c#/GeneralUpdate.Client.Test/GeneralUpdate.Client.Test.csproj new file mode 100644 index 0000000..085bddd --- /dev/null +++ b/src/c#/GeneralUpdate.Client.Test/GeneralUpdate.Client.Test.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + diff --git a/src/c#/GeneralUpdate.Client.Test/UnitTest1.cs b/src/c#/GeneralUpdate.Client.Test/UnitTest1.cs new file mode 100644 index 0000000..a34ba46 --- /dev/null +++ b/src/c#/GeneralUpdate.Client.Test/UnitTest1.cs @@ -0,0 +1,9 @@ +namespace GeneralUpdate.Client.Test; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + } +} \ No newline at end of file diff --git a/src/c#/GeneralUpdate.Differential.Test/GeneralUpdate.Differential.Test.csproj b/src/c#/GeneralUpdate.Differential.Test/GeneralUpdate.Differential.Test.csproj new file mode 100644 index 0000000..085bddd --- /dev/null +++ b/src/c#/GeneralUpdate.Differential.Test/GeneralUpdate.Differential.Test.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + diff --git a/src/c#/GeneralUpdate.Differential.Test/UnitTest1.cs b/src/c#/GeneralUpdate.Differential.Test/UnitTest1.cs new file mode 100644 index 0000000..8744088 --- /dev/null +++ b/src/c#/GeneralUpdate.Differential.Test/UnitTest1.cs @@ -0,0 +1,9 @@ +namespace GeneralUpdate.Differential.Test; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + } +} \ No newline at end of file diff --git a/src/c#/GeneralUpdate.Upgrad.Test/GeneralUpdate.Upgrad.Test.csproj b/src/c#/GeneralUpdate.Upgrad.Test/GeneralUpdate.Upgrad.Test.csproj new file mode 100644 index 0000000..085bddd --- /dev/null +++ b/src/c#/GeneralUpdate.Upgrad.Test/GeneralUpdate.Upgrad.Test.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + diff --git a/src/c#/GeneralUpdate.Upgrad.Test/UnitTest1.cs b/src/c#/GeneralUpdate.Upgrad.Test/UnitTest1.cs new file mode 100644 index 0000000..89a044d --- /dev/null +++ b/src/c#/GeneralUpdate.Upgrad.Test/UnitTest1.cs @@ -0,0 +1,9 @@ +namespace GeneralUpdate.Upgrad.Test; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + } +} \ No newline at end of file diff --git a/src/c#/GeneralUpdate.Zip.Test/GeneralUpdate.Zip.Test.csproj b/src/c#/GeneralUpdate.Zip.Test/GeneralUpdate.Zip.Test.csproj new file mode 100644 index 0000000..085bddd --- /dev/null +++ b/src/c#/GeneralUpdate.Zip.Test/GeneralUpdate.Zip.Test.csproj @@ -0,0 +1,23 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + diff --git a/src/c#/GeneralUpdate.Zip.Test/UnitTest1.cs b/src/c#/GeneralUpdate.Zip.Test/UnitTest1.cs new file mode 100644 index 0000000..0a715df --- /dev/null +++ b/src/c#/GeneralUpdate.Zip.Test/UnitTest1.cs @@ -0,0 +1,9 @@ +namespace GeneralUpdate.Zip.Test; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + } +} \ No newline at end of file diff --git a/src/c#/GeneralUpdate.sln b/src/c#/GeneralUpdate.sln index cf1cae8..6ccfb90 100644 --- a/src/c#/GeneralUpdate.sln +++ b/src/c#/GeneralUpdate.sln @@ -27,6 +27,18 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.Common", "Gen EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.Bowl", "GeneralUpdate.Bowl\GeneralUpdate.Bowl.csproj", "{49D0687D-1321-48E9-84C3-936B10532367}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{305810CB-3BBB-4BDF-A718-F68DA1CFC5F5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.Client.Test", "GeneralUpdate.Client.Test\GeneralUpdate.Client.Test.csproj", "{D02F729E-2A54-4667-88CA-7EB1C94E0A68}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.Upgrad.Test", "GeneralUpdate.Upgrad.Test\GeneralUpdate.Upgrad.Test.csproj", "{665F4A98-C6D3-42E7-BFAE-B4E8FC938FFA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.Zip.Test", "GeneralUpdate.Zip.Test\GeneralUpdate.Zip.Test.csproj", "{A7B03A99-3C82-4B1A-B34D-9D43E25EF598}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.Differential.Test", "GeneralUpdate.Differential.Test\GeneralUpdate.Differential.Test.csproj", "{B4462DE1-1978-4871-AE51-3A6A2BAF22DC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneralUpdate.Bowl.Test", "GeneralUpdate.Bowl.Test\GeneralUpdate.Bowl.Test.csproj", "{B1FE5A6A-F8B4-473D-8492-E43DDC6D73E0}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -75,6 +87,26 @@ Global {49D0687D-1321-48E9-84C3-936B10532367}.Debug|Any CPU.Build.0 = Debug|Any CPU {49D0687D-1321-48E9-84C3-936B10532367}.Release|Any CPU.ActiveCfg = Release|Any CPU {49D0687D-1321-48E9-84C3-936B10532367}.Release|Any CPU.Build.0 = Release|Any CPU + {D02F729E-2A54-4667-88CA-7EB1C94E0A68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D02F729E-2A54-4667-88CA-7EB1C94E0A68}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D02F729E-2A54-4667-88CA-7EB1C94E0A68}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D02F729E-2A54-4667-88CA-7EB1C94E0A68}.Release|Any CPU.Build.0 = Release|Any CPU + {665F4A98-C6D3-42E7-BFAE-B4E8FC938FFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {665F4A98-C6D3-42E7-BFAE-B4E8FC938FFA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {665F4A98-C6D3-42E7-BFAE-B4E8FC938FFA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {665F4A98-C6D3-42E7-BFAE-B4E8FC938FFA}.Release|Any CPU.Build.0 = Release|Any CPU + {A7B03A99-3C82-4B1A-B34D-9D43E25EF598}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A7B03A99-3C82-4B1A-B34D-9D43E25EF598}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A7B03A99-3C82-4B1A-B34D-9D43E25EF598}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A7B03A99-3C82-4B1A-B34D-9D43E25EF598}.Release|Any CPU.Build.0 = Release|Any CPU + {B4462DE1-1978-4871-AE51-3A6A2BAF22DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B4462DE1-1978-4871-AE51-3A6A2BAF22DC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B4462DE1-1978-4871-AE51-3A6A2BAF22DC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B4462DE1-1978-4871-AE51-3A6A2BAF22DC}.Release|Any CPU.Build.0 = Release|Any CPU + {B1FE5A6A-F8B4-473D-8492-E43DDC6D73E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B1FE5A6A-F8B4-473D-8492-E43DDC6D73E0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B1FE5A6A-F8B4-473D-8492-E43DDC6D73E0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B1FE5A6A-F8B4-473D-8492-E43DDC6D73E0}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -90,6 +122,11 @@ Global {7779FB4A-D121-48CC-B033-C3D36BD5D4FF} = {74BE0282-A10D-4A81-A0F0-FAA79A6152B7} {D14E59CD-404B-467B-9C6D-91EFC5994D37} = {91F059E6-7AD3-4FB7-9604-30A7849C6EFF} {49D0687D-1321-48E9-84C3-936B10532367} = {91F059E6-7AD3-4FB7-9604-30A7849C6EFF} + {D02F729E-2A54-4667-88CA-7EB1C94E0A68} = {305810CB-3BBB-4BDF-A718-F68DA1CFC5F5} + {665F4A98-C6D3-42E7-BFAE-B4E8FC938FFA} = {305810CB-3BBB-4BDF-A718-F68DA1CFC5F5} + {A7B03A99-3C82-4B1A-B34D-9D43E25EF598} = {305810CB-3BBB-4BDF-A718-F68DA1CFC5F5} + {B4462DE1-1978-4871-AE51-3A6A2BAF22DC} = {305810CB-3BBB-4BDF-A718-F68DA1CFC5F5} + {B1FE5A6A-F8B4-473D-8492-E43DDC6D73E0} = {305810CB-3BBB-4BDF-A718-F68DA1CFC5F5} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {A7B2D0AD-E000-4749-BAC0-FF21B9872805}