Skip to content

Commit

Permalink
Merge pull request #21 from microsoftgraph/v2
Browse files Browse the repository at this point in the history
Revised sample extensively
  • Loading branch information
jasonjoh authored Jan 28, 2020
2 parents 0225f41 + a30ac15 commit 1c513f7
Show file tree
Hide file tree
Showing 29 changed files with 468 additions and 1,352 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,3 @@ pip-log.txt

#Mr Developer
.mr.developer.cfg

#Appsettings.json file
ConsoleApplication/appsettings.json
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/DeltaQuery/bin/Debug/netcoreapp3.1/DeltaQuery.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "externalTerminal"
}
]
}
42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/DeltaQuery/DeltaQuery.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/DeltaQuery/DeltaQuery.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/DeltaQuery/DeltaQuery.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}
146 changes: 0 additions & 146 deletions AppCreationScripts/AppCreationScripts.md

This file was deleted.

63 changes: 0 additions & 63 deletions AppCreationScripts/Cleanup.ps1

This file was deleted.

Loading

0 comments on commit 1c513f7

Please sign in to comment.