File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -214,6 +214,3 @@ pip-log.txt
214214
215215# Mr Developer
216216.mr.developer.cfg
217-
218- # VS Code
219- .vscode /
Original file line number Diff line number Diff line change 1+ {
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "name" : " .NET Core Launch (console)" ,
9+ "type" : " coreclr" ,
10+ "request" : " launch" ,
11+ "preLaunchTask" : " build" ,
12+ "program" : " ${workspaceFolder}/DeltaQuery/bin/Debug/netcoreapp3.1/DeltaQuery.dll" ,
13+ "args" : [],
14+ "cwd" : " ${workspaceFolder}" ,
15+ "stopAtEntry" : false ,
16+ "console" : " internalConsole"
17+ },
18+ {
19+ "name" : " PowerShell: Launch Current File" ,
20+ "type" : " PowerShell" ,
21+ "request" : " launch" ,
22+ "script" : " ${file}" ,
23+ "cwd" : " ${file}"
24+ }
25+ ]
26+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " build" ,
6+ "command" : " dotnet" ,
7+ "type" : " process" ,
8+ "args" : [
9+ " build" ,
10+ " ${workspaceFolder}/DeltaQuery/DeltaQuery.csproj" ,
11+ " /property:GenerateFullPaths=true" ,
12+ " /consoleloggerparameters:NoSummary"
13+ ],
14+ "problemMatcher" : " $msCompile"
15+ },
16+ {
17+ "label" : " publish" ,
18+ "command" : " dotnet" ,
19+ "type" : " process" ,
20+ "args" : [
21+ " publish" ,
22+ " ${workspaceFolder}/DeltaQuery/DeltaQuery.csproj" ,
23+ " /property:GenerateFullPaths=true" ,
24+ " /consoleloggerparameters:NoSummary"
25+ ],
26+ "problemMatcher" : " $msCompile"
27+ },
28+ {
29+ "label" : " watch" ,
30+ "command" : " dotnet" ,
31+ "type" : " process" ,
32+ "args" : [
33+ " watch" ,
34+ " run" ,
35+ " ${workspaceFolder}/DeltaQuery/DeltaQuery.csproj" ,
36+ " /property:GenerateFullPaths=true" ,
37+ " /consoleloggerparameters:NoSummary"
38+ ],
39+ "problemMatcher" : " $msCompile"
40+ }
41+ ]
42+ }
Original file line number Diff line number Diff line change 1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+
3+ <PropertyGroup >
4+ <OutputType >Exe</OutputType >
5+ <TargetFramework >netcoreapp3.1</TargetFramework >
6+ </PropertyGroup >
7+
8+ <ItemGroup >
9+ <PackageReference Include =" Microsoft.Extensions.Configuration.UserSecrets" Version =" 3.1.1" />
10+ <PackageReference Include =" Microsoft.Graph" Version =" 1.21.0" />
11+ <PackageReference Include =" Microsoft.Identity.Client" Version =" 4.8.0" />
12+ </ItemGroup >
13+
14+ </Project >
Original file line number Diff line number Diff line change 1+ using System ;
2+
3+ namespace DeltaQuery
4+ {
5+ class Program
6+ {
7+ static void Main ( string [ ] args )
8+ {
9+ Console . WriteLine ( "Hello World!" ) ;
10+ }
11+ }
12+ }
You can’t perform that action at this time.
0 commit comments