Tango/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/f0e82eb3e38d001a12adc74468436fd9, branch software Twine softwares http://git.tvcloud.fr/Tango/atom/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/f0e82eb3e38d001a12adc74468436fd9?h=software 2020-05-06T07:21:51Z whs blower-convert the command to 12bit : 5V 2020-05-06T07:21:51Z Avi Levkovich avi@twine-s.com 2020-05-06T07:21:51Z urn:sha1:5873787311501663cfb4c380c15e731e2fb9a28d
using RazorEngine.Compilation;
using RazorEngine.Compilation.ReferenceResolver;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.CodeGeneration
{
    internal class CustomResolver : IReferenceResolver
    {
        public IEnumerable<CompilerReference> GetReferences(TypeContext context, IEnumerable<CompilerReference> includeAssemblies)
        {
            return new UseCurrentAssembliesReferenceResolver()
                        .GetReferences(context, includeAssemblies)
                        .Where(f => !f.GetFile().EndsWith(".winmd"));
        }
    }
}