-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
😿 Reverted System.Text.Json -> Newtonsoft.Json (#35)
* 😿 Reverted System.Text.Json -> Newtonsoft.Json System.Text.Json doesn't work for Polymorphic types. Crazy :( Also a deal breaker. So reverting back to the older and slower Newtonsoft.Json. * Ignore launchSettings.json for the test project. Just ignore everytime the app keeps recreating the launchSettings.json in this test project. It's a weird sideeffect of having a test project but also a webproject in it.
- Loading branch information
Showing
13 changed files
with
64 additions
and
117 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Properties/launchSettings.json |
34 changes: 0 additions & 34 deletions
34
tests/Homely.AspNetCore.Mvc.Helpers.Tests/DateTimeConverterTests/ReadTests.cs
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
tests/Homely.AspNetCore.Mvc.Helpers.Tests/DateTimeConverterTests/WriteTests.cs
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
tests/Homely.AspNetCore.Mvc.Helpers.Tests/HomeControllerTests/ExceptionTestTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace TestWebApplication.Models | ||
{ | ||
public abstract class AbstractClass | ||
{ | ||
public string SomeAbstractClassProperty { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace TestWebApplication.Models | ||
{ | ||
public class BaseClass : AbstractClass | ||
{ | ||
public string SomeBaseClassProperty { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace TestWebApplication.Models | ||
{ | ||
public class DerivedClass : BaseClass | ||
{ | ||
public string SomeDerivedClassProperty { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters