Skip to content

Commit 8e333aa

Browse files
authored
Merge pull request #18 from Numpsy/rw/build_updates
Build and packaging updates
2 parents a049f43 + cd042be commit 8e333aa

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: '{build}'
22
skip_tags: true
3-
image: Visual Studio 2017
3+
image: Visual Studio 2019
44
configuration: Release
55
build_script:
66
- ps: ./Build.ps1

assets/serilog-enricher-nuget.png

21.1 KB
Loading

src/Serilog.Enrichers.Thread/Serilog.Enrichers.Thread.csproj

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<Description>Enrich Serilog events with properties from the current thread.</Description>
@@ -13,9 +13,9 @@
1313
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1414
<PackageId>Serilog.Enrichers.Thread</PackageId>
1515
<PackageTags>serilog;thread;enricher</PackageTags>
16-
<PackageIconUrl>http://serilog.net/images/serilog-enricher-nuget.png</PackageIconUrl>
16+
<PackageIcon>serilog-enricher-nuget.png</PackageIcon>
1717
<PackageProjectUrl>http://serilog.net</PackageProjectUrl>
18-
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
18+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1919
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
2020
</PropertyGroup>
2121

@@ -28,6 +28,13 @@
2828
<Reference Include="Microsoft.CSharp" />
2929
</ItemGroup>
3030

31+
<ItemGroup>
32+
<None Include="..\..\assets\serilog-enricher-nuget.png">
33+
<Pack>True</Pack>
34+
<PackagePath></PackagePath>
35+
</None>
36+
</ItemGroup>
37+
3138
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
3239
<DefineConstants>$(DefineConstants);THREAD_NAME</DefineConstants>
3340
</PropertyGroup>

0 commit comments

Comments
 (0)