Skip to content

Commit

Permalink
fix: saving projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Igo Ventura committed Aug 7, 2021
1 parent b150942 commit 0d76a95
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DemoAPI.Application/DemoAPI.Application.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
Expand Down
9 changes: 9 additions & 0 deletions DemoAPI.Infrastructure.IoC/DemoAPI.Infrastructure.IoC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,13 @@
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DemoAPI.Application\DemoAPI.Application.csproj" />
<ProjectReference Include="..\DemoAPI.Infrastructure.Data\DemoAPI.Infrastructure.Data.csproj" />
</ItemGroup>

</Project>
8 changes: 4 additions & 4 deletions DemoAPI.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{4B0ADCAA-B84
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{9285F6E1-9AEE-48FF-B78A-2D4F04AC50B4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoAPI.Domain", "DemoAPI.Domain\DemoAPI.Domain.csproj", "{C0C0BB66-54C9-4069-B302-8B600CEA10A2}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DemoAPI.Domain", "DemoAPI.Domain\DemoAPI.Domain.csproj", "{C0C0BB66-54C9-4069-B302-8B600CEA10A2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoAPI.Infrastructure.Data", "DemoAPI.Infrastructure.Data\DemoAPI.Infrastructure.Data.csproj", "{78A8833C-370F-41AA-AC7A-5A58D0774659}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DemoAPI.Infrastructure.Data", "DemoAPI.Infrastructure.Data\DemoAPI.Infrastructure.Data.csproj", "{78A8833C-370F-41AA-AC7A-5A58D0774659}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoAPI.Infrastructure.IoC", "DemoAPI.Infrastructure.IoC\DemoAPI.Infrastructure.IoC.csproj", "{7F33EB6B-9FCC-48C2-BC47-9C431F53F30E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DemoAPI.Infrastructure.IoC", "DemoAPI.Infrastructure.IoC\DemoAPI.Infrastructure.IoC.csproj", "{7F33EB6B-9FCC-48C2-BC47-9C431F53F30E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoAPI.Application", "DemoAPI.Application\DemoAPI.Application.csproj", "{1E76D830-0B79-4EF2-80F3-30E33CC86CEA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DemoAPI.Application", "DemoAPI.Application\DemoAPI.Application.csproj", "{1E76D830-0B79-4EF2-80F3-30E33CC86CEA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
4 changes: 4 additions & 0 deletions DemoAPI/DemoAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@
<ProjectReference Include="..\DemoAPI.Infrastructure.IoC\DemoAPI.Infrastructure.IoC.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Controllers\" />
</ItemGroup>

</Project>

0 comments on commit 0d76a95

Please sign in to comment.