NightOwl888 commented on issue #1041:
URL: https://github.com/apache/lucenenet/issues/1041#issuecomment-2518072642
Okay, that is a bit puzzling.
If you have a completely different API that is conditionally compiled for
`netstandard2.0` vs `net462`, that would certainly break if it were the case.
```c#
public class SomeClass
{
#if NETSTANDARD2_0
public static void SomeMethod()
{
}
#else
public static void SomeMethod2()
{
}
#endif
}
```
If your `ClassLibrary1` project targeting `netstandard2.0` called a
multi-targeted assembly with this class in it, does your call to `SomeMethod()`
inside of `ClassLibrary1` break?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]