Skip to content

Commit 96344d8

Browse files
committed
Initial
0 parents  commit 96344d8

28 files changed

Lines changed: 312 additions & 0 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode/launch.json

SMTP2Graph.sln

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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}") = "SMTP2Graph", "SMTP2Graph\SMTP2Graph.csproj", "{73E1FAA9-3E6E-47C9-9150-7C8F87843273}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Debug|x64.ActiveCfg = Debug|Any CPU
21+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Debug|x64.Build.0 = Debug|Any CPU
22+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Debug|x86.ActiveCfg = Debug|Any CPU
23+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Debug|x86.Build.0 = Debug|Any CPU
24+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Release|x64.ActiveCfg = Release|Any CPU
27+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Release|x64.Build.0 = Release|Any CPU
28+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Release|x86.ActiveCfg = Release|Any CPU
29+
{73E1FAA9-3E6E-47C9-9150-7C8F87843273}.Release|x86.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
EndGlobal

SMTP2Graph/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// See https://aka.ms/new-console-template for more information
2+
Console.WriteLine("Hello, World!");

SMTP2Graph/SMTP2Graph.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net9.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
</PropertyGroup>
9+
10+
</Project>
121 KB
Binary file not shown.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v9.0",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v9.0": {
9+
"SMTP2Graph/1.0.0": {
10+
"runtime": {
11+
"SMTP2Graph.dll": {}
12+
}
13+
}
14+
}
15+
},
16+
"libraries": {
17+
"SMTP2Graph/1.0.0": {
18+
"type": "project",
19+
"serviceable": false,
20+
"sha512": ""
21+
}
22+
}
23+
}
4.5 KB
Binary file not shown.
10.4 KB
Binary file not shown.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net9.0",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "9.0.0"
7+
},
8+
"configProperties": {
9+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
10+
}
11+
}
12+
}
Lines changed: 4 additions & 0 deletions
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=v9.0", FrameworkDisplayName = ".NET 9.0")]

0 commit comments

Comments
 (0)