forked from saleem-mirza/serilog-sinks-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependencies cleanup and support for .net core 2
- Loading branch information
1 parent
5e44db6
commit d604a22
Showing
5 changed files
with
55 additions
and
75 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 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 |
---|---|---|
@@ -1,43 +1,41 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Serilog.Sinks.SQLite</AssemblyTitle> | ||
<Authors>Saleem Mirza</Authors> | ||
<AssemblyName>Serilog.Sinks.SQLite</AssemblyName> | ||
<Description>Serilog event sink that writes to SQLite database</Description> | ||
<PackageId>Serilog.Sinks.SQLite</PackageId> | ||
<PackageTags>serilog;logging;SQLite</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> | ||
<Copyright>Copyright © Zethian Inc. 2013-2017</Copyright> | ||
<AssemblyVersion>3.8.5.0</AssemblyVersion> | ||
<Version>3.8.5</Version> | ||
<SignAssembly>True</SignAssembly> | ||
<AssemblyOriginatorKeyFile>Serilog.snk</AssemblyOriginatorKeyFile> | ||
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks> | ||
<FileVersion>3.8.5.0</FileVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Serilog.Sinks.SQLite</AssemblyTitle> | ||
<Authors>Saleem Mirza</Authors> | ||
<AssemblyName>Serilog.Sinks.SQLite</AssemblyName> | ||
<Description>Serilog event sink that writes to SQLite database</Description> | ||
<PackageId>Serilog.Sinks.SQLite</PackageId> | ||
<PackageTags>serilog;logging;SQLite</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> | ||
<Copyright>Copyright © Zethian Inc. 2013-2017</Copyright> | ||
<AssemblyVersion>3.9.0.0</AssemblyVersion> | ||
<Version>3.9.0</Version> | ||
<SignAssembly>True</SignAssembly> | ||
<AssemblyOriginatorKeyFile>Serilog.snk</AssemblyOriginatorKeyFile> | ||
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks> | ||
<FileVersion>3.9.0.0</FileVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(VersionSuffix)'!='' "> | ||
<Version>$(Version)-$(VersionSuffix)</Version> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(VersionSuffix)'!='' "> | ||
<Version>$(Version)-$(VersionSuffix)</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Data.Sqlite" Version="1.1.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" /> | ||
<PackageReference Include="Serilog" Version="2.4.0" /> | ||
<PackageReference Include="SQLite" Version="3.13.0" /> | ||
<PackageReference Include="SQLite.Native" Version="3.12.3" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | ||
<PackageReference Include="Serilog" Version="2.5.0" /> | ||
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.105.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Properties\" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == 'net452'"> | ||
<Reference Include="System"/> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Properties\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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.