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

Block or report axelheer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  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# 502 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# 15 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;