Separated tests and benchmarks; Rewrote project to use .net10 and C#14#40
Open
shadowslasher410 wants to merge 2 commits into
Open
Separated tests and benchmarks; Rewrote project to use .net10 and C#14#40shadowslasher410 wants to merge 2 commits into
shadowslasher410 wants to merge 2 commits into
Conversation
Moved benchmarks to new project, so that tests project is just tests. Rewrote tests using xUnit. Rewrote Gameloop.Vdf to use C#14 and .Net10 (more details in changelog.md). Removed several obsolete files, and combined others (VdfReader and VdfWriter, VdfSerializer and VdfSerializerSettings, DynamicProxy and DynamicProxyMetaObject, Vtoken and VTokenType). Replaced changes.txt with Changelog.md. Added Readme.md to inner project with new usage information (old readme still included). Needs a new Nuget release.
Author
|
Oh shoot! I just realized that I forgot to add back all the documentation! (I have OCD and ADHD and removed it because I didn't know how much of it would still be applicable, with plans to rewrite it later...) ...Guess later is now. |
Removed the package I was using for benchmarking from the tests project (benchmarking was originally in there before I moved it to a new project). Added comprehensive documentation (hopefully I didn't go too overboard...). I wrote most of this when I was debugging my test methods, so there are some comments in the methods I was having trouble with explaining what certain blocks do (so I can keep track logic wise). VProperty: added null propagation to VToken Value's setter. VdfContext: Moved public async Task<VProperty> ReadAsync() to be with the rest of the public methods.
Author
|
Full disclosure: I used AI to help me make the documentation, and for help debugging. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Moved benchmarks to new project, so that tests project is just tests. Rewrote tests using xUnit. Rewrote Gameloop.Vdf to use C#14 and .Net10 (more details in changelog.md). Removed several obsolete files, and combined others (VdfReader and VdfWriter, VdfSerializer and VdfSerializerSettings, DynamicProxy and DynamicProxyMetaObject, Vtoken and VTokenType). Replaced changes.txt with Changelog.md. Added Readme.md to inner project with new usage information (old readme still included). Needs a new Nuget release.