A .NET Standard Process wrapper with an elegant API, for both asyncronous and syncronous use, providing both Events and support for Tasks with cancellation support
XText allows you to easily create a text based layout simply in code, including Paragraphs, inlines, formatting etc. Also gives the ability to conditionally writing out elements
It is based on NETCORE.
This is the basic class library of the framework, which mainly provides the basic functional support needed for running. At the same time, it also provides rich tools for web development.
Runs an executable with optional arguments, and returns the standard output as an output parameter.
Usage:
<Run Exe="$(Git)" Args="log HEAD" WorkingDir="$(MSBuildProjectDirectory)">
<Output TaskParameter="Output" PropertyName="HeadSha" />
</Run>
Features:
- You can run any object in another process in several lines
- The created object looks like a real one (see ProxyFactory)
- Full control - you can kill the process at any time and interrupt the execution of any code and free the libraries used
Limitations:
-...
More information