Rename MailAddressVisualizer (from MailAddressVisualizerTest)

This commit is contained in:
Matthias Heil
2026-01-13 11:51:51 +01:00
parent 341a344357
commit 6768bd2090
13 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
// See https://aka.ms/new-console-template for more information
using System.Net.Mail;
var displayName = "Thomas Ardal";
var email = "thomas@elmah.io";
var mailAddress = new MailAddress(email, displayName);
return;

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,3 @@
<Solution>
<Project Path="Test.csproj" />
</Solution>