Skip to content
View axelheer's full-sized avatar
Block or Report

Block or report axelheer

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. nein-linq nein-linq Public

    NeinLinq provides helpful extensions for using LINQ providers such as Entity Framework that support only a minor subset of .NET functions, reusing functions, rewriting queries, even making them nul…

    C# 509 21

  2. nein-math nein-math Public

    NeinMath is playing around with arbitrary precision integers, written in pure managed code, not using any unsafe stuff, and a bit faster than the build-in .NET type for integers with a few thousand…

    C# 16 7

  3. Fake implementation of Entity Framew... Fake implementation of Entity Framework's DbSet for fast unit testing
    1
    using System;
    2
    using System.Collections;
    3
    using System.Collections.Generic;
    4
    using System.ComponentModel.DataAnnotations;
    5
    using System.Data.Entity;
  4. Median extensions for LINQ Median extensions for LINQ
    1
    public static class MedianExtensions
    2
    {
    3
        public static double Median(this IEnumerable<int> source)
    4
        {
    5
            if (source == null)
  5. Generates a `Directory.Packages.prop... Generates a `Directory.Packages.props` based on all your project files
    1
    function ConvertTo-CentralPackageManagement() {
    2
        Write-Host 'Searching for package references'
    3
    
                  
    4
        $packages = @{}
    5
        $conditionalPackages = @{}
  6. Custom *Assembly load context* as *M... Custom *Assembly load context* as *Module assembly initializer* using *Assembly dependency resolver* to load all the things! Solves dependency conflicts of multiple PowerShell modules and honors .deps.json files...
    1
    using System;
    2
    using System.Linq;
    3
    using System.Management.Automation;
    4
    using System.Reflection;
    5
    using System.Runtime.Loader;