|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 | 4 | <Description>A Serilog sink that writes log events to the debug output window.</Description>
|
5 |
| - <VersionPrefix>1.0.2</VersionPrefix> |
| 5 | + <VersionPrefix>2.0.0</VersionPrefix> |
6 | 6 | <Authors>Serilog Contributors</Authors>
|
7 |
| - <TargetFrameworks>net45;net46;netstandard1.0;netstandard2.0</TargetFrameworks> |
| 7 | + <TargetFrameworks>net45;net46;netstandard1.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
8 | 8 | <AssemblyName>Serilog.Sinks.Debug</AssemblyName>
|
9 | 9 | <AssemblyOriginatorKeyFile>../../assets/Serilog.snk</AssemblyOriginatorKeyFile>
|
10 | 10 | <SignAssembly>true</SignAssembly>
|
11 | 11 | <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
12 | 12 | <PackageId>Serilog.Sinks.Debug</PackageId>
|
13 | 13 | <PackageTags>serilog;debug</PackageTags>
|
14 |
| - <PackageIconUrl>http://serilog.net/images/serilog-sink-nuget.png</PackageIconUrl> |
15 | 14 | <PackageProjectUrl>https://github.com/serilog/serilog-sinks-debug</PackageProjectUrl>
|
16 |
| - <PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
| 15 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 16 | + <PackageIcon>icon.png</PackageIcon> |
17 | 17 | <RepositoryUrl>https://github.com/serilog/serilog-sinks-debug</RepositoryUrl>
|
18 | 18 | <RepositoryType>git</RepositoryType>
|
19 |
| - <GenerateAssemblyVersionAttribute>true</GenerateAssemblyVersionAttribute> |
20 |
| - <GenerateAssemblyFileVersionAttribute>true</GenerateAssemblyFileVersionAttribute> |
21 | 19 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
22 | 20 | <!-- Don't reference the full NETStandard.Library -->
|
23 | 21 | <DisableImplicitFrameworkReferences Condition=" '$(TargetFramework)' == 'netstandard1.0' ">true</DisableImplicitFrameworkReferences>
|
24 | 22 | <TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
25 |
| - <TreatSpecificWarningsAsErrors /> |
26 | 23 | <RootNamespace>Serilog</RootNamespace>
|
27 | 24 | </PropertyGroup>
|
28 | 25 |
|
|
32 | 29 | </PropertyGroup>
|
33 | 30 |
|
34 | 31 | <ItemGroup>
|
35 |
| - <PackageReference Include="Serilog" Version="2.5.0" /> |
| 32 | + <PackageReference Include="Serilog" Version="2.10.0" /> |
36 | 33 | </ItemGroup>
|
37 | 34 |
|
38 | 35 | <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.0' ">
|
39 | 36 | <PackageReference Include="System.Diagnostics.Debug" Version="4.3.0" />
|
40 | 37 | </ItemGroup>
|
41 | 38 |
|
42 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'net45' "> |
43 |
| - <DefineConstants>$(DefineConstants);DEBUG_WRITE</DefineConstants> |
44 |
| - </PropertyGroup> |
45 |
| - |
46 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'net46' "> |
47 |
| - <DefineConstants>$(DefineConstants);DEBUG_WRITE</DefineConstants> |
48 |
| - </PropertyGroup> |
49 |
| - |
50 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
| 39 | + <PropertyGroup Condition=" '$(TargetFramework)' != 'netstandard1.0' "> |
51 | 40 | <DefineConstants>$(DefineConstants);DEBUG_WRITE</DefineConstants>
|
52 | 41 | </PropertyGroup>
|
| 42 | + |
| 43 | + <ItemGroup> |
| 44 | + <None Include="..\..\assets\icon.png" Pack="true" Visible="false" PackagePath="" /> |
| 45 | + </ItemGroup> |
53 | 46 |
|
54 | 47 | </Project>
|
0 commit comments