Skip to content

Commit 075bfc8

Browse files
committed
Moving Web app calling Web API to its own sub folder
1 parent 686751e commit 075bfc8

File tree

84 files changed

+10
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+10
-5
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,8 @@
124124
/4-WebApp-your-API/4-2-B2C/.vs
125125
/4-WebApp-your-API/4-2-B2C/Client/obj
126126
/4-WebApp-your-API/4-2-B2C/TodoListService/obj
127+
/4-WebApp-your-API/4-1-MyOrg/.vs
128+
/4-WebApp-your-API/4-1-MyOrg/Client/bin
129+
/4-WebApp-your-API/4-1-MyOrg/Client/obj
130+
/4-WebApp-your-API/4-1-MyOrg/TodoListService/bin
131+
/4-WebApp-your-API/4-1-MyOrg/TodoListService/obj

4-WebApp-your-API/Client/TodoListClient.csproj renamed to 4-WebApp-your-API/4-1-MyOrg/Client/TodoListClient.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
</ItemGroup>
2828

2929
<ItemGroup>
30-
<ProjectReference Include="..\..\Microsoft.Identity.Web.UI\Microsoft.Identity.Web.UI.csproj" />
31-
<ProjectReference Include="..\..\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
30+
<ProjectReference Include="..\..\..\Microsoft.Identity.Web.UI\Microsoft.Identity.Web.UI.csproj" />
31+
<ProjectReference Include="..\..\..\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
3232
</ItemGroup>
3333

3434
</Project>

4-WebApp-your-API/TodoListService/TodoListService.csproj renamed to 4-WebApp-your-API/4-1-MyOrg/TodoListService/TodoListService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<ProjectReference Include="..\..\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
10+
<ProjectReference Include="..\..\..\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
1111
</ItemGroup>
1212

1313
</Project>

4-WebApp-your-API/WebApp-OpenIDConnect-DotNet.sln renamed to 4-WebApp-your-API/4-1-MyOrg/WebApp-Calls-WebAPI-MyOrg.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TodoListService", "TodoList
1313
EndProject
1414
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TodoListClient", "Client\TodoListClient.csproj", "{79AF134C-0F4A-43F8-8C47-75039ED87CE7}"
1515
EndProject
16-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Identity.Web", "..\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj", "{2AED6B80-C6DF-4AA3-98F0-77338CC1449A}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Identity.Web", "..\..\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj", "{2AED6B80-C6DF-4AA3-98F0-77338CC1449A}"
1717
EndProject
18-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Identity.Web.UI", "..\Microsoft.Identity.Web.UI\Microsoft.Identity.Web.UI.csproj", "{A2B0D2D4-6799-4B6F-AC51-F0F0A6CA1E89}"
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Identity.Web.UI", "..\..\Microsoft.Identity.Web.UI\Microsoft.Identity.Web.UI.csproj", "{A2B0D2D4-6799-4B6F-AC51-F0F0A6CA1E89}"
1919
EndProject
2020
Global
2121
GlobalSection(SolutionConfigurationPlatforms) = preSolution

0 commit comments

Comments
 (0)