Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
run: dotnet build src/NLog.MailKit.sln --configuration Release --no-restore

- name: Test
run: dotnet test src/NLog.MailKit.sln --configuration Release --no-build
run: dotnet test src/NLog.MailKit.sln --configuration Release --no-build --logger "console;verbosity=normal"
5 changes: 1 addition & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ variables:
Solution: 'src/NLog.MailKit.sln'
BuildPlatform: 'Any CPU'
BuildConfiguration: 'Release'
Version: '6.0.5'
FullVersion: '$(Version).$(Build.BuildId)'

steps:
- task: DotNetCoreCLI@2
Expand All @@ -31,13 +29,12 @@ steps:
organization: nlog
projectKey: nlog.mailkit
projectName: 'NLog Mailkit'
projectVersion: '$(FullVersion)'

- task: VSBuild@1
displayName: 'Build'
inputs:
solution: '$(Solution)'
msbuildArgs: '-v:m -p:Version=$(Version) -p:FileVersion=$(FullVersion) -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -p:ContinuousIntegrationBuild=true -p:EmbedUntrackedSources=true'
msbuildArgs: '-v:m -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -p:ContinuousIntegrationBuild=true -p:EmbedUntrackedSources=true'
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
maximumCpuCount: true
Expand Down
5 changes: 3 additions & 2 deletions src/NLog.MailKit.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32929.385
# Visual Studio Version 18
VisualStudioVersion = 18.5.11723.231 stable
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NLog.MailKit", "NLog.MailKit\NLog.MailKit.csproj", "{ADB14D32-DE12-4443-8234-21A11EADDFC0}"
EndProject
Expand All @@ -10,6 +10,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C5050808-B92D-44C2-9EA4-24E4533325C9}"
ProjectSection(SolutionItems) = preProject
..\azure-pipelines.yml = ..\azure-pipelines.yml
..\.github\workflows\build-and-test.yml = ..\.github\workflows\build-and-test.yml
EndProjectSection
EndProject
Global
Expand Down
10 changes: 4 additions & 6 deletions src/NLog.MailKit/NLog.MailKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,12 @@ If the mail target was already available on your platform, this package will ove
<PackageReleaseNotes>
Changelog:

- Skip removing XOAUTH2 from AuthenticationMechanisms when OAuth2
- Support SmtpAuthenticationMode.Ntlm using Windows Default Credentials
- Improved upfront validation of configured email addresses (To / From / Cc / Bcc)
- Improved exception handling when one or more configured email addresses are not valid.
- Updated MailKit ver. 4.16.0 (Security fix)
- Updated NLog ver. 6.1.3

See https://github.com/NLog/NLog.MailKit/releases
</PackageReleaseNotes>
<VersionPrefix>6.1.3</VersionPrefix>
<VersionPrefix>6.1.4</VersionPrefix>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>$(VersionPrefix).0</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand All @@ -60,7 +58,7 @@ See https://github.com/NLog/NLog.MailKit/releases
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NLog" Version="6.1.1" />
<PackageReference Include="NLog" Version="6.1.3" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md">
Expand Down
Loading