missing-dot is a library when you are porting .NET projects to Kotlin multiplatform. It is how we use this library.
missing-dot does not really aim to cover a lot of .NET framework API. This is the list of API that we target and/or cover so far:
- dev.atsushieno.missingdot.xml
- XmlReader and XmlTextReader (.NET: System.Xml.XmlReader)
- XmlWriter and XmlTextWriter (.NET: System.Xml.XmlWriter)
- Linq to XML (.NET: System.Xml.Linq)
To use this package, add implementation
line below to your build.gradle(.kts)
:
dependencies {
implementation 'dev.atsushieno:missingdot:+' // replace + with the actual version
}
We use GitHub issues for bug reports etc., and GitHub Discussions boards open to everyone.
API documentation is published at: https://atsushieno.github.io/missing-dot/
The documentation can be built using ./gradlew dokkaHtml
and it will be generated locally at build/dokka/html
.
missing-dot is distributed under the MIT License.