Skip to content

Commit f755475

Browse files
author
Sergey Komisarchik
committed
build warnings/errors fixes
1 parent 5c20021 commit f755475

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

asset/icon.png

6.53 KB
Loading

example/ConsoleApplication/ConsoleApplication.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

example/WebApplication/WebApplication.csproj

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>netcoreapp2.1</TargetFramework>
55
<PreserveCompilationContext>true</PreserveCompilationContext>
66
<AssemblyName>WebApplication</AssemblyName>
77
<OutputType>Exe</OutputType>
8-
<PackageId>WebApplication</PackageId>
9-
<RuntimeFrameworkVersion>2.0.0</RuntimeFrameworkVersion>
108
</PropertyGroup>
119

1210
<ItemGroup>
@@ -20,7 +18,7 @@
2018
</ItemGroup>
2119

2220
<ItemGroup>
23-
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
21+
<PackageReference Include="Microsoft.AspNetCore.All" />
2422
</ItemGroup>
2523

2624
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">

src/Seq.Extensions.Logging/Seq.Extensions.Logging.csproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<SignAssembly>true</SignAssembly>
1212
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1313
<PackageTags>aspnet;logging</PackageTags>
14-
<PackageIconUrl>https://datalust.co/images/nuget/seq.png</PackageIconUrl>
14+
<PackageIcon>icon.png</PackageIcon>
1515
<PackageProjectUrl>https://github.com/datalust/seq-extensions-logging</PackageProjectUrl>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
</PropertyGroup>
@@ -22,4 +22,8 @@
2222
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="2.1.0" />
2323
</ItemGroup>
2424

25+
<ItemGroup>
26+
<None Include="..\..\asset\icon.png" Pack="true" Visible="false" PackagePath="" />
27+
</ItemGroup>
28+
2529
</Project>

test/Seq.Extensions.Logging.Tests/Seq.Extensions.Logging.Tests.csproj

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net472;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
55
<AssemblyOriginatorKeyFile>../../asset/seqext.snk</AssemblyOriginatorKeyFile>
66
<SignAssembly>true</SignAssembly>
77
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
@@ -20,8 +20,4 @@
2020
<PackageReference Include="xunit" Version="2.4.1" />
2121
</ItemGroup>
2222

23-
<ItemGroup>
24-
<Folder Include="Properties\" />
25-
</ItemGroup>
26-
2723
</Project>

0 commit comments

Comments
 (0)