Skip to content

Commit

Permalink
add solution file
Browse files Browse the repository at this point in the history
  • Loading branch information
duykasama committed Jan 7, 2024
1 parent 238aebb commit fb2712c
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Publish docker images
on:
push:
branches:
- "deploy"
- deploy
pull_request:
branches:
- "deploy"
- deploy

jobs:
publish:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -396,3 +396,5 @@ FodyWeavers.xsd

# JetBrains Rider
*.sln.iml
global.json
.idea/
2 changes: 1 addition & 1 deletion Domus.Api/Domus.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions Domus.Api/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:17239",
"sslPort": 44332
"applicationUrl": "http://localhost:34186",
"sslPort": 44301
}
},
"profiles": {
Expand All @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion Domus.DAL/Domus.DAL.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Domus.Domain/Domus.Domain.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Domus.Service/Domus.Service.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
40 changes: 40 additions & 0 deletions Domus.sln
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit fb2712c

Please sign in to comment.