ModelBuilder icon indicating copy to clipboard operation
ModelBuilder copied to clipboard

A library for easy creation and data population of model classes for testing

Results 41 ModelBuilder issues
Sort by recently updated
recently updated
newest added

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.5. Release notes Sourced from actions/checkout's releases. v4.1.5 What's Changed Update NPM dependencies by @​cory-miller in actions/checkout#1703 Bump github/codeql-action from 2 to 3 by @​dependabot...

dependencies
github_actions

Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.5.7 to 2.8.0. Commits 6438bb8 v2.8.0 2afd4cd Pick up latest dependencies b8be108 Add multiplier format support to RunSettings 3c2e493 Update to 2.7.2-pre.17 and support Xunit.ParallelAlgorithm in RunSetttings...

dependencies
.NET

Bumps [xunit](https://github.com/xunit/xunit) from 2.7.0 to 2.8.0. Commits be260b3 v2.8.0 a8ceb66 #783: Add -useansicolor flag to console runner (v2) 7b0ff93 Don't show /aggressive with unlimited threads 46cdf06 Support parallel algorithm in...

dependencies
.NET

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.1.4 to 4.1.7. Release notes Sourced from actions/download-artifact's releases. v4.1.7 What's Changed Update @​actions/artifact dependency by @​bethanyj28 in actions/download-artifact#325 Full Changelog: https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 v4.1.6 What's Changed updating @actions/artifact...

dependencies
github_actions

Bumps [danielpalme/ReportGenerator-GitHub-Action](https://github.com/danielpalme/reportgenerator-github-action) from 5.2.3 to 5.2.5. Release notes Sourced from danielpalme/ReportGenerator-GitHub-Action's releases. 5.2.5 Changes: #665 Improved handling of duplicate classes in JaCoCo files This release requires .NET Framework 4.7 or...

dependencies
github_actions

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.1 to 4.3.3. Release notes Sourced from actions/upload-artifact's releases. v4.3.3 What's Changed updating @actions/artifact dependency to v2.1.6 by @​eggyhead in actions/upload-artifact#565 Full Changelog: https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3 v4.3.2 What's Changed...

dependencies
github_actions

There is a lot of complexity in the code base due to API's that express properties and parameters. There is little value in these signatures other than logging as variable...

Type mapping configuration is not used in all circumstances. It is only used in TypeCreatorBase. This is not appropriate when populating a type should use type mapping. For example, create...

ModelBuilder handles properties that are public set with private get. It fails however on purely write only properties. For example: ``` public ProtectedItem PrivateWriteOnly { set { } } ```