Skip to content

Commit f72aef7

Browse files
committed
initial commit
1 parent 3596d4f commit f72aef7

Some content is hidden

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

42 files changed

+445
-1
lines changed

.devcontainer/devcontainer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@
5050
"GitHub.copilot-chat",
5151
"ms-vscode.azure-account",
5252
"hashicorp.terraform",
53-
"golang.Go"
53+
"golang.Go",
54+
"ms-azuretools.vscode-docker",
55+
"formulahendry.docker-explorer",
56+
"ms-dotnettools.csdevkit"
5457
]
5558
}
5659
}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,7 @@ avm.tflint_module.merged.hcl
4949
*.md.tmp
5050
# MacOS
5151
.DS_Store
52+
53+
# C#
54+
[Bb]in/
55+
[Oo]bj/

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dotnet.defaultSolution": "AZ2003App.sln"
3+
}

AZ2003App.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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}") = "AZ2003App", "AZ2003App\AZ2003App.csproj", "{6DC78AB4-928D-4F06-822D-68D0B1944967}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(SolutionProperties) = preSolution
14+
HideSolutionNode = FALSE
15+
EndGlobalSection
16+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
17+
{6DC78AB4-928D-4F06-822D-68D0B1944967}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{6DC78AB4-928D-4F06-822D-68D0B1944967}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{6DC78AB4-928D-4F06-822D-68D0B1944967}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{6DC78AB4-928D-4F06-822D-68D0B1944967}.Release|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
EndGlobal

AZ2003App/AZ2003App.csproj

+9
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>

AZ2003App/Program.cs

+6
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();
+38
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:26595",
8+
"sslPort": 44300
9+
}
10+
},
11+
"profiles": {
12+
"http": {
13+
"commandName": "Project",
14+
"dotnetRunMessages": true,
15+
"launchBrowser": true,
16+
"applicationUrl": "http://localhost:5128",
17+
"environmentVariables": {
18+
"ASPNETCORE_ENVIRONMENT": "Development"
19+
}
20+
},
21+
"https": {
22+
"commandName": "Project",
23+
"dotnetRunMessages": true,
24+
"launchBrowser": true,
25+
"applicationUrl": "https://localhost:7172;http://localhost:5128",
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+
}
+8
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+
}

AZ2003App/appsettings.json

+9
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+
}

AZ2003App/bin/Debug/net8.0/AZ2003App

70.8 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v8.0",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v8.0": {
9+
"AZ2003App/1.0.0": {
10+
"runtime": {
11+
"AZ2003App.dll": {}
12+
}
13+
}
14+
}
15+
},
16+
"libraries": {
17+
"AZ2003App/1.0.0": {
18+
"type": "project",
19+
"serviceable": false,
20+
"sha512": ""
21+
}
22+
}
23+
}
5 KB
Binary file not shown.
20.1 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net8.0",
4+
"frameworks": [
5+
{
6+
"name": "Microsoft.NETCore.App",
7+
"version": "8.0.0"
8+
},
9+
{
10+
"name": "Microsoft.AspNetCore.App",
11+
"version": "8.0.0"
12+
}
13+
],
14+
"configProperties": {
15+
"System.GC.Server": true,
16+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
17+
}
18+
}
19+
}
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+
}
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,69 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"/workspaces/Codespace_IaC_Coding/AZ2003App/AZ2003App.csproj": {}
5+
},
6+
"projects": {
7+
"/workspaces/Codespace_IaC_Coding/AZ2003App/AZ2003App.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "/workspaces/Codespace_IaC_Coding/AZ2003App/AZ2003App.csproj",
11+
"projectName": "AZ2003App",
12+
"projectPath": "/workspaces/Codespace_IaC_Coding/AZ2003App/AZ2003App.csproj",
13+
"packagesPath": "/home/codespace/.nuget/packages/",
14+
"outputPath": "/workspaces/Codespace_IaC_Coding/AZ2003App/obj/",
15+
"projectStyle": "PackageReference",
16+
"configFilePaths": [
17+
"/home/codespace/.nuget/NuGet/NuGet.Config"
18+
],
19+
"originalTargetFrameworks": [
20+
"net8.0"
21+
],
22+
"sources": {
23+
"https://api.nuget.org/v3/index.json": {}
24+
},
25+
"frameworks": {
26+
"net8.0": {
27+
"targetAlias": "net8.0",
28+
"projectReferences": {}
29+
}
30+
},
31+
"warningProperties": {
32+
"warnAsError": [
33+
"NU1605"
34+
]
35+
},
36+
"restoreAuditProperties": {
37+
"enableAudit": "true",
38+
"auditLevel": "low",
39+
"auditMode": "direct"
40+
}
41+
},
42+
"frameworks": {
43+
"net8.0": {
44+
"targetAlias": "net8.0",
45+
"imports": [
46+
"net461",
47+
"net462",
48+
"net47",
49+
"net471",
50+
"net472",
51+
"net48",
52+
"net481"
53+
],
54+
"assetTargetFallback": true,
55+
"warn": true,
56+
"frameworkReferences": {
57+
"Microsoft.AspNetCore.App": {
58+
"privateAssets": "none"
59+
},
60+
"Microsoft.NETCore.App": {
61+
"privateAssets": "all"
62+
}
63+
},
64+
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.401/PortableRuntimeIdentifierGraph.json"
65+
}
66+
}
67+
}
68+
}
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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)' == '' ">/home/codespace/.nuget/packages/</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/codespace/.nuget/packages/</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.0</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="/home/codespace/.nuget/packages/" />
14+
</ItemGroup>
15+
</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" />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// <autogenerated />
2+
using System;
3+
using System.Reflection;
4+
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
using System;
11+
using System.Reflection;
12+
13+
[assembly: System.Reflection.AssemblyCompanyAttribute("AZ2003App")]
14+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
15+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3596d4f798f79165c92f37d84645539ff5704acf")]
17+
[assembly: System.Reflection.AssemblyProductAttribute("AZ2003App")]
18+
[assembly: System.Reflection.AssemblyTitleAttribute("AZ2003App")]
19+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
20+
21+
// Generated by the MSBuild WriteCodeFragment class.
22+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6cb431f62e870eb0362abda273d8ff629bec13922d4596f659cb5df1b8ce74fb
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
is_global = true
2+
build_property.TargetFramework = net8.0
3+
build_property.TargetPlatformMinVersion =
4+
build_property.UsingMicrosoftNETSdkWeb = true
5+
build_property.ProjectTypeGuids =
6+
build_property.InvariantGlobalization =
7+
build_property.PlatformNeutralAssembly =
8+
build_property.EnforceExtendedAnalyzerRules =
9+
build_property._SupportedPlatformList = Linux,macOS,Windows
10+
build_property.RootNamespace = AZ2003App
11+
build_property.RootNamespace = AZ2003App
12+
build_property.ProjectDir = /workspaces/Codespace_IaC_Coding/AZ2003App/
13+
build_property.EnableComHosting =
14+
build_property.EnableGeneratedComInterfaceComImportInterop =
15+
build_property.RazorLangVersion = 8.0
16+
build_property.SupportLocalizedComponentNames =
17+
build_property.GenerateRazorMetadataSourceChecksumAttributes =
18+
build_property.MSBuildProjectDirectory = /workspaces/Codespace_IaC_Coding/AZ2003App
19+
build_property._RazorSourceGeneratorDebug =
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// <auto-generated/>
2+
global using global::Microsoft.AspNetCore.Builder;
3+
global using global::Microsoft.AspNetCore.Hosting;
4+
global using global::Microsoft.AspNetCore.Http;
5+
global using global::Microsoft.AspNetCore.Routing;
6+
global using global::Microsoft.Extensions.Configuration;
7+
global using global::Microsoft.Extensions.DependencyInjection;
8+
global using global::Microsoft.Extensions.Hosting;
9+
global using global::Microsoft.Extensions.Logging;
10+
global using global::System;
11+
global using global::System.Collections.Generic;
12+
global using global::System.IO;
13+
global using global::System.Linq;
14+
global using global::System.Net.Http;
15+
global using global::System.Net.Http.Json;
16+
global using global::System.Threading;
17+
global using global::System.Threading.Tasks;

AZ2003App/obj/Debug/net8.0/AZ2003App.MvcApplicationPartsAssemblyInfo.cache

Whitespace-only changes.
153 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7d53c6f34ed1fc21ea99b7f69cc00523a57bc2f6de3127aa4048d9ff67d8ad31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/workspaces/Codespace_IaC_Coding/AZ2003App/bin/Debug/net8.0/appsettings.Development.json
2+
/workspaces/Codespace_IaC_Coding/AZ2003App/bin/Debug/net8.0/appsettings.json
3+
/workspaces/Codespace_IaC_Coding/AZ2003App/bin/Debug/net8.0/AZ2003App
4+
/workspaces/Codespace_IaC_Coding/AZ2003App/bin/Debug/net8.0/AZ2003App.deps.json
5+
/workspaces/Codespace_IaC_Coding/AZ2003App/bin/Debug/net8.0/AZ2003App.runtimeconfig.json
6+
/workspaces/Codespace_IaC_Coding/AZ2003App/bin/Debug/net8.0/AZ2003App.dll
7+
/workspaces/Codespace_IaC_Coding/AZ2003App/bin/Debug/net8.0/AZ2003App.pdb
8+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.GeneratedMSBuildEditorConfig.editorconfig
9+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.AssemblyInfoInputs.cache
10+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.AssemblyInfo.cs
11+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.csproj.CoreCompileInputs.cache
12+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.MvcApplicationPartsAssemblyInfo.cache
13+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.sourcelink.json
14+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/staticwebassets.build.json
15+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/staticwebassets.development.json
16+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/staticwebassets/msbuild.AZ2003App.Microsoft.AspNetCore.StaticWebAssets.props
17+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/staticwebassets/msbuild.build.AZ2003App.props
18+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.AZ2003App.props
19+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.AZ2003App.props
20+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/staticwebassets.pack.json
21+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/scopedcss/bundle/AZ2003App.styles.css
22+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.dll
23+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/refint/AZ2003App.dll
24+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.pdb
25+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/AZ2003App.genruntimeconfig.cache
26+
/workspaces/Codespace_IaC_Coding/AZ2003App/obj/Debug/net8.0/ref/AZ2003App.dll
5 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
40df09fe73b88198100de7414cd0c1b364e29ef6d72d6541d1a3d9981a5d9ee8
20.1 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"documents":{"/workspaces/Codespace_IaC_Coding/*":"https://raw.githubusercontent.com/lukemurraynz/Codespace_IaC_Coding/3596d4f798f79165c92f37d84645539ff5704acf/*"}}

AZ2003App/obj/Debug/net8.0/apphost

70.8 KB
Binary file not shown.
5.5 KB
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"Version": 1,
3+
"Hash": "CH1d6M6QHFTG3UOPj9B7QFLqwTNqjcHcIMqCOB1Z0bM=",
4+
"Source": "AZ2003App",
5+
"BasePath": "_content/AZ2003App",
6+
"Mode": "Default",
7+
"ManifestType": "Build",
8+
"ReferencedProjectsConfiguration": [],
9+
"DiscoveryPatterns": [],
10+
"Assets": []
11+
}

0 commit comments

Comments
 (0)