Why is LC Task not supported with .NET Core #11511
-
I am talking about the following Code snippet. /~https://github.com/dotnet/msbuild/blob/main/src/Tasks/LC.cs#L94-L107 This prevents handling of licx files for .net framework applications with In my head the method would look something like this and the preprocessor directive would be removed: bool isWindows = System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
if (isWindows)
return base.Execute();
Log.LogErrorWithCodeFromResources("TaskRequiresFrameworkFailure", nameof(LC));
return false; |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This Task is one of many that live in the MSBuild repo for mostly historical reasons. The MSBuild team doesn't have subject matter expertise over this Task and so we defer to the actual owners for timelines for updates and feature requests. Based on the issue linked in the XML comment - that is a very high bar. We're not going to expand support until/unless the actual owning team wants to add support. |
Beta Was this translation helpful? Give feedback.
This Task is one of many that live in the MSBuild repo for mostly historical reasons. The MSBuild team doesn't have subject matter expertise over this Task and so we defer to the actual owners for timelines for updates and feature requests. Based on the issue linked in the XML comment - that is a very high bar. We're not going to expand support until/unless the actual owning team wants to add support.