Create fsharplu.windows-nuget.md Update fsharplu.json-nuget.md Create fsharplu-nuget.md

This commit is contained in:
William Blum 2018-12-27 12:12:13 -08:00
Родитель 82ff77ff8d
Коммит f400692e3a
4 изменённых файлов: 26 добавлений и 1 удалений

Просмотреть файл

@ -4,7 +4,7 @@ queue:
demands: vstest
variables:
NUGET_PACKAGE_VERSION: 0.10.29
NUGET_PACKAGE_VERSION: 0.10.31
#Your build definition references the NUGET_PACKAGE_VERSION variable, which youve selected to be settable at queue time. Create or edit the build definition for this YAML file, define the variable on the Variables tab, and then select the option to make it settable at queue time. See https://go.microsoft.com/fwlink/?linkid=865971
#Your build definition references the BuildConfiguration variable, which youve selected to be settable at queue time. Create or edit the build definition for this YAML file, define the variable on the Variables tab, and then select the option to make it settable at queue time. See https://go.microsoft.com/fwlink/?linkid=865971

11
fsharplu-nuget.md Normal file
Просмотреть файл

@ -0,0 +1,11 @@
This library provides F# lightweight utilities for string manipulations, logging, collection data structures, file operations, text processing, security, async, parsing, diagnostics, configuration files and Json serialization.
This is by no means a full-fledged utility library for F#, but rather a small collection of utilities and other thin wrappers accumulated throughout the development of various internal projects at Microsoft and meant to facilitate development with the .Net framework using the F# programming language.
Some of the provided utilities are just thin let-bindings wrappers around existing .Net libraries (e.g. module FSharpLu.Text or FSharpLu.Parsing) whereas some provide additional features (e.g. Json serialization in module FSharpLu.Json).
For more info check the [project documentation](https://github.com/Microsoft/fsharplu/wiki) on GitHub.
### Related nuget packages
- https://www.nuget.org/packages/Microsoft.FSharpLu.Json
- https://www.nuget.org/packages/Microsoft.FSharpLu.Windows
### Assembly
Microsoft.FSharpLu.dll

9
fsharplu.json-nuget.md Normal file
Просмотреть файл

@ -0,0 +1,9 @@
This modules provides improved Json serialization over the default formatting used by Newtonsoft's Json.Net.
The generated Json is more compact and maps more closely to the corresponding value definition in F#.
For more info check the [project documentation](https://github.com/Microsoft/fsharplu/wiki) on GitHub.
### Assembly
Microsoft.FSharpLu.Json.dll
### Namespace
- Microsoft.FSharpLu.Json

Просмотреть файл

@ -0,0 +1,5 @@
# FSharpLu F# utility library for Windows
This library provides F# lightweight utilities for:
- Trace logging to console and file
- Security: Windows impersonation.