-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed performance issue where DefaultPropertyResolver threw a first chance exception when attempting to resolve the default value of System.String. * Updated DefaultTypeResolver to allow automatic resolution of internal types +semver: feature
- Loading branch information
1 parent
57feac1
commit 812c1ff
Showing
10 changed files
with
165 additions
and
17 deletions.
There are no files selected for viewing
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,11 @@ | ||
namespace ModelBuilder.UnitTests.Models | ||
{ | ||
using System; | ||
|
||
public interface IInternalItem | ||
{ | ||
public string First { get; } | ||
public bool Second { get; } | ||
public Uri Third { get; } | ||
} | ||
} |
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,11 @@ | ||
namespace ModelBuilder.UnitTests.Models | ||
{ | ||
using System; | ||
|
||
public interface IPublicOverInternal | ||
{ | ||
public string First { get; } | ||
public bool Second { get; } | ||
public Uri Third { get; } | ||
} | ||
} |
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,11 @@ | ||
namespace ModelBuilder.UnitTests.Models | ||
{ | ||
using System; | ||
|
||
internal class InternalItem : IInternalItem | ||
{ | ||
public string First { get; set; } = string.Empty; | ||
public bool Second { get; set; } | ||
public Uri Third { get; set; } = new Uri("about:blank"); | ||
} | ||
} |
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,11 @@ | ||
namespace ModelBuilder.UnitTests.Models | ||
{ | ||
using System; | ||
|
||
internal class InternalNotPickedItem : IPublicOverInternal | ||
{ | ||
public string First { get; set; } = string.Empty; | ||
public bool Second { get; set; } | ||
public Uri Third { get; set; } = new Uri("about:blank"); | ||
} | ||
} |
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,11 @@ | ||
namespace ModelBuilder.UnitTests.Models | ||
{ | ||
using System; | ||
|
||
public class PublicPickedItem : IPublicOverInternal | ||
{ | ||
public string First { get; set; } = string.Empty; | ||
public bool Second { get; set; } | ||
public Uri Third { get; set; } = new Uri("about:blank"); | ||
} | ||
} |
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
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