Skip to content

Commit 431554c

Browse files
committed
fixed cert, fixed deprecated logger
1 parent 31c9041 commit 431554c

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

FileContextCore/Extensions/Internal/FileContextLoggerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static void TransactionIgnoredWarning(
2626
{
2727
EventDefinition definition = FileContextStrings.LogTransactionsNotSupported;
2828

29-
definition.Log(diagnostics);
29+
definition.Log(diagnostics, WarningBehavior.Log);
3030

3131
if (diagnostics.DiagnosticSource.IsEnabled(definition.EventId.Name))
3232
{

FileContextCore/FileContextCore.csproj

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

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
55
<SignAssembly>true</SignAssembly>
6-
<AssemblyOriginatorKeyFile>Key.pfx</AssemblyOriginatorKeyFile>
6+
<AssemblyOriginatorKeyFile>FileContextCoreCert.pfx</AssemblyOriginatorKeyFile>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8-
<Version>2.1.0</Version>
8+
<Version>2.1.4</Version>
99
<Company>morrisjdev</Company>
1010
<Authors>morrisjdev</Authors>
1111
<Description>File provider for Entity Framework Core (to be used for development purposes)</Description>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<_LastSelectedProfileId>C:\Users\mjanatzek\Documents\Projects\private\FileContextCore\FileContextCore\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
5+
</PropertyGroup>
6+
</Project>

FileContextCore/Properties/PublishProfiles/FolderProfile.pubxml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
88
<Configuration>Release</Configuration>
99
<Platform>Any CPU</Platform>
1010
<TargetFramework>netcoreapp2.1</TargetFramework>
11-
<PublishDir>bin\Debug\netcoreapp2.1\publish\</PublishDir>
11+
<PublishDir>bin\Release\netcoreapp2.1\publish\</PublishDir>
12+
<SelfContained>false</SelfContained>
13+
<_IsPortable>true</_IsPortable>
1214
</PropertyGroup>
1315
</Project>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
</Project>

0 commit comments

Comments
 (0)