Gerard Smit
Gerard Smit
I've replaced the `` with the history API as suggested in https://github.com/riganti/dotvvm/issues/685#issuecomment-486970843. I've tested and verified that the new implementation works in Edge, Chrome, Firefox and Internet Explorer. Since I...
I need Redis to get all the guilds in the MiScript service, so I made it available in self-host.
If you use `GroupBy`, `Select` that gets an row from the group with `FirstOrDefault` and then try to reduce the amount of columns returned with another `Select`, you get an...
This PR adds a generic AstVisitor (`AstVisitor`). This allows value types to be returned without boxing, for example a `double` to make a simple calculator: https://github.com/sebastienros/esprima-dotnet/blob/977356b3aee00ba5d884d2a9eec8c66635bf9ee2/test/Esprima.Tests/AstVisitorTests.cs#L105-L141 `AstVisitor` extends `AstVisitor` so...
This PR implements https://github.com/WebAssembly/exception-handling. The following is done: **Module structure** - [x] Tags - [ ] Clean-up - [ ] Import - [ ] Export - [ ] Name section...
This PR fixes a couple of Rider errors: 1. **Unreachable code detected (empty `;` blocks)**  2. **Property is used instead of type in ``** If there is a property...
Fixes #5837 ## Summary This PR adds `ISkinService` which is an abstraction layer for `SkinController`. ## Things to validate 1. I've renamed properties with `ID` to `Id`. Only `DotNetNuke.Abstractions.Users.IUserInfo` uses...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Description of problem The current implementation of `SkinController` does not have abstraction layer...
## Proposed Changes This PR adds the ability to use the body in `BasicPublishAsync` directly when sending it to RabbitMQ, instead of copying it to a temporary byte-array. ### Technical...
This PR fixes the following methods when the path is a directory: - SetCreationTime - SetLastAccessTime - SetLastWriteTime The current implementation uses `File`, which is invalid for directories. When you...