Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"recommendations": [
"fernandoescolar.vscode-solution-explorer",
"pkief.material-icon-theme",
"k--kato.docomment",
"jorgeserrano.vscode-csharp-snippets",
"ms-dotnettools.csharp"
]
}
"recommendations": [
"fernandoescolar.vscode-solution-explorer",
"pkief.material-icon-theme",
"k--kato.docomment",
"jorgeserrano.vscode-csharp-snippets",
"ms-dotnettools.csharp"
]
}
68 changes: 34 additions & 34 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/WebAPI/src/apps/SampleWebApp/bin/Debug/net6.0/SampleWebApp.dll",
"args": [],
"cwd": "${workspaceFolder}/WebAPI/src/apps/SampleWebApp",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/SampleWebApp/bin/Debug/net6.0/SampleWebApp.dll",
"args": [],
"cwd": "${workspaceFolder}/SampleWebApp",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
5 changes: 0 additions & 5 deletions .vscode/solution-explorer/class.cs-template

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/solution-explorer/class.ts-template

This file was deleted.

9 changes: 0 additions & 9 deletions .vscode/solution-explorer/class.vb-template

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/solution-explorer/default.ts-template

This file was deleted.

5 changes: 0 additions & 5 deletions .vscode/solution-explorer/enum.cs-template

This file was deleted.

5 changes: 0 additions & 5 deletions .vscode/solution-explorer/interface.cs-template

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/solution-explorer/interface.ts-template

This file was deleted.

46 changes: 0 additions & 46 deletions .vscode/solution-explorer/template-list.json

This file was deleted.

17 changes: 0 additions & 17 deletions .vscode/solution-explorer/template-parameters.js

This file was deleted.

80 changes: 40 additions & 40 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/DemoSolution.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/WebAPI/src/apps/SampleWebApp/SampleWebApp.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/WebAPI/src/apps/SampleWebApp/SampleWebApp.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/DemoSolution.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/SampleWebApp/SampleWebApp.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/SampleWebApp/SampleWebApp.csproj"
],
"problemMatcher": "$msCompile"
}
]
}

This file was deleted.

32 changes: 0 additions & 32 deletions DemoSolution.code-workspace

This file was deleted.

24 changes: 5 additions & 19 deletions DemoSolution.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,17 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Apps", "Apps", "{19D7C420-E
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Infra", "Infra", "{5881D2F2-2866-4262-9909-DC5BDF539DF8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleWebApp", "WebAPI\src\apps\SampleWebApp\SampleWebApp.csproj", "{C25C7F7F-6B71-45B1-BF0F-28975ED0EEB8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleWebApp", "src\SampleWebApp\SampleWebApp.csproj", "{C25C7F7F-6B71-45B1-BF0F-28975ED0EEB8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InfraSampleWebApp", "WebAPI\src\infra\src\Infra\InfraSampleWebApp.csproj", "{D0135CD7-9A0C-4BDA-A316-8741B3E556CE}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InfraSampleWebApp", "src\infra\src\Infra\InfraSampleWebApp.csproj", "{D0135CD7-9A0C-4BDA-A316-8741B3E556CE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkerDb", "ServicesWorkerDb\src\apps\WorkerDb\WorkerDb.csproj", "{7FE3829D-3D80-4639-A665-14B7FED4DB51}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkerDb", "src\WorkerDb\WorkerDb.csproj", "{7FE3829D-3D80-4639-A665-14B7FED4DB51}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InfraWorkerDb", "ServicesWorkerDb\src\infra\src\Infra\InfraWorkerDb.csproj", "{DA4AADEB-6F5A-4125-BE50-85E31974CCC9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkerIntegration", "ServicesWorkerIntegration\src\apps\WorkerIntegration\WorkerIntegration.csproj", "{FFE68605-33E6-44D7-A3F8-4B66DDC3AD5E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InfraWorkerIntegration", "ServicesWorkerIntegration\src\infra\src\Infra\InfraWorkerIntegration.csproj", "{6D2D05F8-CD9A-49B9-9F0B-7EDF19E75FFB}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkerIntegration", "src\WorkerIntegration\WorkerIntegration.csproj", "{FFE68605-33E6-44D7-A3F8-4B66DDC3AD5E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{4FDEFB79-4CF9-478A-A729-5EC346445BFC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Amazon.CDK.AWS.ECS.MyExtensions", "Common\Amazon.CDK.AWS.ECS.MyExtention\Amazon.CDK.AWS.ECS.MyExtensions.csproj", "{EEFCD529-46DF-4490-8015-E66658EC4E33}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Amazon.CDK.AWS.ECS.MyExtensions", "src\Common\Amazon.CDK.AWS.ECS.MyExtention\Amazon.CDK.AWS.ECS.MyExtensions.csproj", "{EEFCD529-46DF-4490-8015-E66658EC4E33}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -41,18 +37,10 @@ Global
{7FE3829D-3D80-4639-A665-14B7FED4DB51}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7FE3829D-3D80-4639-A665-14B7FED4DB51}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7FE3829D-3D80-4639-A665-14B7FED4DB51}.Release|Any CPU.Build.0 = Release|Any CPU
{DA4AADEB-6F5A-4125-BE50-85E31974CCC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DA4AADEB-6F5A-4125-BE50-85E31974CCC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DA4AADEB-6F5A-4125-BE50-85E31974CCC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DA4AADEB-6F5A-4125-BE50-85E31974CCC9}.Release|Any CPU.Build.0 = Release|Any CPU
{FFE68605-33E6-44D7-A3F8-4B66DDC3AD5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FFE68605-33E6-44D7-A3F8-4B66DDC3AD5E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FFE68605-33E6-44D7-A3F8-4B66DDC3AD5E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FFE68605-33E6-44D7-A3F8-4B66DDC3AD5E}.Release|Any CPU.Build.0 = Release|Any CPU
{6D2D05F8-CD9A-49B9-9F0B-7EDF19E75FFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6D2D05F8-CD9A-49B9-9F0B-7EDF19E75FFB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6D2D05F8-CD9A-49B9-9F0B-7EDF19E75FFB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6D2D05F8-CD9A-49B9-9F0B-7EDF19E75FFB}.Release|Any CPU.Build.0 = Release|Any CPU
{EEFCD529-46DF-4490-8015-E66658EC4E33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EEFCD529-46DF-4490-8015-E66658EC4E33}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EEFCD529-46DF-4490-8015-E66658EC4E33}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -65,9 +53,7 @@ Global
{C25C7F7F-6B71-45B1-BF0F-28975ED0EEB8} = {19D7C420-ED87-40B7-9874-D3C731198BD1}
{D0135CD7-9A0C-4BDA-A316-8741B3E556CE} = {5881D2F2-2866-4262-9909-DC5BDF539DF8}
{7FE3829D-3D80-4639-A665-14B7FED4DB51} = {19D7C420-ED87-40B7-9874-D3C731198BD1}
{DA4AADEB-6F5A-4125-BE50-85E31974CCC9} = {5881D2F2-2866-4262-9909-DC5BDF539DF8}
{FFE68605-33E6-44D7-A3F8-4B66DDC3AD5E} = {19D7C420-ED87-40B7-9874-D3C731198BD1}
{6D2D05F8-CD9A-49B9-9F0B-7EDF19E75FFB} = {5881D2F2-2866-4262-9909-DC5BDF539DF8}
{EEFCD529-46DF-4490-8015-E66658EC4E33} = {4FDEFB79-4CF9-478A-A729-5EC346445BFC}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
Expand Down
Loading