diff --git a/README.md b/README.md index f12a2cc..71678fd 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Sigourney is a lightweight toolkit that helps developers write weavers, tools th At the moment, Sigourney is known to be used by two projects, both of them developed by Sigourney's author. * [Covarsky][covarsky], a tool that brings co(ntra)variance in languages that don't support it like F#. -* [Farkle][farkle], an LALR parsing library uses Sigourney for [its grammar precompiler][farkle-precompiler]. +* [Farkle][farkle], an LALR parsing library that uses Sigourney for [its grammar precompiler][farkle-precompiler]. If your project uses Sigourney, feel free to open a pull request to add it to the list. @@ -97,7 +97,10 @@ Like Mono.Cecil, Sigourney's version number will most likely stick in the `0.x.y ## Known issues -* Sigourney's MSBuild integration does not fully support incremental builds on projects that use more than one weaver. +* + Sigourney's MSBuild integration does not fully support incremental builds on projects that use more than one weaver. + + Since Sigourney already supports incremental weaving through the `ProcessedBy` classes, fixing this issue has a low priority. Anybody interested can feel free to propose a solution. ## License diff --git a/Sigourney/Sigourney.csproj b/Sigourney/Sigourney.csproj index 13513e8..914ed1f 100644 --- a/Sigourney/Sigourney.csproj +++ b/Sigourney/Sigourney.csproj @@ -2,12 +2,12 @@ netstandard2.0 Sigourney - 0.2.0 + 0.2.1 A lightweight toolkit that helps easily writing .NET assembly weavers. Theodore Tsirpanis Copyright © Theodore Tsirpanis. Licensed under the MIT License. Contains some code from Fody, which is licensed under the MIT License as well. - Introduce a new API for writing MSBuild-integrated weavers. -Take a look at the repository's README to learn how to use it. + Reword some log messages. +Remove the sentinel files when the project gets cleaned. https://github.com/teo-tsirpanis/Sigourney ILWeaving;Sigourney;Cecil MIT