Skip to content

Commit

Permalink
Merge pull request #25 from jeffijoe/metadatagenerator-signing
Browse files Browse the repository at this point in the history
Add signing to new MetadataGenerator project
  • Loading branch information
jeffijoe authored Apr 26, 2021
2 parents c956c09 + 83d95a2 commit ac64cc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Install-Package MessageFormat
and if you are reusing the same instance of `MessageFormatter`, the formatter will cache the tokens of each pattern (nested, too),
so it won't have to spend CPU time to parse out literals every time. I benchmarked it, and on my monster machine,
it didn't make much of a difference (10000 iterations).
* **Built-in pluralization formatters**. Generated from the [CLDR pluralization rule data](http://cldr.unicode.org/index/downloads).

## Performance

Expand Down Expand Up @@ -149,12 +150,6 @@ be (somewhat) compatible with his.
If you have issues with the library, and the exception makes no sense, please open an issue
and include your message, as well as the data you used.

# Todo

* Built-in locales (currently only `en` is added per default).

Don't expect this in the near future - you're welcome to submit a PR. :)

# Author

I'm Jeff Hansen, a software developer who likes to fiddle with string parsing when it is not too difficult.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>../Jeffijoe.MessageFormat/MessageFormat.snk</AssemblyOriginatorKeyFile>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8</LangVersion>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit ac64cc0

Please sign in to comment.