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
This issue has been with us since we converted the embedded resource files to satellite assemblies. We currently use the al.exe tool from .NET Framework to generate the satellite assemblies, which doesn't support non-Windows operating systems.
This has been partly addressed in #75, but we need a more robust solution that will generate all of the satellite assemblies, not just some of them.
This code seems to be how MS is doing it in .NET Core (using the Csc task rather than al.exe):
This issue has been with us since we converted the embedded resource files to satellite assemblies. We currently use the
al.exe
tool from .NET Framework to generate the satellite assemblies, which doesn't support non-Windows operating systems.This has been partly addressed in #75, but we need a more robust solution that will generate all of the satellite assemblies, not just some of them.
This code seems to be how MS is doing it in .NET Core (using the Csc task rather than al.exe):
https://github.com/dotnet/sdk/blob/58eb155e30a393656dd290486143f02f958898fc/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.targets#L1193-L1249
So, we need to experiment with this approach to see if we can get our satellite assemblies to build.
The text was updated successfully, but these errors were encountered: