Skip to content

Commit f1b31fc

Browse files
authored
Jmprieur/add ciam dev apps (address PR feedack) (#2411)
* Adressing the PR comments
1 parent 43b2369 commit f1b31fc

File tree

5 files changed

+40
-2
lines changed

5 files changed

+40
-2
lines changed

tests/DevApps/ciam/CiamTest.sln

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "myWebApi", "myWebApi\myWebApi.csproj", "{3F20A960-F3AE-4069-9CAC-7F3BD804FA1C}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "myWebApp", "myWebApp\myWebApp.csproj", "{E329D903-AFF3-46AA-8123-9E538BB94A3B}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(SolutionProperties) = preSolution
16+
HideSolutionNode = FALSE
17+
EndGlobalSection
18+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19+
{3F20A960-F3AE-4069-9CAC-7F3BD804FA1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{3F20A960-F3AE-4069-9CAC-7F3BD804FA1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{3F20A960-F3AE-4069-9CAC-7F3BD804FA1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{3F20A960-F3AE-4069-9CAC-7F3BD804FA1C}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{E329D903-AFF3-46AA-8123-9E538BB94A3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{E329D903-AFF3-46AA-8123-9E538BB94A3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{E329D903-AFF3-46AA-8123-9E538BB94A3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{E329D903-AFF3-46AA-8123-9E538BB94A3B}.Release|Any CPU.Build.0 = Release|Any CPU
27+
EndGlobalSection
28+
EndGlobal

tests/DevApps/ciam/myWebApi/Controllers/WeatherForecastController.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
using Microsoft.AspNetCore.Authorization;
25
using Microsoft.AspNetCore.Mvc;
36
using Microsoft.Identity.Web.Resource;

tests/DevApps/ciam/myWebApi/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using Microsoft.AspNetCore.Authentication;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
24
using Microsoft.AspNetCore.Authentication.JwtBearer;
35
using Microsoft.Identity.Web;
46

tests/DevApps/ciam/myWebApi/WeatherForecast.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
namespace myWebApi;
25

36
public class WeatherForecast

tests/DevApps/ciam/myWebApp/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using Microsoft.AspNetCore.Authentication;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
24
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
35
using Microsoft.AspNetCore.Authorization;
46
using Microsoft.AspNetCore.Mvc.Authorization;

0 commit comments

Comments
 (0)