-
Notifications
You must be signed in to change notification settings - Fork 4
Supported frameworks since Cake 3.0 are net7.0 and net6.0 #217
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Guidance needs to be updated
CakeContrib.Guidelines/src/Tasks/TargetFrameworkVersions.cs
Lines 40 to 42 in 10515df
| TargetsDefinition.From(NetCore31), | |
| TargetsDefinition.From(Net50), | |
| TargetsDefinition.From(Net60), |
Need to add 3.0 similar too
CakeContrib.Guidelines/src/Tasks/TargetFrameworkVersions.cs
Lines 89 to 105 in 10515df
| d => !d.IsModuleProject && d.Version.GreaterEqual(V2), | |
| new TargetsDefinitions | |
| { | |
| Name = "x >= 2.0.0", | |
| RequiredTargets = new[] | |
| { | |
| TargetsDefinition.From(NetCore31), | |
| TargetsDefinition.From(Net50), | |
| TargetsDefinition.From(Net60), | |
| }, | |
| SuggestedTargets = Array.Empty<TargetsDefinition>(), | |
| } | |
| }, | |
| }; | |
| /// <summary> | |
| /// Gets or sets the References. |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request