dotnet
has built in templates for creating new projects.- I can install new templates e.g for the Giraffe webserver.
- Giraffe builts upon Kestrel, which is the built in dotnet core websever.
dotnet watch run
builds the project on file change.- To use
dotnet watch
i had to install it asDotNetCliToolReference
package in my.fsproj
file. dotnet add
uses NuGet behind the scenes to install dependencies.- NuGet has currently no command to add packages as
DotNetClitToolReference
. - I had to add the package manually in the
ItemGroup
of my.fsproj
file.
#Responsive Newsletter Regeln zur Erstellung von responsive Newslettern
<td width="10" height="1" style="font-size:1px; line-height:1px"> </td>
width
und height
ist für das Spacing verantwortlich. height
muss immer gesetzt werden und mindestens 1px
betragen.
font-size
und line-height
müssen gesetzt werden, damit Outlook das
nicht wie normale Schrift stylt.