-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using JSON.NET in EFCore.Proxies.Tests targeting net461 can fail #13359
Labels
area-test
closed-out-of-scope
This is not something that will be fixed/implemented and the issue is closed.
type-bug
Comments
Test code: [Fact]
public void Serialization_is_disabled_for_ILazyLoader_property()
{
using (var context = new NeweyContext(nameof(Serialization_is_disabled_for_ILazyLoader_property)))
{
var proxy = context.Set<March82GGtp>().CreateProxy();
var output = JsonConvert.SerializeObject(proxy);
Assert.Equal(
"{\"Id\":0}",
output);
}
} |
ajcvickers
added a commit
that referenced
this issue
Sep 18, 2018
ajcvickers
added a commit
that referenced
this issue
Sep 18, 2018
@JamesNK Have you seen anything like this before? (I suspect it is related to assembly versions and loading on .NET Framework rather than anything specific to JSON.NET.) |
I haven't seen this kind of error before. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-test
closed-out-of-scope
This is not something that will be fixed/implemented and the issue is closed.
type-bug
Using JSON.NET in EFCore.Proxies.Tests results in error on some machines when targeting net461 and running full build from the command line:
The text was updated successfully, but these errors were encountered: