Skip to content

Commit 1f216fd

Browse files
authored
Merge pull request #34 from datalust/dev
1.1.1 Release
2 parents 9aedf0d + 0e78d62 commit 1f216fd

14 files changed

Lines changed: 17 additions & 24 deletions

File tree

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if(Test-Path .\artifacts) {
1414

1515
& dotnet restore --no-cache
1616

17-
$dbp = [Xml] (Get-Content .\Directory.Build.props)
17+
$dbp = [Xml] (Get-Content .\Directory.Version.props)
1818
$versionPrefix = $dbp.Project.PropertyGroup.VersionPrefix
1919

2020
Write-Output "build: Package version prefix is $versionPrefix"

Directory.Build.props

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<Project>
2+
<Import Project="Directory.Version.props" />
3+
24
<PropertyGroup>
3-
<VersionPrefix>1.1.0</VersionPrefix>
5+
<Nullable>enable</Nullable>
6+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
47
</PropertyGroup>
5-
</Project>
8+
</Project>

Directory.Version.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project>
2+
<PropertyGroup>
3+
<VersionPrefix>1.1.1</VersionPrefix>
4+
</PropertyGroup>
5+
</Project>

harness/Seq.Mail.TestHarness/Seq.Mail.TestHarness.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net6.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
7+
<CheckEolTargetFramework>false</CheckEolTargetFramework>
88
</PropertyGroup>
99

1010
<ItemGroup>

seq-app-mail.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ProjectSection(SolutionItems) = preProject
1414
LICENSE = LICENSE
1515
README.md = README.md
1616
RunLocalSmtp.ps1 = RunLocalSmtp.ps1
17-
Directory.Build.props = Directory.Build.props
17+
Directory.Version.props = Directory.Version.props
1818
Build.ps1 = Build.ps1
1919
EndProjectSection
2020
EndProject

src/Seq.App.Mail.AmazonSes/Seq.App.Mail.AmazonSes.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<Nullable>enable</Nullable>
65
<Description>Send events and notifications from Seq via the Amazon Simple Email Service (SES) API.</Description>
76
<Authors>Datalust, Serilog Contributors</Authors>
87
<PackageTags>seq-app amazon aws ses simple email service</PackageTags>
@@ -11,7 +10,6 @@
1110
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1211
<RepositoryUrl>https://github.com/datalust/seq-app-mail</RepositoryUrl>
1312
<RepositoryType>git</RepositoryType>
14-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1513
</PropertyGroup>
1614

1715
<ItemGroup>

src/Seq.App.Mail.Microsoft365/Seq.App.Mail.Microsoft365.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<Nullable>enable</Nullable>
65
<Description>Send events and notifications from Seq via Microsoft 365 mail.</Description>
76
<Authors>Datalust, Serilog Contributors</Authors>
87
<PackageTags>seq-app microsoft-365 email</PackageTags>
@@ -11,7 +10,6 @@
1110
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1211
<RepositoryUrl>https://github.com/datalust/seq-app-mail</RepositoryUrl>
1312
<RepositoryType>git</RepositoryType>
14-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1513
</PropertyGroup>
1614

1715
<ItemGroup>

src/Seq.App.Mail.Smtp/Seq.App.Mail.Smtp.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<Nullable>enable</Nullable>
65
<Description>Send events and notifications from Seq via SMTP mail.</Description>
76
<Authors>Datalust, Serilog Contributors</Authors>
87
<PackageTags>seq-app smtp email</PackageTags>
@@ -11,7 +10,6 @@
1110
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1211
<RepositoryUrl>https://github.com/datalust/seq-app-mail</RepositoryUrl>
1312
<RepositoryType>git</RepositoryType>
14-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1513
</PropertyGroup>
1614

1715
<ItemGroup>

src/Seq.Apps.Testing/Seq.Apps.Testing.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<Nullable>enable</Nullable>
65
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
86
<Description>Helper types for development and debugging of Seq plug-in apps.</Description>
97
<Authors>Datalust</Authors>
108
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

src/Seq.Mail/Seq.Mail.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<Nullable>enable</Nullable>
65
<Description>Shared infrastructure for Seq apps that integrate with email and similar messaging services.</Description>
76
<Authors>Datalust</Authors>
87
<PackageProjectUrl>https://github.com/datalust/seq-app-mail</PackageProjectUrl>
98
<PackageIcon>seq-mail.png</PackageIcon>
109
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1110
<RepositoryUrl>https://github.com/datalust/seq-app-mail</RepositoryUrl>
1211
<RepositoryType>git</RepositoryType>
13-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1412
</PropertyGroup>
1513

1614
<ItemGroup>
@@ -22,7 +20,7 @@
2220
</ItemGroup>
2321

2422
<ItemGroup>
25-
<PackageReference Include="mailkit" Version="4.6.0" />
23+
<PackageReference Include="mailkit" Version="4.15.1" />
2624
<PackageReference Include="Superpower" Version="3.0.0" />
2725
<PackageReference Include="Seq.Apps" Version="2023.4.0" />
2826
</ItemGroup>

0 commit comments

Comments
 (0)