-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- feat: downgrade from netstandard1.5 to netstandard1.3 and convert project to csproj - chore: clean up build warnings in the csproj files - chore: Update appveyor.yml image Visual Studio 2017 and remove install steps to install dotnet cli - chore: update package information - chore: remove assembly info generation from csproj - docs(changelog): update - chore: update csproj to not reference entire netstandard and reference System.Net.Sockets for netstandard1.3 - chore: treat warnings as errors closes #7
- Loading branch information
1 parent
a4cdeac
commit ff296b1
Showing
12 changed files
with
75 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Version>2.3.0-beta2</Version> | ||
<AssemblyName>Serilog.Sinks.Udp</AssemblyName> | ||
<Description>Serilog event sink that sends UDP packages over the network.</Description> | ||
<TargetFrameworks>net45;netstandard1.3</TargetFrameworks> | ||
<Authors>Mattias Kindborg</Authors> | ||
<Company /> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<TreatSpecificWarningsAsErrors /> | ||
<SignAssembly>true</SignAssembly> | ||
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign> | ||
<AssemblyOriginatorKeyFile>../../Serilog.snk</AssemblyOriginatorKeyFile> | ||
<PackageId>Serilog.Sinks.Udp</PackageId> | ||
<PackageTags>serilog;udp</PackageTags> | ||
<PackageIconUrl>http://serilog.net/images/serilog-sink-nuget.png</PackageIconUrl> | ||
<PackageProjectUrl>http://serilog.net</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<!-- Don't reference the full NETStandard.Library --> | ||
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Serilog" Version="2.4.0" /> | ||
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="2.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> | ||
<PackageReference Include="System.Net.Sockets" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' "> | ||
<DefineConstants>$(DefineConstants);NET4</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
test/Serilog.Sinks.Udp.Tests/Serilog.Sinks.Udp.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp1.1</TargetFrameworks> | ||
<AssemblyName>Serilog.Sinks.Udp.Tests</AssemblyName> | ||
<PackageId>Serilog.Sinks.Udp.Tests</PackageId> | ||
<Authors>Mattias Kindborg</Authors> | ||
<Description>Tests for Serilog.Sinks.Udp.</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="../../src/Serilog.Sinks.Udp/Serilog.Sinks.Udp.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" /> | ||
<PackageReference Include="xunit" Version="2.2.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" /> | ||
<PackageReference Include="Moq" Version="4.7.8" /> | ||
</ItemGroup> | ||
|
||
</Project> |
21 changes: 0 additions & 21 deletions
21
test/Serilog.Sinks.Udp.Tests/Serilog.Sinks.Udp.Tests.xproj
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.