From fb2712cdf0e2d7cf499b8ddb8f67e83305ab0f4c Mon Sep 17 00:00:00 2001 From: duykasama Date: Sun, 7 Jan 2024 20:18:51 +0700 Subject: [PATCH] add solution file --- .github/workflows/publish-images.yml | 4 +-- .gitignore | 2 ++ Domus.Api/Domus.Api.csproj | 2 +- Domus.Api/Properties/launchSettings.json | 6 ++-- Domus.DAL/Domus.DAL.csproj | 2 +- Domus.Domain/Domus.Domain.csproj | 2 +- Domus.Service/Domus.Service.csproj | 2 +- Domus.sln | 40 ++++++++++++++++++++++++ 8 files changed, 51 insertions(+), 9 deletions(-) create mode 100644 Domus.sln diff --git a/.github/workflows/publish-images.yml b/.github/workflows/publish-images.yml index e55ad5b..a4dc9ae 100644 --- a/.github/workflows/publish-images.yml +++ b/.github/workflows/publish-images.yml @@ -3,10 +3,10 @@ name: Publish docker images on: push: branches: - - "deploy" + - deploy pull_request: branches: - - "deploy" + - deploy jobs: publish: diff --git a/.gitignore b/.gitignore index 8a30d25..b4f6d0d 100644 --- a/.gitignore +++ b/.gitignore @@ -396,3 +396,5 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml +global.json +.idea/ diff --git a/Domus.Api/Domus.Api.csproj b/Domus.Api/Domus.Api.csproj index 2c33b1c..faaf062 100644 --- a/Domus.Api/Domus.Api.csproj +++ b/Domus.Api/Domus.Api.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 enable enable diff --git a/Domus.Api/Properties/launchSettings.json b/Domus.Api/Properties/launchSettings.json index 0b5f33f..05afc48 100644 --- a/Domus.Api/Properties/launchSettings.json +++ b/Domus.Api/Properties/launchSettings.json @@ -4,8 +4,8 @@ "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { - "applicationUrl": "http://localhost:17239", - "sslPort": 44332 + "applicationUrl": "http://localhost:34186", + "sslPort": 44301 } }, "profiles": { @@ -14,7 +14,7 @@ "dotnetRunMessages": true, "launchBrowser": true, "launchUrl": "swagger", - "applicationUrl": "https://localhost:7142;http://localhost:5237", + "applicationUrl": "https://localhost:7037;http://localhost:5129", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/Domus.DAL/Domus.DAL.csproj b/Domus.DAL/Domus.DAL.csproj index 132c02c..cfadb03 100644 --- a/Domus.DAL/Domus.DAL.csproj +++ b/Domus.DAL/Domus.DAL.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 enable enable diff --git a/Domus.Domain/Domus.Domain.csproj b/Domus.Domain/Domus.Domain.csproj index 132c02c..cfadb03 100644 --- a/Domus.Domain/Domus.Domain.csproj +++ b/Domus.Domain/Domus.Domain.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 enable enable diff --git a/Domus.Service/Domus.Service.csproj b/Domus.Service/Domus.Service.csproj index 132c02c..cfadb03 100644 --- a/Domus.Service/Domus.Service.csproj +++ b/Domus.Service/Domus.Service.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 enable enable diff --git a/Domus.sln b/Domus.sln new file mode 100644 index 0000000..4144741 --- /dev/null +++ b/Domus.sln @@ -0,0 +1,40 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30114.105 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domus.Api", "Domus.Api\Domus.Api.csproj", "{5A7FA213-0A19-4EB0-AE70-8DC4C8BC604C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domus.Domain", "Domus.Domain\Domus.Domain.csproj", "{5C2E3D0D-500B-472B-B30E-6E57AB28A875}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domus.DAL", "Domus.DAL\Domus.DAL.csproj", "{B2F00309-50A4-48A4-B476-5A4370327D7C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domus.Service", "Domus.Service\Domus.Service.csproj", "{784DF4EE-FB6A-42C5-8479-7241761F3E85}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5A7FA213-0A19-4EB0-AE70-8DC4C8BC604C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5A7FA213-0A19-4EB0-AE70-8DC4C8BC604C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5A7FA213-0A19-4EB0-AE70-8DC4C8BC604C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5A7FA213-0A19-4EB0-AE70-8DC4C8BC604C}.Release|Any CPU.Build.0 = Release|Any CPU + {5C2E3D0D-500B-472B-B30E-6E57AB28A875}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5C2E3D0D-500B-472B-B30E-6E57AB28A875}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5C2E3D0D-500B-472B-B30E-6E57AB28A875}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5C2E3D0D-500B-472B-B30E-6E57AB28A875}.Release|Any CPU.Build.0 = Release|Any CPU + {B2F00309-50A4-48A4-B476-5A4370327D7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B2F00309-50A4-48A4-B476-5A4370327D7C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B2F00309-50A4-48A4-B476-5A4370327D7C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B2F00309-50A4-48A4-B476-5A4370327D7C}.Release|Any CPU.Build.0 = Release|Any CPU + {784DF4EE-FB6A-42C5-8479-7241761F3E85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {784DF4EE-FB6A-42C5-8479-7241761F3E85}.Debug|Any CPU.Build.0 = Debug|Any CPU + {784DF4EE-FB6A-42C5-8479-7241761F3E85}.Release|Any CPU.ActiveCfg = Release|Any CPU + {784DF4EE-FB6A-42C5-8479-7241761F3E85}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal