Updated path for infrastructure
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing

This commit is contained in:
Kasper Juul Hermansen 2021-11-16 22:13:10 +01:00
parent d785150426
commit 9af64e859a
Signed by: kjuulh
GPG Key ID: DCD9397082D97069
5 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@ COPY *.sln .
COPY ["src/Todo.Api/Todo.Api.csproj", "src/Todo.Api/"] COPY ["src/Todo.Api/Todo.Api.csproj", "src/Todo.Api/"]
COPY ["src/Todo.Core/Todo.Core.csproj", "src/Todo.Core/"] COPY ["src/Todo.Core/Todo.Core.csproj", "src/Todo.Core/"]
COPY ["src/Todo.Persistence/Todo.Persistence.csproj", "src/Todo.Persistence/"] COPY ["src/Todo.Persistence/Todo.Persistence.csproj", "src/Todo.Persistence/"]
COPY ["src/Todo.Infrastructure/Todo.Infrastructure.csproj", "src/Todo.Infrastructure/"]
RUN dotnet restore . RUN dotnet restore .

View File

@ -6,7 +6,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Todo.Persistence", "src\Tod
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Todo.Core", "src\Todo.Core\Todo.Core.csproj", "{F134CAB6-15A5-45CB-8782-B61AB67B5C9C}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Todo.Core", "src\Todo.Core\Todo.Core.csproj", "{F134CAB6-15A5-45CB-8782-B61AB67B5C9C}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Todo.Infrastructure", "Todo.Infrastructure\Todo.Infrastructure.csproj", "{F6EE7E8D-6248-421E-9FB0-D4342908B319}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Todo.Infrastructure", "src\Todo.Infrastructure\Todo.Infrastructure.csproj", "{F6EE7E8D-6248-421E-9FB0-D4342908B319}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -10,7 +10,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\Todo.Infrastructure\Todo.Infrastructure.csproj" /> <ProjectReference Include="..\Todo.Infrastructure\Todo.Infrastructure.csproj" />
<ProjectReference Include="..\Todo.Core\Todo.Core.csproj" /> <ProjectReference Include="..\Todo.Core\Todo.Core.csproj" />
<ProjectReference Include="..\Todo.Persistence\Todo.Persistence.csproj" /> <ProjectReference Include="..\Todo.Persistence\Todo.Persistence.csproj" />
</ItemGroup> </ItemGroup>