-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from sunnamed434/dev
Bump new version 0.12.0-alpha.21
- Loading branch information
Showing
62 changed files
with
483 additions
and
290 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Does BitMono provide Costura-Fody Support by default? | ||
===================================================== | ||
|
||
Indeed, by default BitMono provides support for the Costura-Fody, resources will be resolved automatically, in this case, you don't need to have copies of your .DLLs or even set ``DisableCleanup`` to ``true`` in ``FodyWeavers.xml``. |
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,58 @@ | ||
How to disable path masking? | ||
============================ | ||
|
||
You're probably getting a message with the file/directory or just a path ``(***\things)``, and you might have the same folder twice somewhere, and you need to see the full path without masking if this is what you're looking for, all instructions how to do that are provided here. | ||
|
||
Open-up ``logging.json`` in the root of the downloaded BitMono, edit this file, and remove this: | ||
|
||
.. code-block:: json | ||
"Enrich": [ | ||
{ | ||
"Name": "WithSensitiveDataMasking", | ||
"Args": { | ||
"options": { | ||
"MaskValue": "***\\", | ||
"MaskProperties": [ "path", "directory", "file" ], | ||
"MaskingOperators": [ "BitMono.Host.Extensions.PathMaskingOperator, BitMono.Host" ] | ||
} | ||
} | ||
}, | ||
], | ||
So, after edit ``logging.json`` looks like this: | ||
|
||
.. code-block:: json | ||
{ | ||
"Serilog": { | ||
"Using": [ | ||
"Serilog", | ||
"Serilog.Sinks.Console", | ||
"Serilog.Sinks.File", | ||
"Serilog.Sinks.Async", | ||
"Serilog.Enrichers.Sensitive" | ||
], | ||
"WriteTo": [ | ||
{ | ||
"Name": "Async", | ||
"Args": { | ||
"configure": [ | ||
{ | ||
"Name": "File", | ||
"Args": { | ||
"path": "logs/bitmono-{{date}}.log", | ||
"outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss} {Level:u3}][{SourceContext}] {Message:lj}{NewLine}{Exception}" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"Enrich": [ | ||
"FromLogContext" | ||
], | ||
"MinimumLevel": "Debug" | ||
} | ||
} |
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,12 +1,11 @@ | ||
namespace BitMono.API.Contexts | ||
namespace BitMono.API.Contexts; | ||
|
||
public class ProtectionParameters | ||
{ | ||
public class ProtectionParameters | ||
public ProtectionParameters(List<IMetadataMember> members) | ||
{ | ||
public ProtectionParameters(List<IMetadataMember> members) | ||
{ | ||
Members = members; | ||
} | ||
|
||
public List<IMetadataMember> Members { get; } | ||
Members = members; | ||
} | ||
|
||
public List<IMetadataMember> Members { get; } | ||
} |
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
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
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
Oops, something went wrong.