Skip to content

Commit 0de7818

Browse files
authored
Fix template paket version and split docs (#370)
* fix paket version in template * add docs * add docs
1 parent fc2e762 commit 0de7818

File tree

5 files changed

+204
-206
lines changed

5 files changed

+204
-206
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
if: matrix.os != 'windows-latest'
3333
run: ./build.sh
3434

35+
- name: Build on Unix
36+
if: matrix.os != 'windows-latest'
37+
run: dotnet fsdocs build --clean --properties Configuration=Release
38+
3539
- name: Deploy documentation from master
3640
if: matrix.os != 'windows-latest'
3741
uses: peaceiris/actions-gh-pages@v3

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#### 7.0.2 - September 22, 2021
2+
* Fix template paket version
3+
14
#### 7.0.1 - September 21, 2021
25
* Allow both netstandard2.0 and netstandard2.1
36

docs/faq.md

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
# FAQ
2+
3+
## How do I debug execution of a type provider when using .NET Framework tools on Windows?
4+
5+
1. Capture output of `msbuild -v:n` in `args.txt` and trim out the rubbish leaving just the command line arguments to the F# compiler, usually starting with `-o:...`
6+
7+
2. Run an explicit invocation of the compiler using this, checking that your failures still happen
8+
9+
fsc.exe @args.txt
10+
11+
Then debug that invocation using
12+
13+
devenv /debugexe fsc.exe @args.txt
14+
15+
If your failures only happen in the IDE then use `devenv /debugexe devenv.exe MyProj.fsproj`, set debug type to ".NET Framework 4.0" and launch F5. Likewise if your failures only happen in F# Interactive then use `devenv /debugexe fsi.exe MyProj.fsproj`.
16+
17+
Set first-catch exception handling (Ctrl-Alt-E, select all CLR exceptions) and set Just My Code off
18+
19+
## A dependency of my type provider is not loading, what do I do?
20+
21+
For example, let's say you have this error in your test project:
22+
23+
```
24+
2>E:\GitHub\admin\joe-provider\test\Joe.Test\ProviderTests.fs(8,10): error FS3033: The type provider 'Joe.Provider.JoeProvider' reported an error: Could not load file or assembly 'Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. The system cannot find the file specified. [E:\GitHub\dsyme\joe-provider\test\Joe.Test\Joe.Test.fsproj]
25+
```
26+
27+
Here your test project is referencing your provider project, and your type provider has a dependency on `Newtonsoft.Json.dll`. To see what's going on, run
28+
29+
dotnet build -v:n
30+
31+
In the compilation of your test project you will see something like this:
32+
33+
C:\Program Files\dotnet\dotnet.exe "C:\Program Files\dotnet\sdk\3.1.401\FSharp\fsc.exe"
34+
-o:obj\Debug\net5.0\Joe.Test.dll
35+
...
36+
-r:E:\GitHub\admin\joe-provider\src\Joe.Provider\bin\Debug\netstandard2.0\Joe.Provider.dll
37+
...
38+
39+
1. The tool `fsc.exe` is trying to load the type provider but a dependency is not found. As mentioned above, all dependencies must be packaged
40+
alongside your design time component. For example, adding
41+
42+
<Content Include="..\..\packages\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll" CopyToOutputDirectory="PreserveNewest" />
43+
44+
will include the component and unblock you. However, you will need to be careful to make sure this component is laid down in the right place in your nuget
45+
package, see the instructions above for what the final layout of the nuget package should be.
46+
47+
2. When making type providers whose design-time components have dependencies, you should always use a "split" type provider that separates the design-time and runtime components.
48+
49+
TODO: give exact .fsproj/nuget instructions to get the dependency into the `typeproviders\fsharp41\netstandard2.0` directory alongside the design-time component.
50+
51+
## How do I debug execution of a type provider when using .NET Core tools on Windows?
52+
53+
One approach:
54+
55+
1. Capture output of `dotnet build -v:n` in `args.txt` and trim out the rubbish leaving just the command line arguments to the F# compiler, usually starting with `-o:...`
56+
57+
2. Run an explicit invocation of the compiler using:
58+
59+
"c:\Program Files\dotnet\dotnet.exe" "C:\Program Files\dotnet\sdk\2.1.403\FSharp\fsc.exe" @args.txt
60+
61+
Then debug that invocation using
62+
63+
devenv /debugexe "c:\Program Files\dotnet\dotnet.exe" "C:\Program Files\dotnet\sdk\2.1.403\FSharp\fsc.exe" @args.txt
64+
65+
Be careful to make sure Visual Studio debugging type is set to ".NET Core" (right click properties on dotnet and set debug type)
66+
67+
Set first-catch exception handling (Ctrl-Alt-E, select all CLR exceptions) and set Just My Code off.
68+
69+
## Some Type Provider terminology
70+
71+
* TPRTC - Type Provider Run Time Component, e.g. ``FSharp.Data.dll``.
72+
73+
* This is the component referenced by ``#r`` or ``-r:`` on the command line or other configration of a host tool
74+
75+
* May be the same physical file as the TPDTC.
76+
77+
* Contains either a [``TypeProviderAssembly()``](https://msdn.microsoft.com/en-us/visualfsharpdocs/conceptual/compilerservices.typeproviderassemblyattribute-class-%5Bfsharp%5D) attribute indicating that this component is also a TPDTC, or ``TypeProviderAssembly("MyDesignTime.dll")`` attribute indicating that the name of the design time component.
78+
79+
* A type provider package may have multiple such DLLs for different target platforms, e.g.
80+
81+
lib\net45\FSharp.Data.dll
82+
lib\netstandard2.0\FSharp.Data.dll
83+
84+
* TPRTCs are normally .NET Framework 4.x, .NET Standard 2.0 or some portable profile component.
85+
86+
* TPDTC - Type Provider Design Time Component, e.g. ``FSharp.Data.DesignTime.dll``.
87+
88+
* The DLL that gets loaded into host tools.
89+
90+
* May be the same physical file as the TPRTC.
91+
92+
* This component includes the ProvidedTypes.fs/fsi files from the type provider SDK.
93+
94+
* TPDTCs are currently .NET Framework 4.x. They can also be .NET Standard 2.0 components, see below
95+
96+
* Host tool - Either ``fsc.exe``, ``fsi.exe`` or some tool hosting ``FSharp.Compiler.Service.dll`` such as ``devenv.exe`` or ``FsAutoComplete.exe``
97+
98+
## How the TPDTC is found and loaded
99+
100+
Currently, host tools look for TPDTC DLLs alongside the TPRTC DLL. For simple type providers, these DLLs are the same. When executing using .NET Framework, the host tool uses ``Assembly.LoadFrom`` to load this component.
101+
102+
See [Type provider design-time DLLs should be chosen more appropriately](https://github.com/Microsoft/visualfsharp/issues/3736) for a proposal to change the rules to allow TPDTC components to be found more usefully, and in particular for different TPDTC components to be loaded depending on the execution environment of the host tooling.
103+
104+
## Explicit construction of code: MakeGenericType, MakeGenericMethod and UncheckedQuotations
105+
106+
Some type providers need to build code via explicit calls to `FSharp.Quotations.Expr.*` rather than via quotation
107+
literals. Frequently, this is needed when code must instantiate generic methods or types. However, in some cases limitations
108+
of the F# quotations API are reached.
109+
110+
In these cases, follow these rules
111+
112+
1. Always use `ProvidedTypeBuilder.MakeGenericType(type, typeArguments)` rather than `type.MakeGenericType(typeArguments)`
113+
1. Always use `ProvidedTypeBuilder.MakeGenericMethod(methInfo, methTypeArguments)` rather than `methInfo.MakeGenericType(methTypeArguments)`
114+
1. Where necessary open `open ProviderImplementation.ProvidedTypes.UncheckedQuotations` and make quotation nodes representing calls and other operations using `Expr.CallUnchecked`.
115+
116+
If you don't do this you may get errors like
117+
118+
The type provider 'FSharp.Configuration.ConfigTypeProvider+FSharpConfigurationProvider' reported an error: Type mismatch when building 'args': invalid parameter for a method or indexer property. Expected 'System.Collections.Generic.IEnumerable`1[System.String]', but received type 'System.Collections.Generic.IEnumerable`1[System.String]'.�Parameter name: receivedType
119+
120+
or
121+
122+
System.InvalidOperationException: the operation is not valid due to the current state of the object. at System.Reflection.MemberInfo.get_MetadataToken() in f:\dd\ndp\clr\src\BCL\system\reflection\memberinfo.cs:line 65
123+
124+
## Some unit testing helpers
125+
126+
The SDK includes a file
127+
128+
* ProvidedTypesTesting.fs
129+
130+
which is sometimes incorporated into a type provider to help enable unit testing. For examples of how this is used, see uses of the helpers in the FSharp.Data library such as:
131+
132+
* [``Testing.GenerateProvidedTypeInstantiation``](https://github.com/fsharp/FSharp.Data/blob/f5df4554938138c60af2ec886d5a132883633351/src/TypeProviderInstantiation.fs#L127)
133+
* ``Targets.DotNetStandard20FSharpRefs`` to get a suitable set of references for .NET Standard plus the running FSharp.Core
134+
* [``Testing.FormatProvidedType``](https://github.com/fsharp/FSharp.Data/blob/f5df4554938138c60af2ec886d5a132883633351/src/TypeProviderInstantiation.fs#L171) to get a textual representation of a provided type, used to "snapshot" the full description of expected type generation
135+
136+
Sometimes unit test DLLs incorporate the entire type provider implementation, and sometimes they use InternalsVisibleTo.
137+
138+
The unit testing helpers aren't really an official, documented part of the SDK - caveat emptor.

0 commit comments

Comments
 (0)