-
Notifications
You must be signed in to change notification settings - Fork 1
/
workspace.code-workspace
86 lines (86 loc) · 3.15 KB
/
workspace.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"extensions": {
"recommendations": [
"ms-dotnettools.csharp",
"doggy8088.netcore-extension-pack",
"fernandoescolar.vscode-solution-explorer",
"mtxr.sqltools",
"mtxr.sqltools-driver-mssql"
]
},
"folders": [
{
"name": "Raiz do projeto",
"path": "."
},
{
"name": "01-Resources",
"path": "01-Introduction/Resources"
},
{
"name": "02-AspnetMicroservices",
"path": "02-Developing-Your-First-Microservice-Catalog.API-with-MongoDb/AspnetMicroservices"
},
{
"name": "03-AspnetMicroservices",
"path": "03-Developing-Basket.API-Microservices-with-Redis/AspnetMicroservices"
},
{
"name": "04-AspnetMicroservices",
"path": "04-Developing-Discount.API-Microservices-with-PostgreSQL/AspnetMicroservices"
},
{
"name": "05-AspnetMicroservices",
"path": "05-Developing-Discount.Grpc-Microservices-for-Microservices-Grpc-Communication/AspnetMicroservices"
},
{
"name": "06-AspnetMicroservices",
"path": "06-Consuming-Discount-Grpc-Service-From-Basket-Microservice-When-Adding-Cart-Item/AspnetMicroservices"
},
{
"name": "07-AspnetMicroservices",
"path": "07-Developing-Ordering-Microservices-with-Clean-Architecture-and-CQRS-Implemntation/AspnetMicroservices"
},
{
"name": "08-AspnetMicroservices",
"path": "08-Microservices-Async-Communication-with-RabbitMQ-and-MassTransit-for-Checkout-Order/AspnetMicroservices"
},
{
"name": "09-AspnetMicroservices",
"path": "09-Building-API-Gateways-with-Ocelot-and-Applying-Gateway-Routing-Pattern/AspnetMicroservices"
},
{
"name": "10-AspnetMicroservices",
"path": "10-Api-Gateway-Requests-Aggregation-Pattern-in-Shopping.Aggregator/AspnetMicroservices"
},
{
"name": "12-AspnetMicroservices",
"path": "12-Building-Shopping-Web-Application-Microservices/AspnetMicroservices"
}
],
"settings": {
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.defaultLaunchSolution": "12-Building-Shopping-Web-Application-Microservices/AspnetMicroservices/src/aspnetrun-microservices.sln",
"vssolution.solutionExplorerIcons": "mix",
"vssolution.altSolutionFolders": [
"12-Building-Shopping-Web-Application-Microservices/AspnetMicroservices/src"
],
"sqltools.connections": [
{
"mssqlOptions": {
"appName": "SQLTools",
"useUTC": true,
"encrypt": true
},
"previewLimit": 50,
"server": "localhost",
"port": 1433,
"driver": "MSSQL",
"name": "localhost",
"username": "sa",
"password": "SwN12345678",
"database": "OrderDb"
}
]
}
}