Search results for query: *

  • Users: JohnH
  • Content: Threads
  • Order by date
  1. JohnH

    my fun year end project

    I had an old application that looks up information online and displays tables in GUI with some user interaction, and decided to rework it. I first split the project in two, View and Update (for scheduling), then decided to make Update a Windows Service. Found many improvements during refactoring...
  2. JohnH

    Resolved Wix bindingRedirect not resolving

    I have a .Net Framework 4.8 Windows Service with a single Nuget package System.Text.Json, there are several transitive dependencies. The service works fine when installed with InstallUtil. Then I create a Wix msi setup and it still installs and runs, but fails at a point trying to resolve a...
  3. JohnH

    amusing fusing

    Thought I'd share this rather funny blog post: Fusing await using and await foreach and await | tabs ↹ over ␣ ␣ ␣ spaces by Jiří {x2} Činčura
  4. JohnH

    React project size

    I tested this and is curious about the size on disk: Use the React project template with ASP.NET Core After creating the project from template the size is 772KB. After building (or 'npm install') that downloads npm dependencies the size is formidable, 238MB, most of it in ClientApp/node_modules...
  5. JohnH

    Have you migrated to nuget PackageReferences?

    Are you using old packages.config or have you migrated to PackageReferences? If your don't know have a look here: Migrate to PackageReference with 3 clicks | The NuGet Blog I know this is rather old news now, but I just discovered this option and have migrated. There were some minor issues, a...
  6. JohnH

    MetadataLoadContext and inheritance

    I'm using MetadataLoadContext to inspect assemblies and wonder if it is possible to detect inheritance for a type? Regular reflections methods IsSubclassOf or IsAssignableFrom does not work. Specifically I would like to check if a type is a delegate without having to do string comparison on the...
  7. JohnH

    Syntax Highlighter - auto C# ?

    The xcode tag for Syntax Highlighter is really great, but I wonder if it is possible to have the C# button in code editor to automatically set xcode to C# instead of the type in dialog? or a dropdown selection list in the dialog for the valid options? I realize it may not be possible for you to...
  8. JohnH

    language filter

    I think you have to take one word out of the language filter, in .Net programming we use lots of ***emblies :)
  9. JohnH

    Resolved WebBrowser.ActiveXInstance and NewWindow3 event

    I "cloned" a VB.Net application to C# and in this I was casting WebBrowser.ActiveXInstance to SHDocVw.WebBrowser to handle the NewWindow3 event, but in the C# app the event no longer worked. After lots of debugging and researching I found that the assembly reference had "Embed Interop Types" set...
Back
Top Bottom