Skip to content

Instantly share code, notes, and snippets.

View luuksommers's full-sized avatar

Luuk Sommers luuksommers

View GitHub Profile
@luuksommers
luuksommers / TypeMemberLayout.xaml
Last active February 26, 2026 13:02 — forked from collinbarrett/TypeMemberLayout.xaml
CalderCop's Awesome File Layout for Rider
<?xml version="1.0" encoding="utf-16"?>
<Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns">
<TypePattern DisplayName="Non-reorderable types" Priority="99999999">
<TypePattern.Match>
<Or>
<And>
<Kind Is="Interface" />
<Or>
<HasAttribute Name="System.Runtime.InteropServices.InterfaceTypeAttribute" />
@luuksommers
luuksommers / transform-xml.ps1
Created May 25, 2018 11:39 — forked from sayedihashimi/transform-xml.ps1
Script which can be used to transform an XML file using XDT. All you need to do is download the script and call it. The script will download the files it needs to run.
<#
.SYNOPSIS
You can use this script to easly transform any XML file using XDT.
To use this script you can just save it locally and execute it. The script
will download it's dependencies automatically.
#>
[cmdletbinding()]
param(
[Parameter(
Mandatory=$true,