Skip to content

Commit 89c51ab

Browse files
Introduction to Azure Logic Apps
1 parent 12269c6 commit 89c51ab

32 files changed

+320
-1
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
</PropertyGroup>
8+
9+
</Project>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
var builder = WebApplication.CreateBuilder(args);
2+
var app = builder.Build();
3+
4+
app.MapGet("/", () => "Hello World!");
5+
6+
app.Run();
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "http://json.schemastore.org/launchsettings.json",
3+
"iisSettings": {
4+
"windowsAuthentication": false,
5+
"anonymousAuthentication": true,
6+
"iisExpress": {
7+
"applicationUrl": "http://localhost:16183",
8+
"sslPort": 44347
9+
}
10+
},
11+
"profiles": {
12+
"http": {
13+
"commandName": "Project",
14+
"dotnetRunMessages": true,
15+
"launchBrowser": true,
16+
"applicationUrl": "http://localhost:5226",
17+
"environmentVariables": {
18+
"ASPNETCORE_ENVIRONMENT": "Development"
19+
}
20+
},
21+
"https": {
22+
"commandName": "Project",
23+
"dotnetRunMessages": true,
24+
"launchBrowser": true,
25+
"applicationUrl": "https://localhost:7285;http://localhost:5226",
26+
"environmentVariables": {
27+
"ASPNETCORE_ENVIRONMENT": "Development"
28+
}
29+
},
30+
"IIS Express": {
31+
"commandName": "IISExpress",
32+
"launchBrowser": true,
33+
"environmentVariables": {
34+
"ASPNETCORE_ENVIRONMENT": "Development"
35+
}
36+
}
37+
}
38+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft.AspNetCore": "Warning"
6+
}
7+
}
8+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Information",
5+
"Microsoft.AspNetCore": "Warning"
6+
}
7+
},
8+
"AllowedHosts": "*"
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\PizzaStore.csproj": {}
5+
},
6+
"projects": {
7+
"C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\PizzaStore.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\PizzaStore.csproj",
11+
"projectName": "PizzaStore",
12+
"projectPath": "C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\PizzaStore.csproj",
13+
"packagesPath": "C:\\Users\\ShubhamVerma\\.nuget\\packages\\",
14+
"outputPath": "C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\obj\\",
15+
"projectStyle": "PackageReference",
16+
"fallbackFolders": [
17+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18+
],
19+
"configFilePaths": [
20+
"C:\\Users\\ShubhamVerma\\AppData\\Roaming\\NuGet\\NuGet.Config",
21+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
22+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
23+
],
24+
"originalTargetFrameworks": [
25+
"net8.0"
26+
],
27+
"sources": {
28+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
29+
"C:\\Program Files\\dotnet\\library-packs": {},
30+
"https://api.nuget.org/v3/index.json": {}
31+
},
32+
"frameworks": {
33+
"net8.0": {
34+
"targetAlias": "net8.0",
35+
"projectReferences": {}
36+
}
37+
},
38+
"warningProperties": {
39+
"warnAsError": [
40+
"NU1605"
41+
]
42+
},
43+
"restoreAuditProperties": {
44+
"enableAudit": "true",
45+
"auditLevel": "low",
46+
"auditMode": "direct"
47+
}
48+
},
49+
"frameworks": {
50+
"net8.0": {
51+
"targetAlias": "net8.0",
52+
"imports": [
53+
"net461",
54+
"net462",
55+
"net47",
56+
"net471",
57+
"net472",
58+
"net48",
59+
"net481"
60+
],
61+
"assetTargetFallback": true,
62+
"warn": true,
63+
"frameworkReferences": {
64+
"Microsoft.AspNetCore.App": {
65+
"privateAssets": "none"
66+
},
67+
"Microsoft.NETCore.App": {
68+
"privateAssets": "all"
69+
}
70+
},
71+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
72+
}
73+
}
74+
}
75+
}
76+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ShubhamVerma\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="C:\Users\ShubhamVerma\.nuget\packages\" />
14+
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
15+
</ItemGroup>
16+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{
2+
"version": 3,
3+
"targets": {
4+
"net8.0": {}
5+
},
6+
"libraries": {},
7+
"projectFileDependencyGroups": {
8+
"net8.0": []
9+
},
10+
"packageFolders": {
11+
"C:\\Users\\ShubhamVerma\\.nuget\\packages\\": {},
12+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
13+
},
14+
"project": {
15+
"version": "1.0.0",
16+
"restore": {
17+
"projectUniqueName": "C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\PizzaStore.csproj",
18+
"projectName": "PizzaStore",
19+
"projectPath": "C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\PizzaStore.csproj",
20+
"packagesPath": "C:\\Users\\ShubhamVerma\\.nuget\\packages\\",
21+
"outputPath": "C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\obj\\",
22+
"projectStyle": "PackageReference",
23+
"fallbackFolders": [
24+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
25+
],
26+
"configFilePaths": [
27+
"C:\\Users\\ShubhamVerma\\AppData\\Roaming\\NuGet\\NuGet.Config",
28+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
29+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
30+
],
31+
"originalTargetFrameworks": [
32+
"net8.0"
33+
],
34+
"sources": {
35+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
36+
"C:\\Program Files\\dotnet\\library-packs": {},
37+
"https://api.nuget.org/v3/index.json": {}
38+
},
39+
"frameworks": {
40+
"net8.0": {
41+
"targetAlias": "net8.0",
42+
"projectReferences": {}
43+
}
44+
},
45+
"warningProperties": {
46+
"warnAsError": [
47+
"NU1605"
48+
]
49+
},
50+
"restoreAuditProperties": {
51+
"enableAudit": "true",
52+
"auditLevel": "low",
53+
"auditMode": "direct"
54+
}
55+
},
56+
"frameworks": {
57+
"net8.0": {
58+
"targetAlias": "net8.0",
59+
"imports": [
60+
"net461",
61+
"net462",
62+
"net47",
63+
"net471",
64+
"net472",
65+
"net48",
66+
"net481"
67+
],
68+
"assetTargetFallback": true,
69+
"warn": true,
70+
"frameworkReferences": {
71+
"Microsoft.AspNetCore.App": {
72+
"privateAssets": "none"
73+
},
74+
"Microsoft.NETCore.App": {
75+
"privateAssets": "all"
76+
}
77+
},
78+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200/PortableRuntimeIdentifierGraph.json"
79+
}
80+
}
81+
}
82+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"version": 2,
3+
"dgSpecHash": "DqBnMasLvIagIBFBp8dS9jjh7rfSAyxE8yJk/y5Pcq642RVQvLHajGFk8ifEehKH2lU4fqENLg5PD8BKsfmbTQ==",
4+
"success": true,
5+
"projectFilePath": "C:\\Github\\AzureModule\\Build a web API with minimal API, ASP.NET Core, and .NET\\PizzaStore\\PizzaStore.csproj",
6+
"expectedPackageFiles": [],
7+
"logs": []
8+
}

0 commit comments

Comments
 (0)