From c25ceca38dadb0f4c867c87e967d85b25293022d Mon Sep 17 00:00:00 2001 From: Faithlife Build Bot Date: Tue, 1 Aug 2023 10:06:20 -0400 Subject: [PATCH] Documentation updated. --- docs/Faithlife.LINQPad.md | 9 +++++++++ docs/Faithlife.LINQPad/LINQPadUtility.md | 20 +++++++++++++++++++ .../EnableNativeNuGetReferences.md | 14 +++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 docs/Faithlife.LINQPad.md create mode 100644 docs/Faithlife.LINQPad/LINQPadUtility.md create mode 100644 docs/Faithlife.LINQPad/LINQPadUtility/EnableNativeNuGetReferences.md diff --git a/docs/Faithlife.LINQPad.md b/docs/Faithlife.LINQPad.md new file mode 100644 index 0000000..2c0bc16 --- /dev/null +++ b/docs/Faithlife.LINQPad.md @@ -0,0 +1,9 @@ +# Faithlife.LINQPad assembly + +## Faithlife.LINQPad namespace + +| public type | description | +| --- | --- | +| static class [LINQPadUtility](./Faithlife.LINQPad/LINQPadUtility.md) | Provides helper methods for working with LINQPad. | + + diff --git a/docs/Faithlife.LINQPad/LINQPadUtility.md b/docs/Faithlife.LINQPad/LINQPadUtility.md new file mode 100644 index 0000000..e66f3f9 --- /dev/null +++ b/docs/Faithlife.LINQPad/LINQPadUtility.md @@ -0,0 +1,20 @@ +# LINQPadUtility class + +Provides helper methods for working with LINQPad. + +```csharp +public static class LINQPadUtility +``` + +## Public Members + +| name | description | +| --- | --- | +| static [EnableNativeNuGetReferences](LINQPadUtility/EnableNativeNuGetReferences.md)() | Enables loading native dependencies from NuGet packages referenced by the current query. Returns an IDisposable that should be disposed at the end of the query. If it is not disposed, then you can clear the process state by doing Query => Kill Process. | + +## See Also + +* namespace [Faithlife.LINQPad](../Faithlife.LINQPad.md) +* [LINQPadUtility.cs](https://github.com/Faithlife/FaithlifeLINQPad/tree/master/src/Faithlife.LINQPad/LINQPadUtility.cs) + + diff --git a/docs/Faithlife.LINQPad/LINQPadUtility/EnableNativeNuGetReferences.md b/docs/Faithlife.LINQPad/LINQPadUtility/EnableNativeNuGetReferences.md new file mode 100644 index 0000000..6eeccd5 --- /dev/null +++ b/docs/Faithlife.LINQPad/LINQPadUtility/EnableNativeNuGetReferences.md @@ -0,0 +1,14 @@ +# LINQPadUtility.EnableNativeNuGetReferences method + +Enables loading native dependencies from NuGet packages referenced by the current query. Returns an IDisposable that should be disposed at the end of the query. If it is not disposed, then you can clear the process state by doing Query => Kill Process. + +```csharp +public static IDisposable EnableNativeNuGetReferences() +``` + +## See Also + +* class [LINQPadUtility](../LINQPadUtility.md) +* namespace [Faithlife.LINQPad](../../Faithlife.LINQPad.md) + +