From 850e7d57d0fc7d56f0eab4620781bb3adc061c35 Mon Sep 17 00:00:00 2001 From: Danny Logsdon Date: Sun, 3 Nov 2024 10:10:44 -0500 Subject: [PATCH] v1.1.0-o prerelease * New ServiceBricks.Logging.Microservice project to rollup all assemblies * Remove debug projects * Update Swashbuckle.AspNetCore to 6.9.0 --- ServiceBricksLoggingV1.sln | 60 ++----------- ...ricks.Logging.AzureDataTables.Debug.csproj | 34 -------- .../ServiceBricks.Logging.AzureDataTables.snk | Bin 596 -> 0 bytes ...rviceBricks.Logging.AzureDataTables.csproj | 10 +-- .../ServiceBricks.Logging.Cosmos.Debug.csproj | 34 -------- .../ServiceBricks.Logging.Cosmos.snk | Bin 596 -> 0 bytes .../ServiceBricks.Logging.Cosmos.csproj | 11 ++- .../ServiceBricks.Logging.Debug.csproj | 43 --------- .../ServiceBricks.Logging.snk | Bin 596 -> 0 bytes ...s.Logging.EntityFrameworkCore.Debug.csproj | 29 ------- ...viceBricks.Logging.EntityFrameworkCore.snk | Bin 596 -> 0 bytes ...eBricks.Logging.EntityFrameworkCore.csproj | 12 ++- ...erviceBricks.Logging.InMemory.Debug.csproj | 25 ------ .../ServiceBricks.Logging.InMemory.snk | Bin 596 -> 0 bytes .../ServiceBricks.Logging.InMemory.csproj | 14 ++- .../ServiceBricks.Logging.Microservice.snk | Bin 0 -> 596 bytes .../Resource/logo.png | Bin 0 -> 5864 bytes .../Resource/readme.md | 58 +++++++++++++ .../ServiceBricks.Logging.Microservice.csproj | 82 ++++++++++++++++++ ...ServiceBricks.Logging.MongoDb.Debug.csproj | 29 ------- .../ServiceBricks.Logging.MongoDb.snk | Bin 596 -> 0 bytes .../ServiceBricks.Logging.MongoDb.csproj | 12 +-- ...erviceBricks.Logging.Postgres.Debug.csproj | 29 ------- .../ServiceBricks.Logging.Postgres.snk | Bin 596 -> 0 bytes .../ServiceBricks.Logging.Postgres.csproj | 12 ++- ...rviceBricks.Logging.SqlServer.Debug.csproj | 29 ------- .../ServiceBricks.Logging.SqlServer.snk | Bin 596 -> 0 bytes .../ServiceBricks.Logging.SqlServer.csproj | 14 ++- .../ServiceBricks.Logging.Sqlite.Debug.csproj | 29 ------- .../ServiceBricks.Logging.Sqlite.snk | Bin 596 -> 0 bytes .../ServiceBricks.Logging.Sqlite.csproj | 16 ++-- .../ServiceBricks.Logging.csproj | 8 +- ...s.Logging.AzureDataTables.XunitNet6.csproj | 10 +-- ...s.Logging.AzureDataTables.XunitNet7.csproj | 11 +-- ...s.Logging.AzureDataTables.XunitNet8.csproj | 11 ++- ...viceBricks.Logging.Cosmos.XunitNet6.csproj | 11 +-- ...viceBricks.Logging.Cosmos.XunitNet7.csproj | 6 +- ...viceBricks.Logging.Cosmos.XunitNet8.csproj | 12 +-- ...ceBricks.Logging.InMemory.XunitNet6.csproj | 12 ++- ...ceBricks.Logging.InMemory.XunitNet7.csproj | 11 ++- ...ceBricks.Logging.InMemory.XunitNet8.csproj | 13 +-- ...iceBricks.Logging.MongoDb.XunitNet6.csproj | 13 ++- ...iceBricks.Logging.MongoDb.XunitNet7.csproj | 11 +-- ...iceBricks.Logging.MongoDb.XunitNet8.csproj | 12 +-- ...ceBricks.Logging.Postgres.XunitNet6.csproj | 6 +- ...ceBricks.Logging.Postgres.XunitNet7.csproj | 11 ++- ...ceBricks.Logging.Postgres.XunitNet8.csproj | 12 +-- ...eBricks.Logging.SqlServer.XunitNet6.csproj | 10 +-- ...eBricks.Logging.SqlServer.XunitNet7.csproj | 11 ++- ...eBricks.Logging.SqlServer.XunitNet8.csproj | 6 +- ...viceBricks.Logging.Sqlite.XunitNet6.csproj | 6 +- ...viceBricks.Logging.Sqlite.XunitNet7.csproj | 10 +-- ...viceBricks.Logging.Sqlite.XunitNet8.csproj | 12 +-- .../ServiceBricks.Logging.XunitNet6.csproj | 11 ++- .../ServiceBricks.Logging.XunitNet7.csproj | 10 +-- .../ServiceBricks.Logging.XunitNet8.csproj | 10 +-- src/V1/Tests/WebAppNet6/WebAppNet6.csproj | 21 ++--- src/V1/Tests/WebAppNet7/WebAppNet7.csproj | 23 ++--- src/V1/Tests/WebAppNet8/WebAppNet8.csproj | 24 ++--- 59 files changed, 335 insertions(+), 571 deletions(-) delete mode 100644 src/V1/ServiceBricks.Logging.AzureDataTables.Debug/ServiceBricks.Logging.AzureDataTables.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.AzureDataTables.Debug/ServiceBricks.Logging.AzureDataTables.snk delete mode 100644 src/V1/ServiceBricks.Logging.Cosmos.Debug/ServiceBricks.Logging.Cosmos.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.Cosmos.Debug/ServiceBricks.Logging.Cosmos.snk delete mode 100644 src/V1/ServiceBricks.Logging.Debug/ServiceBricks.Logging.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.Debug/ServiceBricks.Logging.snk delete mode 100644 src/V1/ServiceBricks.Logging.EntityFrameworkCore.Debug/ServiceBricks.Logging.EntityFrameworkCore.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.EntityFrameworkCore.Debug/ServiceBricks.Logging.EntityFrameworkCore.snk delete mode 100644 src/V1/ServiceBricks.Logging.InMemory.Debug/ServiceBricks.Logging.InMemory.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.InMemory.Debug/ServiceBricks.Logging.InMemory.snk create mode 100644 src/V1/ServiceBricks.Logging.Microservice/Resource/ServiceBricks.Logging.Microservice.snk create mode 100644 src/V1/ServiceBricks.Logging.Microservice/Resource/logo.png create mode 100644 src/V1/ServiceBricks.Logging.Microservice/Resource/readme.md create mode 100644 src/V1/ServiceBricks.Logging.Microservice/ServiceBricks.Logging.Microservice.csproj delete mode 100644 src/V1/ServiceBricks.Logging.MongoDb.Debug/ServiceBricks.Logging.MongoDb.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.MongoDb.Debug/ServiceBricks.Logging.MongoDb.snk delete mode 100644 src/V1/ServiceBricks.Logging.Postgres.Debug/ServiceBricks.Logging.Postgres.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.Postgres.Debug/ServiceBricks.Logging.Postgres.snk delete mode 100644 src/V1/ServiceBricks.Logging.SqlServer.Debug/ServiceBricks.Logging.SqlServer.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.SqlServer.Debug/ServiceBricks.Logging.SqlServer.snk delete mode 100644 src/V1/ServiceBricks.Logging.Sqlite.Debug/ServiceBricks.Logging.Sqlite.Debug.csproj delete mode 100644 src/V1/ServiceBricks.Logging.Sqlite.Debug/ServiceBricks.Logging.Sqlite.snk diff --git a/ServiceBricksLoggingV1.sln b/ServiceBricksLoggingV1.sln index 5f050aa..0e4b0f3 100644 --- a/ServiceBricksLoggingV1.sln +++ b/ServiceBricksLoggingV1.sln @@ -7,38 +7,20 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging", "sr EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.AzureDataTables", "src\V1\ServiceBricks.Logging.AzureDataTables\ServiceBricks.Logging.AzureDataTables.csproj", "{C2B4255B-C0DF-4799-A77A-F57064AB4D4F}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.AzureDataTables.Debug", "src\V1\ServiceBricks.Logging.AzureDataTables.Debug\ServiceBricks.Logging.AzureDataTables.Debug.csproj", "{905A2A7C-C58B-4D2D-B938-0334353F24C5}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Cosmos", "src\V1\ServiceBricks.Logging.Cosmos\ServiceBricks.Logging.Cosmos.csproj", "{BAEE9E0E-1064-4752-BEFE-13C0CEBCABF3}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Cosmos.Debug", "src\V1\ServiceBricks.Logging.Cosmos.Debug\ServiceBricks.Logging.Cosmos.Debug.csproj", "{150D2F59-7A15-4409-BB16-ABD55CCCCA45}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Debug", "src\V1\ServiceBricks.Logging.Debug\ServiceBricks.Logging.Debug.csproj", "{CDDCB349-F677-4E47-831D-7B1E3F0F8052}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.EntityFrameworkCore", "src\V1\ServiceBricks.Logging.EntityFrameworkCore\ServiceBricks.Logging.EntityFrameworkCore.csproj", "{7B38060C-6300-42AB-86AD-A5CEC71AC9F2}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.EntityFrameworkCore.Debug", "src\V1\ServiceBricks.Logging.EntityFrameworkCore.Debug\ServiceBricks.Logging.EntityFrameworkCore.Debug.csproj", "{1057B0A6-014D-48D3-853C-6DA01869419E}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.InMemory", "src\V1\ServiceBricks.Logging.InMemory\ServiceBricks.Logging.InMemory.csproj", "{CC671654-44F5-452C-A383-734FB8943055}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.InMemory.Debug", "src\V1\ServiceBricks.Logging.InMemory.Debug\ServiceBricks.Logging.InMemory.Debug.csproj", "{05B2B32A-E033-40DC-B8EB-FA6BCD70F043}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.MongoDb", "src\V1\ServiceBricks.Logging.MongoDb\ServiceBricks.Logging.MongoDb.csproj", "{94BAE2AB-487D-4725-993B-24E8D5D73AAE}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.MongoDb.Debug", "src\V1\ServiceBricks.Logging.MongoDb.Debug\ServiceBricks.Logging.MongoDb.Debug.csproj", "{515B513B-5531-41C8-B647-7CFB6783B579}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Postgres", "src\V1\ServiceBricks.Logging.Postgres\ServiceBricks.Logging.Postgres.csproj", "{F21E7A5F-A912-436C-A0C6-D7BC9217A352}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Postgres.Debug", "src\V1\ServiceBricks.Logging.Postgres.Debug\ServiceBricks.Logging.Postgres.Debug.csproj", "{4EE61CB0-2C41-4D03-AA70-CC1A2885968C}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Sqlite", "src\V1\ServiceBricks.Logging.Sqlite\ServiceBricks.Logging.Sqlite.csproj", "{8FB7CE0B-FB60-4DD6-BFDD-9B20A1CB04E1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Sqlite.Debug", "src\V1\ServiceBricks.Logging.Sqlite.Debug\ServiceBricks.Logging.Sqlite.Debug.csproj", "{E53BD949-51D0-4505-A14E-A19DD82C4826}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.SqlServer", "src\V1\ServiceBricks.Logging.SqlServer\ServiceBricks.Logging.SqlServer.csproj", "{D3FED6C5-B158-47AC-97BC-48C972B03532}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.SqlServer.Debug", "src\V1\ServiceBricks.Logging.SqlServer.Debug\ServiceBricks.Logging.SqlServer.Debug.csproj", "{6C83DCDC-E7D0-4993-A538-D10D7003FFD0}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{88B1428A-EB13-437B-9B06-420DB5522C4B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Net6", "Net6", "{2F2853AB-4E20-4650-922C-97CD46D0C7BE}" @@ -109,6 +91,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceBricks.Logging.Xunit EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebAppNet8", "src\V1\Tests\WebAppNet8\WebAppNet8.csproj", "{2D3512F6-AA28-4D20-B9F7-F235C98493F6}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceBricks.Logging.Microservice", "src\V1\ServiceBricks.Logging.Microservice\ServiceBricks.Logging.Microservice.csproj", "{D8BF900A-B587-4B60-9E66-5F83B915D83C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -123,70 +107,34 @@ Global {C2B4255B-C0DF-4799-A77A-F57064AB4D4F}.Debug|Any CPU.Build.0 = Debug|Any CPU {C2B4255B-C0DF-4799-A77A-F57064AB4D4F}.Release|Any CPU.ActiveCfg = Release|Any CPU {C2B4255B-C0DF-4799-A77A-F57064AB4D4F}.Release|Any CPU.Build.0 = Release|Any CPU - {905A2A7C-C58B-4D2D-B938-0334353F24C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {905A2A7C-C58B-4D2D-B938-0334353F24C5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {905A2A7C-C58B-4D2D-B938-0334353F24C5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {905A2A7C-C58B-4D2D-B938-0334353F24C5}.Release|Any CPU.Build.0 = Release|Any CPU {BAEE9E0E-1064-4752-BEFE-13C0CEBCABF3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BAEE9E0E-1064-4752-BEFE-13C0CEBCABF3}.Debug|Any CPU.Build.0 = Debug|Any CPU {BAEE9E0E-1064-4752-BEFE-13C0CEBCABF3}.Release|Any CPU.ActiveCfg = Release|Any CPU {BAEE9E0E-1064-4752-BEFE-13C0CEBCABF3}.Release|Any CPU.Build.0 = Release|Any CPU - {150D2F59-7A15-4409-BB16-ABD55CCCCA45}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {150D2F59-7A15-4409-BB16-ABD55CCCCA45}.Debug|Any CPU.Build.0 = Debug|Any CPU - {150D2F59-7A15-4409-BB16-ABD55CCCCA45}.Release|Any CPU.ActiveCfg = Release|Any CPU - {150D2F59-7A15-4409-BB16-ABD55CCCCA45}.Release|Any CPU.Build.0 = Release|Any CPU - {CDDCB349-F677-4E47-831D-7B1E3F0F8052}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CDDCB349-F677-4E47-831D-7B1E3F0F8052}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CDDCB349-F677-4E47-831D-7B1E3F0F8052}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CDDCB349-F677-4E47-831D-7B1E3F0F8052}.Release|Any CPU.Build.0 = Release|Any CPU {7B38060C-6300-42AB-86AD-A5CEC71AC9F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7B38060C-6300-42AB-86AD-A5CEC71AC9F2}.Debug|Any CPU.Build.0 = Debug|Any CPU {7B38060C-6300-42AB-86AD-A5CEC71AC9F2}.Release|Any CPU.ActiveCfg = Release|Any CPU {7B38060C-6300-42AB-86AD-A5CEC71AC9F2}.Release|Any CPU.Build.0 = Release|Any CPU - {1057B0A6-014D-48D3-853C-6DA01869419E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1057B0A6-014D-48D3-853C-6DA01869419E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1057B0A6-014D-48D3-853C-6DA01869419E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1057B0A6-014D-48D3-853C-6DA01869419E}.Release|Any CPU.Build.0 = Release|Any CPU {CC671654-44F5-452C-A383-734FB8943055}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CC671654-44F5-452C-A383-734FB8943055}.Debug|Any CPU.Build.0 = Debug|Any CPU {CC671654-44F5-452C-A383-734FB8943055}.Release|Any CPU.ActiveCfg = Release|Any CPU {CC671654-44F5-452C-A383-734FB8943055}.Release|Any CPU.Build.0 = Release|Any CPU - {05B2B32A-E033-40DC-B8EB-FA6BCD70F043}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {05B2B32A-E033-40DC-B8EB-FA6BCD70F043}.Debug|Any CPU.Build.0 = Debug|Any CPU - {05B2B32A-E033-40DC-B8EB-FA6BCD70F043}.Release|Any CPU.ActiveCfg = Release|Any CPU - {05B2B32A-E033-40DC-B8EB-FA6BCD70F043}.Release|Any CPU.Build.0 = Release|Any CPU {94BAE2AB-487D-4725-993B-24E8D5D73AAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {94BAE2AB-487D-4725-993B-24E8D5D73AAE}.Debug|Any CPU.Build.0 = Debug|Any CPU {94BAE2AB-487D-4725-993B-24E8D5D73AAE}.Release|Any CPU.ActiveCfg = Release|Any CPU {94BAE2AB-487D-4725-993B-24E8D5D73AAE}.Release|Any CPU.Build.0 = Release|Any CPU - {515B513B-5531-41C8-B647-7CFB6783B579}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {515B513B-5531-41C8-B647-7CFB6783B579}.Debug|Any CPU.Build.0 = Debug|Any CPU - {515B513B-5531-41C8-B647-7CFB6783B579}.Release|Any CPU.ActiveCfg = Release|Any CPU - {515B513B-5531-41C8-B647-7CFB6783B579}.Release|Any CPU.Build.0 = Release|Any CPU {F21E7A5F-A912-436C-A0C6-D7BC9217A352}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F21E7A5F-A912-436C-A0C6-D7BC9217A352}.Debug|Any CPU.Build.0 = Debug|Any CPU {F21E7A5F-A912-436C-A0C6-D7BC9217A352}.Release|Any CPU.ActiveCfg = Release|Any CPU {F21E7A5F-A912-436C-A0C6-D7BC9217A352}.Release|Any CPU.Build.0 = Release|Any CPU - {4EE61CB0-2C41-4D03-AA70-CC1A2885968C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4EE61CB0-2C41-4D03-AA70-CC1A2885968C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4EE61CB0-2C41-4D03-AA70-CC1A2885968C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4EE61CB0-2C41-4D03-AA70-CC1A2885968C}.Release|Any CPU.Build.0 = Release|Any CPU {8FB7CE0B-FB60-4DD6-BFDD-9B20A1CB04E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {8FB7CE0B-FB60-4DD6-BFDD-9B20A1CB04E1}.Debug|Any CPU.Build.0 = Debug|Any CPU {8FB7CE0B-FB60-4DD6-BFDD-9B20A1CB04E1}.Release|Any CPU.ActiveCfg = Release|Any CPU {8FB7CE0B-FB60-4DD6-BFDD-9B20A1CB04E1}.Release|Any CPU.Build.0 = Release|Any CPU - {E53BD949-51D0-4505-A14E-A19DD82C4826}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E53BD949-51D0-4505-A14E-A19DD82C4826}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E53BD949-51D0-4505-A14E-A19DD82C4826}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E53BD949-51D0-4505-A14E-A19DD82C4826}.Release|Any CPU.Build.0 = Release|Any CPU {D3FED6C5-B158-47AC-97BC-48C972B03532}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D3FED6C5-B158-47AC-97BC-48C972B03532}.Debug|Any CPU.Build.0 = Debug|Any CPU {D3FED6C5-B158-47AC-97BC-48C972B03532}.Release|Any CPU.ActiveCfg = Release|Any CPU {D3FED6C5-B158-47AC-97BC-48C972B03532}.Release|Any CPU.Build.0 = Release|Any CPU - {6C83DCDC-E7D0-4993-A538-D10D7003FFD0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6C83DCDC-E7D0-4993-A538-D10D7003FFD0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6C83DCDC-E7D0-4993-A538-D10D7003FFD0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6C83DCDC-E7D0-4993-A538-D10D7003FFD0}.Release|Any CPU.Build.0 = Release|Any CPU {309585C3-50C4-42C7-96E1-55B16EBDB8CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {309585C3-50C4-42C7-96E1-55B16EBDB8CF}.Debug|Any CPU.Build.0 = Debug|Any CPU {309585C3-50C4-42C7-96E1-55B16EBDB8CF}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -311,6 +259,10 @@ Global {2D3512F6-AA28-4D20-B9F7-F235C98493F6}.Debug|Any CPU.Build.0 = Debug|Any CPU {2D3512F6-AA28-4D20-B9F7-F235C98493F6}.Release|Any CPU.ActiveCfg = Release|Any CPU {2D3512F6-AA28-4D20-B9F7-F235C98493F6}.Release|Any CPU.Build.0 = Release|Any CPU + {D8BF900A-B587-4B60-9E66-5F83B915D83C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D8BF900A-B587-4B60-9E66-5F83B915D83C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D8BF900A-B587-4B60-9E66-5F83B915D83C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D8BF900A-B587-4B60-9E66-5F83B915D83C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/V1/ServiceBricks.Logging.AzureDataTables.Debug/ServiceBricks.Logging.AzureDataTables.Debug.csproj b/src/V1/ServiceBricks.Logging.AzureDataTables.Debug/ServiceBricks.Logging.AzureDataTables.Debug.csproj deleted file mode 100644 index 0544077..0000000 --- a/src/V1/ServiceBricks.Logging.AzureDataTables.Debug/ServiceBricks.Logging.AzureDataTables.Debug.csproj +++ /dev/null @@ -1,34 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.AzureDataTables.Debug/ServiceBricks.Logging.AzureDataTables.snk b/src/V1/ServiceBricks.Logging.AzureDataTables.Debug/ServiceBricks.Logging.AzureDataTables.snk deleted file mode 100644 index a84c94f3658f9a53d423414e832ee31c5fcdcd3b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50098K8X|WnqUUi~Tyi;5s?jw!%w%8I8&pfC zhz>`Yx|b1F-!uUsoHMoQg7>X!V@ys7>a4iIr)4adKtU_}Q-DA6$=dr9FLU9@M9l&qYw<*3 z$Wk=l-Ox`yqDub%XvWtfAwlpv^s={MLR5m|tGuF6Ue&A|Y}*MwYkcl%HR_-Am$x#LkK;7r|!)-&~~F4K?IG3}UXoRP`medH`|Q zbmYW?PRYYn#pz4N9!rh?eUd_g&Z=`Yw3US18H?)-le^J0Zc2CZD8)qFb}a7My&A-5 z-5Sqe8GiwY#9p_=6Ra;&o&Bc+8gO_mOKE<%`wA3D58WSMN - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.AzureDataTables ServiceBricks.Logging.AzureDataTables @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -33,9 +33,9 @@ - + - + diff --git a/src/V1/ServiceBricks.Logging.Cosmos.Debug/ServiceBricks.Logging.Cosmos.Debug.csproj b/src/V1/ServiceBricks.Logging.Cosmos.Debug/ServiceBricks.Logging.Cosmos.Debug.csproj deleted file mode 100644 index a867e97..0000000 --- a/src/V1/ServiceBricks.Logging.Cosmos.Debug/ServiceBricks.Logging.Cosmos.Debug.csproj +++ /dev/null @@ -1,34 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.Cosmos.Debug/ServiceBricks.Logging.Cosmos.snk b/src/V1/ServiceBricks.Logging.Cosmos.Debug/ServiceBricks.Logging.Cosmos.snk deleted file mode 100644 index ed0fa7b83819ced0ef0169fe9e5c097093bfd95c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50096kzkXkdJ6n#K8YDD+`KEzjcRkrS!xOWP z`YL0bQ?xDd&Yd>8kG44=36=@9ph-!)_=t8n-B)wHEBhj|%?TTLv--L2&t91T71p|; zpvLS%1fjkeMZIU;<;g(;6V69sQz(h<6|PP(9wMu=w1h<>+3@;~2M~f)kGvkQqg2-y zz&uoR*=4nYEO{y#zYYx>)k;v zk9#7i>8K(P)Ku)#{m!2RC;{t2|BUWe^*ka#uVXpOl3T)39|FRjT z - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.Cosmos ServiceBricks.Logging.Cosmos @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -33,11 +33,10 @@ - + - - + diff --git a/src/V1/ServiceBricks.Logging.Debug/ServiceBricks.Logging.Debug.csproj b/src/V1/ServiceBricks.Logging.Debug/ServiceBricks.Logging.Debug.csproj deleted file mode 100644 index 4b0f0c6..0000000 --- a/src/V1/ServiceBricks.Logging.Debug/ServiceBricks.Logging.Debug.csproj +++ /dev/null @@ -1,43 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.Debug/ServiceBricks.Logging.snk b/src/V1/ServiceBricks.Logging.Debug/ServiceBricks.Logging.snk deleted file mode 100644 index 8d482c80849d661f7512e05d7b9f345d0603aedd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50098OIl&i#{*E(x-MmypWh2VOJwm4~R%h$& zd%mErmhZt{E}!C;AWD+5aS`z_0G|okvSIU{xDIwJwsy40^`Q#%x^Z+p>}tR=*+WpL zRIAc0Ksq9}S>M(> zHZ$aA!nG79xc&v%>O{x*zD|F8}QaTqQ2y zvCGEhYYT08NN(nYm;&S;RlA+wpudDDCZnMoR&Kn28(lriiNs_rSHc-w@uto11DUX4 zl2pg-W;Q)B@-tmfNjx|1&R}-H>rGNHMeVGA^D0RIRl-slZOx#`Z0CaS>rUBu_*t^1 zXPa+Ny8$;f+eOFxlfqwvJt9)wbGE98rVXeDyr|s*)w!H;rO@e+6rmsJB`z~o{HdjQ zyykkIBT_ut@d~*8nd#{su`(Kfo - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.EntityFrameworkCore.Debug/ServiceBricks.Logging.EntityFrameworkCore.snk b/src/V1/ServiceBricks.Logging.EntityFrameworkCore.Debug/ServiceBricks.Logging.EntityFrameworkCore.snk deleted file mode 100644 index 70551ba773fe0fc14b543557d22bcca364eacd27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50098Ov%VhQiZjy@B}X>{bCbb zgcyG$c3>Uiym;N~+o({vIhtE7GyP3N$0y35byr+Pr_!W0PP#&e?a!_xabfy!?@{?n zgN?rH28xo(FHBO!Lkn=aW{!cWEVb4n!TIirGVboD`F>`96#K_Uw4DG?Fcz!mwF4d; zqS`Oo$=AurhOqymaS;7#`5PXDkO6CPp2L$>Y(Gaf;|$WtDCs9YT^U%67VpoETfR8> zNr1qSX&v8oP-nOO0s8J+G)!X`GYwygJNiV%-Hfb2Yu0zIc&VQ)JEvwLvdLeRuAP zwDexI(R&~8MM@ktvEYZ@JwkEUY7_Y|pqDrNf*WI5X_b+!Aky7hiHnk0L<2nM{P`eg zAXTEr`MW=umt+RT3%Ce}^k0;RjtYT$XU$2lHE{zYLd{n^4rbNi7tN7L~2RQ^At2xMFyh9P$-{_wVW i6r7lFewykMk;`Tp2U;(J= - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.EntityFrameworkCore ServiceBricks.Logging.EntityFrameworkCore @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -32,13 +32,11 @@ \ - - + - - + diff --git a/src/V1/ServiceBricks.Logging.InMemory.Debug/ServiceBricks.Logging.InMemory.Debug.csproj b/src/V1/ServiceBricks.Logging.InMemory.Debug/ServiceBricks.Logging.InMemory.Debug.csproj deleted file mode 100644 index 60a6bfd..0000000 --- a/src/V1/ServiceBricks.Logging.InMemory.Debug/ServiceBricks.Logging.InMemory.Debug.csproj +++ /dev/null @@ -1,25 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.InMemory.Debug/ServiceBricks.Logging.InMemory.snk b/src/V1/ServiceBricks.Logging.InMemory.Debug/ServiceBricks.Logging.InMemory.snk deleted file mode 100644 index 7deb17dfed797ed42f8ac356b728efe8db7b0b68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097{l*fv~ug~!lh46i_kH|H{z404c?J*uvoE!F6!Q+x(8d5-6rQq!lPVb7*@ZyIWwmv z9WBb;1z2ml5zhL1jBb~U8(i(^L`29N)}~c%JqU*O4kXtQE=E&gd6E3jNOp*GKCGw? zG!uc7)urXWh6Z_&8{ogBKB9rW>-5J3rq+WXdc`rOxJMZ})9(0r1#lu)%*b6b@?{+q zeiYJ$cK4;)juzE@voVI9%fjlywYlWoTm^%8B@}f;fTCZCbZOVi6r&kAzclxC0x_*d zlpsSV`&II!Xz0I#rp=v7YB-N?g41W^QE?z)ud6hVf~qYqS- z>mb`OtX<0`jbE9If>WZBy)F)N#1(W2*wHoEET5BB)n` zHg7kD_$h&?G_BMb`!I+lO77w(pkL@}$e_aEHvc08_Y-O7havC-O diff --git a/src/V1/ServiceBricks.Logging.InMemory/ServiceBricks.Logging.InMemory.csproj b/src/V1/ServiceBricks.Logging.InMemory/ServiceBricks.Logging.InMemory.csproj index 0f88c41..97f9af3 100644 --- a/src/V1/ServiceBricks.Logging.InMemory/ServiceBricks.Logging.InMemory.csproj +++ b/src/V1/ServiceBricks.Logging.InMemory/ServiceBricks.Logging.InMemory.csproj @@ -1,7 +1,7 @@ - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.InMemory ServiceBricks.Logging.InMemory @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -32,13 +32,11 @@ \ - - - - + + - + diff --git a/src/V1/ServiceBricks.Logging.Microservice/Resource/ServiceBricks.Logging.Microservice.snk b/src/V1/ServiceBricks.Logging.Microservice/Resource/ServiceBricks.Logging.Microservice.snk new file mode 100644 index 0000000000000000000000000000000000000000..cd7fa049e3428484abbbdae37dcfb1e33c0ba883 GIT binary patch literal 596 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 literal 0 HcmV?d00001 diff --git a/src/V1/ServiceBricks.Logging.Microservice/Resource/readme.md b/src/V1/ServiceBricks.Logging.Microservice/Resource/readme.md new file mode 100644 index 0000000..b9bbe91 --- /dev/null +++ b/src/V1/ServiceBricks.Logging.Microservice/Resource/readme.md @@ -0,0 +1,58 @@ +![ServiceBricks Logo](https://github.com/holomodular/ServiceBricks/blob/main/Logo.png) + +[![NuGet version](https://badge.fury.io/nu/ServiceBricks.svg)](https://badge.fury.io/nu/ServiceBricks) +![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/holomodular-support/bdb5c7c570a7a88ffb3efb3505273e34/raw/servicebricks-codecoverage.json) +[![License: MIT](https://img.shields.io/badge/License-MIT-389DA0.svg)](https://opensource.org/licenses/MIT) + +# ServiceBricks: The Foundation for Microservices + +## Overview + +Welcome to [ServiceBricks](https://ServiceBricks.com), your cornerstone for building a robust microservices foundation. +ServiceBricks is a powerful platform designed to streamline the development, deployment, and maintenance of distributed systems. +Leveraging Domain-Driven Design (DDD), Event-Driven Architecture (EDA), and a host of advanced features, ServiceBricks empowers teams to create scalable, customizable services tailored to specific business domains. + +## Why ServiceBricks? + +* **Architectural Excellence:** Provides the core architectural patterns, implementation, standardization, and governance for your microservices. +* **Storage Agnostic:** Exposes a storage platform-agnostic model and repository-based API, supporting both relational (SQL) and document (NoSQL) databases. +* **Seamless Integration:** Switch storage providers without impacting microservice operations. + + +## Major Features + +* **Generics:** Extensive use of generics, allowing the compiler to generate most of the required code. +* **REST API Services:** Templated, repository-based services for quickly exposing standard CRUD methods or custom methods. +* **[ServiceQuery Integration](https://github.com/holomodular/ServiceQuery):** Supports standardized, polyglot data querying for SQL and NoSQL databases. +* **[Business Rule Engine](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BusinessRuleEngine.md):** Polymorphic techniques to build reusable business logic. +* **[Domain-Driven Design (DDD)](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/FlowOfData.md) & [Event-Driven Architecture (EDA)](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/EventDrivenArchitecture.md):** Customize business logic for any supported object and method. +* **[Background Processing](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BackgroundTasks.md):** Supports asynchronous processes, tasks, and rules. +* **[SQL and NoSQL Database Support](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/SupportedDatabaseEngines.md):** Works standard with Azure Data Tables, Cosmos DB, InMemory, MongoDB, Postgres, SQLite, SQL Server or other providers. +* **[Service Bus Engine](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/BroadcastsAndServiceBus.md):** Supports broadcasts of system data with InMemory and Azure Service Bus. +* **[Classic or Modern REST API Design](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/ClassicVsModernRestApi.md):** Choose between Classic or Modern modes, with various response formats. +* **[NuGet Packages](https://github.com/holomodular/ServiceBricks-Documentation/blob/main/V1/NuGet.md):** Quickly build new services and applications. +* **Testing Framework:** Comprehensive Xunit test framework for robust unit and integration testing. +* **Open Source:** Only three dependencies (AutoMapper, Newtonsoft.Json, and ServiceQuery), all MIT licensed. +* **AI Integration:** Training AI to build new ServiceBricks microservices. Updates coming soon! + + +## Getting Started with Examples + +Explore our [ServiceBricks-Examples](https://github.com/holomodular/ServiceBricks-Examples) repository for practical examples on hosting and deploying your ServiceBricks foundation. From single, monolithic web applications to containerized web applications, these examples provide the building blocks to create and scale your foundations quickly. + +## Documentation + +Check out our [ServiceBricks-Documentation](https://github.com/holomodular/ServiceBricks-Documentation) repository for comprehensive documentation on the platform, including guides on using all components and developing your own microservices. + +## Official Pre-Built Microservices + +Get started quickly with our pre-built microservices: + +* [ServiceBricks-Cache](https://github.com/holomodular/ServiceBricks-Cache): Generic data storage with expiration microservice. +* [ServiceBricks-Logging](https://github.com/holomodular/ServiceBricks-Logging): Service-scoped or centralized application and web request logging microservice. +* [ServiceBricks-Notification](https://github.com/holomodular/ServiceBricks-Notification): Notification and delivery of emails and SMS messages. +* [ServiceBricks-Security](https://github.com/holomodular/ServiceBricks-Security): Authentication, authorization, and application security with JWT bearer token support for multi-application deployments. + +## About + +I am a business executive and software architect with 25+ years professional experience. You can reach me via www.linkedin.com/in/danlogsdon or https://HoloModular.com diff --git a/src/V1/ServiceBricks.Logging.Microservice/ServiceBricks.Logging.Microservice.csproj b/src/V1/ServiceBricks.Logging.Microservice/ServiceBricks.Logging.Microservice.csproj new file mode 100644 index 0000000..3cb4328 --- /dev/null +++ b/src/V1/ServiceBricks.Logging.Microservice/ServiceBricks.Logging.Microservice.csproj @@ -0,0 +1,82 @@ + + + + 1.1.0-o + The open source microservices platform. Visit https://ServiceBricks.com to learn more. + ServiceBricks.Logging.Microservice + ServiceBricks.Logging.Microservice + ServiceBricks.Logging.Microservice + holomodular + HoloModular LLC + ServiceBricks + net6.0;net7.0;net8.0 + disable + Copyright © 2024 HoloModular LLC. All Rights Reserved. Visit https://HoloModular.com to learn more. + https://ServiceBricks.com + logo.png + servicebricks;logging;microservice + MIT + True + Resource\ServiceBricks.Logging.Microservice.snk + readme.md + enable + False + git + https://github.com/holomodular/ServiceBricks-Logging + $(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage + True + + + + + True + \ + + + + + + + + true + ServiceBricks.Logging.dll + + + true + ServiceBricks.Logging.AzureDataTables.dll + + + true + ServiceBricks.Logging.Cosmos.dll + + + true + ServiceBricks.Logging.EntityFrameworkCore.dll + + + true + ServiceBricks.Logging.InMemory.dll + + + true + ServiceBricks.Logging.MongoDb.dll + + + true + ServiceBricks.Logging.Postgres.dll + + + true + ServiceBricks.Logging.Sqlite.dll + + + true + ServiceBricks.Logging.SqlServer.dll + + + + + + + + diff --git a/src/V1/ServiceBricks.Logging.MongoDb.Debug/ServiceBricks.Logging.MongoDb.Debug.csproj b/src/V1/ServiceBricks.Logging.MongoDb.Debug/ServiceBricks.Logging.MongoDb.Debug.csproj deleted file mode 100644 index d585f18..0000000 --- a/src/V1/ServiceBricks.Logging.MongoDb.Debug/ServiceBricks.Logging.MongoDb.Debug.csproj +++ /dev/null @@ -1,29 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.MongoDb.Debug/ServiceBricks.Logging.MongoDb.snk b/src/V1/ServiceBricks.Logging.MongoDb.Debug/ServiceBricks.Logging.MongoDb.snk deleted file mode 100644 index 4d1aae40c353d49f24129cecb6f7995b582fc1a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097L=t&^%!YM0kkVK6Wg*WybG{l5<0LRec zbuhhKc#Fc|A683JoqNporjWLK>IY+HZ0w4Quu}#y3U%^RE_iCs%>J9ntoPEvb%*7U zpUaxv?$sNs&7Tnbz&+B3T)P=;zPoNSukE&YSx=ukneq~+yoL#-3_$aD_ z)U;_ND7uXc+Mp+A@jQ$o8E#tv#wa0R-U(j4Fy{8bta=Bmpn#GcSxVmW7*06+(&Trp z$3^cTab$@Wur$Y`vjyq)_PL~^$Seig*zTc`&zjeCni!1&-&0weEWd6O`0A#cq>5HEnkS2Ck@R;=3D?vsIl!M{rD7@(?0LKN~<$~I8$79ItzVDX(W zLM2|>#gh2S1ZObqS%(f*4w$;(+t5##vcvLe;BIagOYwh`nLw8(M(7%tP4XMx4-!ml zztjQ8hJsWyamWTy3`NUW(xyYd6H=VAgM3aPZIV zpL4Mi<(_acWh))ucGD(1K*i*yBFaoxKQ|#BHstXPtCg4e5e9a{)wc5g^69EdQdp~5 z+6rnPOg@7FrSA#MPwW0ct4C&&Sj=qKo4Kf4n=CYyh@1Zt)C9wdi@7Jx6ri@SjOvM{ zp=i(dtNWFG>~J-FtZBC?a=CY&^Lq@o - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.MongoDb ServiceBricks.Logging.MongoDb @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -32,10 +32,10 @@ \ - - + + - + diff --git a/src/V1/ServiceBricks.Logging.Postgres.Debug/ServiceBricks.Logging.Postgres.Debug.csproj b/src/V1/ServiceBricks.Logging.Postgres.Debug/ServiceBricks.Logging.Postgres.Debug.csproj deleted file mode 100644 index eb614e4..0000000 --- a/src/V1/ServiceBricks.Logging.Postgres.Debug/ServiceBricks.Logging.Postgres.Debug.csproj +++ /dev/null @@ -1,29 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.Postgres.Debug/ServiceBricks.Logging.Postgres.snk b/src/V1/ServiceBricks.Logging.Postgres.Debug/ServiceBricks.Logging.Postgres.snk deleted file mode 100644 index 84571ef6526af97993068d95903d82e33677eccd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097%S_o=(asBC)`|0$2(@*Y$+&aHoIKF!F zWx5l#HxsH59Duc5Ak*Fa11_2tV(#D8$LzU}i(V0sr)W<6L2}A74nNdSl!cTO@W+tKB7WP)IDusezNDN8-;Q-1G&eGQ1FW+j zhW11LINqDi-Yy zO#;fOKY#btT6VX*nqcjjV2fx$y)5-8FFn;4Vqay0h7zBM-gq{#<0#tmfl(QU_nqUg zwu}bVzwT;H6c23e_S(7gEG*hiz089ZSFwUZ&MD=AeVn562a!nBCQ z$eF%@u{p|t`+}%#00kLm$n!O1*(Q@wu=Nl`cR3A9(3HxTvq1n`ZXi{A>8XuwJ_$f} i!f8gGlkJ;GkTG00*O?Nh2i3=425Z)I$Amz-v#SgLIwkf1 diff --git a/src/V1/ServiceBricks.Logging.Postgres/ServiceBricks.Logging.Postgres.csproj b/src/V1/ServiceBricks.Logging.Postgres/ServiceBricks.Logging.Postgres.csproj index f7dff20..6b6eb60 100644 --- a/src/V1/ServiceBricks.Logging.Postgres/ServiceBricks.Logging.Postgres.csproj +++ b/src/V1/ServiceBricks.Logging.Postgres/ServiceBricks.Logging.Postgres.csproj @@ -1,7 +1,7 @@ - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.Postgres ServiceBricks.Logging.Postgres @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -32,13 +32,11 @@ \ - - + - - + diff --git a/src/V1/ServiceBricks.Logging.SqlServer.Debug/ServiceBricks.Logging.SqlServer.Debug.csproj b/src/V1/ServiceBricks.Logging.SqlServer.Debug/ServiceBricks.Logging.SqlServer.Debug.csproj deleted file mode 100644 index f0569b3..0000000 --- a/src/V1/ServiceBricks.Logging.SqlServer.Debug/ServiceBricks.Logging.SqlServer.Debug.csproj +++ /dev/null @@ -1,29 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.SqlServer.Debug/ServiceBricks.Logging.SqlServer.snk b/src/V1/ServiceBricks.Logging.SqlServer.Debug/ServiceBricks.Logging.SqlServer.snk deleted file mode 100644 index a4ec2fc0d1aed00f88129fc961a8bae6f91c070d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa500966DTauC=NgPGSYs_;EDM*myvd?`Ps|rG zM(-4!%fo=|wJh#YrzZT1nlFjmmeR=mTiDFimPQDl%Cl?YXhCLbd?NA8^sek*z3wHX)8 z9lo0$vDwLeVn*)gW;a&2GWQBPGm|F5+e<~@Y|)Sd!N?$j{?8=OM}=I-wqzMvkdZrV57|{49>nB*{?bAm#bfy?B~BP{YQe_Bw!gtjVN?D<0On zxY0|cRN}xzeMr>I+6E0iu$OfE4G;)#Kyzf;{YKA_+HL}SF`W2|9T`$Vcn1Re4Y<>{ z_9(yknvbbY>NTnrBe}CzbJIV?5KBD}18_D*%_DzS)6`$Vq-l5XAc|QA - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.SqlServer ServiceBricks.Logging.SqlServer @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -32,13 +32,11 @@ \ - - - + + - - + diff --git a/src/V1/ServiceBricks.Logging.Sqlite.Debug/ServiceBricks.Logging.Sqlite.Debug.csproj b/src/V1/ServiceBricks.Logging.Sqlite.Debug/ServiceBricks.Logging.Sqlite.Debug.csproj deleted file mode 100644 index d30fd53..0000000 --- a/src/V1/ServiceBricks.Logging.Sqlite.Debug/ServiceBricks.Logging.Sqlite.Debug.csproj +++ /dev/null @@ -1,29 +0,0 @@ - - - - net6.0;net7.0;net8.0 - disable - enable - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/V1/ServiceBricks.Logging.Sqlite.Debug/ServiceBricks.Logging.Sqlite.snk b/src/V1/ServiceBricks.Logging.Sqlite.Debug/ServiceBricks.Logging.Sqlite.snk deleted file mode 100644 index 716ebf8b7221ccb7622936ca9ba036b42b1717f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097fME49@RE0~lrU#@%s^X*?X)}0gZ~WUI zUq=y&Dm!D23Uf6EB90^qIc28wp<(Tomv@nVs;OC>bpN}qQ)@Ww@uo+NuzikMSB?$? zxby(j&ew;Cz&c&X*WhO?kmH!A0Tbh^1W*rKAN-1dUCh?dgT~D)tVV;9V}e0HSlFlM z+BekGj7p5C1P{|gl$pD6dVOF|B*MQ95lO=`s!+l?+K}FY=*HiQGO<-JLG$K*x0Irg zjGw$4!7ljUPME~|yuQ+=w4Prko*KGCbZvrEV#&{j&$9<204L;Wj7z%uRx~+xTMorY zs#eEpye7_d{sSEMdLjK7LD%>X6p-5UCDT@0iW00lK{6*rG0nWGJ+c?yEmc1y1GA^L z6A^H+4reSNh=YDE?2mpA7%y=;Orj?xENt(v$UcvA8a%GgoCk}4imLZOiXFZ zbfTz773bWt;;Rc__f9}`m$%);_&B3DO2KU~(ea1aG|6Nh;{I7s0Y*iC%wDCl{Sy%t zoU#5r4(C;FyDU%B1!J`}>tE>%>a#d5g#n&#Ip#o3Y#Jn5TFB+$t=IZiHt6cn`e+# zxn? - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging.Sqlite ServiceBricks.Logging.Sqlite @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -32,13 +32,11 @@ \ - - - - - - + + + + diff --git a/src/V1/ServiceBricks.Logging/ServiceBricks.Logging.csproj b/src/V1/ServiceBricks.Logging/ServiceBricks.Logging.csproj index 3a7d6a0..2fa71ea 100644 --- a/src/V1/ServiceBricks.Logging/ServiceBricks.Logging.csproj +++ b/src/V1/ServiceBricks.Logging/ServiceBricks.Logging.csproj @@ -1,7 +1,7 @@ - 1.1.0-n + 1.1.0-o The open source microservices platform. Visit https://ServiceBricks.com to learn more. ServiceBricks.Logging ServiceBricks.Logging @@ -22,8 +22,8 @@ enable False git - https://github.com/holomodular/ServiceBricks - True + https://github.com/holomodular/ServiceBricks-Logging + False @@ -33,7 +33,7 @@ - + diff --git a/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet6/ServiceBricks.Logging.AzureDataTables.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet6/ServiceBricks.Logging.AzureDataTables.XunitNet6.csproj index 18a5a9d..252ac5c 100644 --- a/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet6/ServiceBricks.Logging.AzureDataTables.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet6/ServiceBricks.Logging.AzureDataTables.XunitNet6.csproj @@ -23,11 +23,6 @@ - - - - - @@ -45,4 +40,9 @@ runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet7/ServiceBricks.Logging.AzureDataTables.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet7/ServiceBricks.Logging.AzureDataTables.XunitNet7.csproj index 4400d33..c53a80b 100644 --- a/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet7/ServiceBricks.Logging.AzureDataTables.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet7/ServiceBricks.Logging.AzureDataTables.XunitNet7.csproj @@ -22,12 +22,6 @@ - - - - - - @@ -45,5 +39,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet8/ServiceBricks.Logging.AzureDataTables.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet8/ServiceBricks.Logging.AzureDataTables.XunitNet8.csproj index 17fef27..c65c7e0 100644 --- a/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet8/ServiceBricks.Logging.AzureDataTables.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.AzureDataTables.XunitNet8/ServiceBricks.Logging.AzureDataTables.XunitNet8.csproj @@ -22,12 +22,6 @@ - - - - - - @@ -45,5 +39,10 @@ runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet6/ServiceBricks.Logging.Cosmos.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet6/ServiceBricks.Logging.Cosmos.XunitNet6.csproj index 1fdc5e2..0f3094c 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet6/ServiceBricks.Logging.Cosmos.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet6/ServiceBricks.Logging.Cosmos.XunitNet6.csproj @@ -22,12 +22,6 @@ - - - - - - @@ -45,5 +39,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet7/ServiceBricks.Logging.Cosmos.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet7/ServiceBricks.Logging.Cosmos.XunitNet7.csproj index c46d1db..94f413e 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet7/ServiceBricks.Logging.Cosmos.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet7/ServiceBricks.Logging.Cosmos.XunitNet7.csproj @@ -24,7 +24,6 @@ - @@ -45,5 +44,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet8/ServiceBricks.Logging.Cosmos.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet8/ServiceBricks.Logging.Cosmos.XunitNet8.csproj index 3f95a8c..ded3221 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet8/ServiceBricks.Logging.Cosmos.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Cosmos.XunitNet8/ServiceBricks.Logging.Cosmos.XunitNet8.csproj @@ -22,13 +22,6 @@ - - - - - - - @@ -46,5 +39,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet6/ServiceBricks.Logging.InMemory.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet6/ServiceBricks.Logging.InMemory.XunitNet6.csproj index cc922d1..2461d8b 100644 --- a/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet6/ServiceBricks.Logging.InMemory.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet6/ServiceBricks.Logging.InMemory.XunitNet6.csproj @@ -25,12 +25,6 @@ - - - - - - @@ -48,5 +42,9 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet7/ServiceBricks.Logging.InMemory.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet7/ServiceBricks.Logging.InMemory.XunitNet7.csproj index f0289aa..ae213c1 100644 --- a/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet7/ServiceBricks.Logging.InMemory.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet7/ServiceBricks.Logging.InMemory.XunitNet7.csproj @@ -25,11 +25,6 @@ - - - - - @@ -47,5 +42,9 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet8/ServiceBricks.Logging.InMemory.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet8/ServiceBricks.Logging.InMemory.XunitNet8.csproj index 2341dda..a98611a 100644 --- a/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet8/ServiceBricks.Logging.InMemory.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.InMemory.XunitNet8/ServiceBricks.Logging.InMemory.XunitNet8.csproj @@ -24,14 +24,6 @@ Always - - - - - - - - @@ -49,5 +41,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet6/ServiceBricks.Logging.MongoDb.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet6/ServiceBricks.Logging.MongoDb.XunitNet6.csproj index 83f3555..42f09d5 100644 --- a/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet6/ServiceBricks.Logging.MongoDb.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet6/ServiceBricks.Logging.MongoDb.XunitNet6.csproj @@ -23,13 +23,6 @@ Always - - - - - - - @@ -47,5 +40,9 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet7/ServiceBricks.Logging.MongoDb.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet7/ServiceBricks.Logging.MongoDb.XunitNet7.csproj index 34a2551..37ce1ae 100644 --- a/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet7/ServiceBricks.Logging.MongoDb.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet7/ServiceBricks.Logging.MongoDb.XunitNet7.csproj @@ -23,12 +23,6 @@ Always - - - - - - @@ -46,5 +40,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet8/ServiceBricks.Logging.MongoDb.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet8/ServiceBricks.Logging.MongoDb.XunitNet8.csproj index 71ef557..7dab5f6 100644 --- a/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet8/ServiceBricks.Logging.MongoDb.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.MongoDb.XunitNet8/ServiceBricks.Logging.MongoDb.XunitNet8.csproj @@ -24,13 +24,6 @@ - - - - - - - @@ -48,5 +41,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet6/ServiceBricks.Logging.Postgres.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet6/ServiceBricks.Logging.Postgres.XunitNet6.csproj index 7da814e..a1e62e3 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet6/ServiceBricks.Logging.Postgres.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet6/ServiceBricks.Logging.Postgres.XunitNet6.csproj @@ -26,7 +26,6 @@ - @@ -47,5 +46,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet7/ServiceBricks.Logging.Postgres.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet7/ServiceBricks.Logging.Postgres.XunitNet7.csproj index 77b5fe0..c029a2a 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet7/ServiceBricks.Logging.Postgres.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet7/ServiceBricks.Logging.Postgres.XunitNet7.csproj @@ -24,11 +24,6 @@ - - - - - @@ -46,5 +41,9 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet8/ServiceBricks.Logging.Postgres.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet8/ServiceBricks.Logging.Postgres.XunitNet8.csproj index 618cb0a..e2683ee 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet8/ServiceBricks.Logging.Postgres.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Postgres.XunitNet8/ServiceBricks.Logging.Postgres.XunitNet8.csproj @@ -24,13 +24,6 @@ - - - - - - - @@ -48,5 +41,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet6/ServiceBricks.Logging.SqlServer.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet6/ServiceBricks.Logging.SqlServer.XunitNet6.csproj index 799b66b..ff046b9 100644 --- a/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet6/ServiceBricks.Logging.SqlServer.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet6/ServiceBricks.Logging.SqlServer.XunitNet6.csproj @@ -22,11 +22,6 @@ - - - - - @@ -44,5 +39,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet7/ServiceBricks.Logging.SqlServer.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet7/ServiceBricks.Logging.SqlServer.XunitNet7.csproj index ad43c5b..8d149af 100644 --- a/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet7/ServiceBricks.Logging.SqlServer.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet7/ServiceBricks.Logging.SqlServer.XunitNet7.csproj @@ -22,11 +22,6 @@ - - - - - @@ -44,5 +39,9 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet8/ServiceBricks.Logging.SqlServer.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet8/ServiceBricks.Logging.SqlServer.XunitNet8.csproj index 6568c41..d24f265 100644 --- a/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet8/ServiceBricks.Logging.SqlServer.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.SqlServer.XunitNet8/ServiceBricks.Logging.SqlServer.XunitNet8.csproj @@ -24,7 +24,6 @@ - @@ -46,5 +45,10 @@ runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet6/ServiceBricks.Logging.Sqlite.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet6/ServiceBricks.Logging.Sqlite.XunitNet6.csproj index 0574533..40b6a38 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet6/ServiceBricks.Logging.Sqlite.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet6/ServiceBricks.Logging.Sqlite.XunitNet6.csproj @@ -24,7 +24,6 @@ - @@ -45,5 +44,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet7/ServiceBricks.Logging.Sqlite.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet7/ServiceBricks.Logging.Sqlite.XunitNet7.csproj index cab96f2..8b6e7b4 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet7/ServiceBricks.Logging.Sqlite.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet7/ServiceBricks.Logging.Sqlite.XunitNet7.csproj @@ -22,11 +22,6 @@ - - - - - @@ -44,5 +39,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet8/ServiceBricks.Logging.Sqlite.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet8/ServiceBricks.Logging.Sqlite.XunitNet8.csproj index 0e586d1..998b308 100644 --- a/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet8/ServiceBricks.Logging.Sqlite.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.Sqlite.XunitNet8/ServiceBricks.Logging.Sqlite.XunitNet8.csproj @@ -22,13 +22,6 @@ - - - - - - - @@ -46,5 +39,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.XunitNet6/ServiceBricks.Logging.XunitNet6.csproj b/src/V1/Tests/ServiceBricks.Logging.XunitNet6/ServiceBricks.Logging.XunitNet6.csproj index ac856b7..8b27b74 100644 --- a/src/V1/Tests/ServiceBricks.Logging.XunitNet6/ServiceBricks.Logging.XunitNet6.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.XunitNet6/ServiceBricks.Logging.XunitNet6.csproj @@ -17,13 +17,9 @@ - + - - - - @@ -41,5 +37,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.XunitNet7/ServiceBricks.Logging.XunitNet7.csproj b/src/V1/Tests/ServiceBricks.Logging.XunitNet7/ServiceBricks.Logging.XunitNet7.csproj index a3ac569..f270205 100644 --- a/src/V1/Tests/ServiceBricks.Logging.XunitNet7/ServiceBricks.Logging.XunitNet7.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.XunitNet7/ServiceBricks.Logging.XunitNet7.csproj @@ -17,11 +17,7 @@ - - - - - + @@ -41,5 +37,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + diff --git a/src/V1/Tests/ServiceBricks.Logging.XunitNet8/ServiceBricks.Logging.XunitNet8.csproj b/src/V1/Tests/ServiceBricks.Logging.XunitNet8/ServiceBricks.Logging.XunitNet8.csproj index 8f921c3..7f7c6c5 100644 --- a/src/V1/Tests/ServiceBricks.Logging.XunitNet8/ServiceBricks.Logging.XunitNet8.csproj +++ b/src/V1/Tests/ServiceBricks.Logging.XunitNet8/ServiceBricks.Logging.XunitNet8.csproj @@ -17,11 +17,7 @@ - - - - - + @@ -41,5 +37,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + + + diff --git a/src/V1/Tests/WebAppNet6/WebAppNet6.csproj b/src/V1/Tests/WebAppNet6/WebAppNet6.csproj index 68ac7ee..bb2b2a2 100644 --- a/src/V1/Tests/WebAppNet6/WebAppNet6.csproj +++ b/src/V1/Tests/WebAppNet6/WebAppNet6.csproj @@ -16,7 +16,7 @@ - + @@ -34,14 +34,15 @@ - - - - - - - - - + + + + + + + + + + diff --git a/src/V1/Tests/WebAppNet7/WebAppNet7.csproj b/src/V1/Tests/WebAppNet7/WebAppNet7.csproj index 0b59c8e..e279de0 100644 --- a/src/V1/Tests/WebAppNet7/WebAppNet7.csproj +++ b/src/V1/Tests/WebAppNet7/WebAppNet7.csproj @@ -1,4 +1,4 @@ - + net7.0 @@ -16,7 +16,7 @@ - + @@ -34,14 +34,15 @@ - - - - - - - - - + + + + + + + + + + diff --git a/src/V1/Tests/WebAppNet8/WebAppNet8.csproj b/src/V1/Tests/WebAppNet8/WebAppNet8.csproj index 48b54a8..130be4b 100644 --- a/src/V1/Tests/WebAppNet8/WebAppNet8.csproj +++ b/src/V1/Tests/WebAppNet8/WebAppNet8.csproj @@ -1,4 +1,4 @@ - + net8.0 @@ -16,7 +16,7 @@ - + @@ -34,14 +34,14 @@ - - - - - - - - - - + + + + + + + + + +