Example #1
0
        public static LookupToken?Create(string fileName)
        {
            using var stream = File.OpenRead(fileName);

            var strongName = StrongNameInfo.Get(stream);

            if (strongName is null)
            {
                return(default);