dotnet / dotnet/project-system
ResXFileCodeGenerator does not emit GetTypeInfo()
Open
Feature-Resource-Designer
Feature-Resource-Explorer
Triage-Investigate
- Dominant language
- C#
- Stars
- 1k
- Forks
- 415
- PR merge metrics
- No merged PRs in 30d
Description
# How to reproduce
I have a project that targets both net451 and netstandard1.3 with:
```
net451;netstandard1.3
```
# Expected
The code should be compilable.
# What happened instead
The ResXFileCodeGenerator doesn't emit GetTypeInfo().
# Workaround
I have to move the target framework `netstandard1.3` to the first position to get the expected behavior:
```
netstandard1.3;net451
```
# Additional info
This seems to be related to #747.
Contributor guide
Assessment
This issue has not been assessed yet.