We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ab659 commit fc570f0Copy full SHA for fc570f0
1 file changed
sources/editor/Stride.Assets.Presentation/Templates/Core/Common.TargetFrameworks.targets.t4
@@ -1,4 +1,4 @@
1
<#@ template inherits="ProjectTemplateTransformation" language="C#" #>
2
<#@ assembly name="System.Linq" #>
3
<#@ import namespace="System.Linq" #>
4
- <TargetFrameworks><#= string.Join(";", ((IEnumerable<Stride.Core.Assets.SolutionPlatform>)Properties.Platforms).Select(x => x.TargetFramework).Distinct()) #></TargetFrameworks>
+ <TargetFrameworks><#= string.Join(";", ((IEnumerable<Stride.Core.Assets.SolutionPlatform>)Properties.Platforms).Where(x => x.IsAvailable).Select(x => x.TargetFramework).Distinct()) #></TargetFrameworks>
0 commit comments