Skip to content

Commit

Permalink
Version 5.0.4 (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
snakefoot committed Sep 1, 2022
1 parent c25b82f commit ba5855f
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Expand Up @@ -2,6 +2,12 @@

Date format: (year/month/day)

### Version 5.0.4 (2022/09/01)

**Improvements**
- [#621](https://github.com/NLog/NLog.Extensions.Logging/pull/621): Added embedded resource ILLink.Descriptors.xml (@snakefoot)
- [#619](https://github.com/NLog/NLog.Extensions.Logging/pull/619): Bump NLog from 5.0.3 to 5.0.4 (@snakefoot)

### Version 5.0.3 (2022/09/01)

**Improvements**
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Expand Up @@ -2,7 +2,7 @@
# creates NuGet package at \artifacts
dotnet --version

$versionPrefix = "5.0.3"
$versionPrefix = "5.0.4"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
Expand Down
5 changes: 5 additions & 0 deletions src/NLog.Extensions.Hosting/ILLink.Descriptors.xml
@@ -0,0 +1,5 @@
<linker>
<assembly fullname="NLog" preserve="all" />
<assembly fullname="NLog.Extensions.Logging" preserve="all" />
<assembly fullname="NLog.Extensions.Hosting" preserve="all" />
</linker>
9 changes: 8 additions & 1 deletion src/NLog.Extensions.Hosting/NLog.Extensions.Hosting.csproj
Expand Up @@ -35,7 +35,7 @@ Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHAN
<!-- EmbedUntrackedSources for deterministic build -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="2.1.0" />
</ItemGroup>
Expand All @@ -57,9 +57,16 @@ Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHAN
<ProjectReference Include="..\NLog.Extensions.Logging\NLog.Extensions.Logging.csproj" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="ILLink.Descriptors.xml">
<LogicalName>ILLink.Descriptors.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<None Include="N.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>

<Target Name="DownloadMissingContent" BeforeTargets="GenerateNuspec">
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
</Target>
Expand Down
4 changes: 4 additions & 0 deletions src/NLog.Extensions.Logging/ILLink.Descriptors.xml
@@ -0,0 +1,4 @@
<linker>
<assembly fullname="NLog" preserve="all" />
<assembly fullname="NLog.Extensions.Logging" preserve="all" />
</linker>
25 changes: 16 additions & 9 deletions src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
Expand Up @@ -34,14 +34,11 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyOriginatorKeyFile>..\NLog.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<LangVersion>latest</LangVersion>
<!-- EmbedUntrackedSources for deterministic build -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<Target Name="DownloadMissingContent" BeforeTargets="GenerateNuspec">
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
</Target>

<PropertyGroup Condition=" '$(TargetFramework)' == 'net461' ">
<Title>NLog.Extensions.Logging for .NET Framework 4.6.1</Title>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
Expand All @@ -68,8 +65,12 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
<Title>NLog.Extensions.Logging for .NET 5.0</Title>
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>$(Title)</AssemblyTitle>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NLog" Version="5.0.3" />
<PackageReference Include="NLog" Version="5.0.4" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
Expand Down Expand Up @@ -99,14 +100,20 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="ILLink.Descriptors.xml">
<LogicalName>ILLink.Descriptors.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>

<Target Name="DownloadMissingContent" BeforeTargets="GenerateNuspec">
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
</Target>

<ItemGroup>
<None Include="N.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>
<Target Name="DownloadMissingContent" BeforeTargets="GenerateNuspec">
<DownloadFile SourceUrl="https://nlog-project.org/N.png" DestinationFolder="$(MSBuildThisFileDirectory)" />
</Target>
<PropertyGroup>
<AssemblyTitle>$(Title)</AssemblyTitle>
<LangVersion>latest</LangVersion>
</PropertyGroup>
</Project>

0 comments on commit ba5855f

Please sign in to comment.