Richard Deeming

Results 18 issues of Richard Deeming

Source project extract: ```xml xcopy "$(TargetPath)" "$(SolutionDir)..\_bin\$(ConfigurationName)\" /y /c xcopy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)..\_bin\$(ConfigurationName)\" /y /c xcopy "$(TargetDir)$(TargetName).xml" "$(SolutionDir)..\_bin\$(ConfigurationName)\" /y /c ``` Expected result: ```xml ``` Actual result: ```xml ... ... xcopy...

I upgraded a .NET Framework 4.8 / ASP.NET MVC 5 application from v2022.5.0 to v2022.6.3 this morning. This also updated SkiaSharp from 2.80.4-preview.9 to 2.88.0, and added a new reference...

**Describe the bug** I have an MVC5 application which is using IMAP to load messages from Office365. The code lists the `UniqueId` and `InternalDate` of the messages in the inbox,...

bug
compatibility
server-bug

The `IFileDialog` interface already defines the [`SetClientGuid`](https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifiledialog-setclientguid) and [`ClearClientData`](https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nf-shobjidl_core-ifiledialog-clearclientdata) methods. Adding a `ClientGuid` property would enable an application to maintain different sets of dialog state for different scenarios, similar to...

# Problem This library currently provides no way to configure the JSON serializer used to serialize the data. This leads to issues such as #48 / #73, and can also...

bug

The `refiddle.com` site seems to have been hijacked by an Indonesian casino scammer. Is this something you are aware of? Google's DNS server returns: ``` Non-authoritative answer: Name: www.refiddle.com Addresses:...

[The page](https://learn.microsoft.com/en-us/ef/core/performance/advanced-performance-topics?tabs=with-di%2Cexpression-api-with-constant#limitations-1) currently lists four limitations for using compiled models: * Global query filters are not supported * Lazy loading and change-tracking proxies are not supported * The model must...

area-model-building

With a touch of PolySharp and a few shim methods, it's possible to get this library working in .NET Standard 2.0, and hence .NET Framework 4.x.

Whilst attempting to implement a custom "retry" policy for sending email, I encountered a misleading exception which I've just spent hours trying to diagnose. The mistake I made was using...

As mentioned on [the MDN documentation](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection), the non-standard `X-XSS-Protection` header *"can create XSS vulnerabilities in otherwise safe websites"*. Even with `mode=block`, it may still leave the site [vulnerable to side-channel...