Skip to content

Commit f017c23

Browse files
committed
Improved main csproj
1 parent 4f2982c commit f017c23

File tree

1 file changed

+50
-67
lines changed

1 file changed

+50
-67
lines changed
Lines changed: 50 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,54 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<Authors>Simon Vonhoff</Authors>
5-
<Company>github.com/vonhoff</Company>
6-
<Copyright>Copyright © 2022 Simon Vonhoff - Provided under the Apache License, Version 2.0.</Copyright>
7-
<DebugType>portable</DebugType>
8-
<Description>A Serilog sink that writes log events to a WinForms RichTextBox control with colors and theme support.</Description>
9-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
10-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
11-
<IncludeSymbols>true</IncludeSymbols>
12-
<MinClientVersion>3.3</MinClientVersion>
13-
<Nullable>enable</Nullable>
14-
<OutputType>Library</OutputType>
15-
<PackageIcon>serilog-sink-nuget.png</PackageIcon>
16-
<PackageId>Serilog.Sinks.RichTextBox.WinForms.Colored</PackageId>
17-
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
18-
<PackageProjectUrl>https://github.com/vonhoff/serilog-sinks-richtextbox-winforms</PackageProjectUrl>
19-
<PackageReadmeFile>README.md</PackageReadmeFile>
20-
<PackageTags>serilog;sinks;richtextbox;winforms;windows;sink;colors;theme;themes;serilog-sink;vonhoff;rich;textbox;</PackageTags>
21-
<RepositoryUrl>https://github.com/vonhoff/serilog-sinks-richtextbox-winforms.git</RepositoryUrl>
22-
<RootNamespace>Serilog</RootNamespace>
23-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
24-
<TargetFrameworks>net462;net6.0-windows;net8.0-windows</TargetFrameworks>
25-
<UseWindowsForms>true</UseWindowsForms>
26-
<Version>2.1.0</Version>
27-
<PackageReleaseNotes>
28-
- Deprecated configurables from v1 removed.
29-
- Removed support for net452, minimum version is now net462.
30-
- Added support for all Serilog 2.12.x versions and higher.
31-
32-
See repository for more information:
33-
https://github.com/vonhoff/Serilog.Sinks.RichTextBox.WinForms.Colored
34-
</PackageReleaseNotes>
35-
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
36-
<NeutralLanguage>en-US</NeutralLanguage>
37-
<LangVersion>9.0</LangVersion>
38-
</PropertyGroup>
39-
40-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-windows|AnyCPU'">
41-
<WarningLevel>6</WarningLevel>
42-
</PropertyGroup>
43-
44-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-windows|AnyCPU'">
45-
<WarningLevel>6</WarningLevel>
46-
</PropertyGroup>
47-
48-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net452|AnyCPU'">
49-
<WarningLevel>5</WarningLevel>
50-
</PropertyGroup>
51-
52-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'">
53-
<WarningLevel>5</WarningLevel>
54-
</PropertyGroup>
55-
56-
<ItemGroup>
57-
<None Include="..\Resources\serilog-sink-nuget.png">
58-
<Pack>True</Pack>
59-
<PackagePath>\</PackagePath>
60-
</None>
61-
<None Include="..\README.md">
62-
<Pack>True</Pack>
63-
<PackagePath>\</PackagePath>
64-
</None>
65-
</ItemGroup>
66-
67-
<ItemGroup>
68-
<PackageReference Include="Serilog" Version="[2.12.0,)" />
69-
</ItemGroup>
3+
<PropertyGroup>
4+
<Authors>Simon Vonhoff</Authors>
5+
<Company>github.com/vonhoff</Company>
6+
<Copyright>Copyright © 2022 Simon Vonhoff - Provided under the Apache License, Version 2.0.</Copyright>
7+
<Description>A Serilog sink that writes log events to a WinForms RichTextBox control with colors and theme support.</Description>
8+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
9+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10+
<IncludeSymbols>true</IncludeSymbols>
11+
<Nullable>enable</Nullable>
12+
<OutputType>Library</OutputType>
13+
<PackageIcon>serilog-sink-nuget.png</PackageIcon>
14+
<PackageId>Serilog.Sinks.RichTextBox.WinForms.Colored</PackageId>
15+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
16+
<PackageProjectUrl>https://github.com/vonhoff/serilog-sinks-richtextbox-winforms</PackageProjectUrl>
17+
<PackageReadmeFile>README.md</PackageReadmeFile>
18+
<PackageTags>serilog;sinks;richtextbox;winforms;windows;sink;colors;theme;themes;serilog-sink;vonhoff;rich;textbox;</PackageTags>
19+
<RepositoryUrl>https://github.com/vonhoff/serilog-sinks-richtextbox-winforms.git</RepositoryUrl>
20+
<RootNamespace>Serilog</RootNamespace>
21+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
22+
<TargetFrameworks>net462;net6.0-windows;net8.0-windows</TargetFrameworks>
23+
<UseWindowsForms>true</UseWindowsForms>
24+
<Version>2.1.0</Version>
25+
<PackageReleaseNotes>
26+
- Deprecated configurables from v1 removed.
27+
- Removed support for net452, minimum version is now net462.
28+
- Added support for all Serilog 2.12.x versions and higher.
29+
30+
See repository for more information:
31+
https://github.com/vonhoff/Serilog.Sinks.RichTextBox.WinForms.Colored
32+
</PackageReleaseNotes>
33+
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
34+
<NeutralLanguage>en-US</NeutralLanguage>
35+
<LangVersion>9.0</LangVersion>
36+
<WarningLevel>6</WarningLevel>
37+
</PropertyGroup>
38+
39+
<ItemGroup>
40+
<None Include="..\Resources\serilog-sink-nuget.png">
41+
<Pack>True</Pack>
42+
<PackagePath>\</PackagePath>
43+
</None>
44+
<None Include="..\README.md">
45+
<Pack>True</Pack>
46+
<PackagePath>\</PackagePath>
47+
</None>
48+
</ItemGroup>
49+
50+
<ItemGroup>
51+
<PackageReference Include="Serilog" Version="[2.12.0,)"/>
52+
</ItemGroup>
7053

7154
</Project>

0 commit comments

Comments
 (0)