-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 1.0 to nuget #16
Comments
is there anything outstanding to make this happen? |
What I had in mind:
|
Indeed :) Is this library abandoned, @nblumhardt? |
Hi @Leon99 👋 ; I don't think this library ended up with a lot of adoption. It might make sense to archive. I'll do that tomorrow, if no one jumps in in the meantime |
Fare enough. Would you suggest an alternative? |
Depends on your needs, @Leon99 - the Also open to reviving this project, but I think quite a lot of work will be required to get it to where we'd like. |
Let's say I have a simple ad-hoc use case that I achieve with |
Definitely an option 👍 Another is to create a logger with something like if (logger.BindMessageTemplate("Hello, {Name}!", new[] { "World" }, out var template, out var properties)
{
var propsByName = properties.ToDictionary(p => p.Name, p => p.Value);
Console.WriteLine(template.Render(propsByName, null));
// -> "Hello, World!"
} |
It's been a while...
The text was updated successfully, but these errors were encountered: