You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
18
+
19
+
## Goals
20
+
21
+
As .NET Framework < 4.7.2 has issues with running .NET Standard assemblies, and Cake itself can run on .NET Framework 4.6.1 it is suggested to multi-target addins to `netstandard2.0` and `net461` to have the maximum compatibility.
22
+
23
+
### Required / Suggested versions
24
+
25
+
Depending on the referenced `Cake.Core`-version different target versions are required and/or suggested.
26
+
Missing a required target version will raise [CCG0007](../rules/ccg0007) as an error
27
+
while missing a suggested target version will raise [CCG0007](../rules/ccg0007) as a warning.
28
+
29
+
* Cake.Core <= 0.33.0
30
+
* Required: `netstandard2.0`
31
+
* Suggested: `net461`
32
+
* alternative: `net46`
33
+
34
+
## Related rules
35
+
36
+
*[CCG0007](../rules/ccg0007)
37
+
38
+
## Usage
39
+
40
+
Using this package automatically enables this guideline.
41
+
42
+
## Settings
43
+
44
+
### Opt-Out
45
+
46
+
It it possible to opt-out of the check for target framework using the following setting:
47
+
48
+
(*Keep in mind, though that it is not recommended to opt-out of this feature*)
0 commit comments