Open praeclarum opened 8 years ago
You could include C# 6 support inside your code :) like you have: var args = string.Format ("http add urlacl url={0} user={1}", url, System.Environment.UserDomainName);
could change to: var args = $"http add urlacl url={url} user={System.Environment.UserDomainName}"; or var kt = kv != null ? kv.GetType () : typeof(object); could be var kt = kv?.GetType () ?? typeof(object);
Don't want to look like ф smart-ass, you did a great job.
Nothing much we can do here aside from switching to an assembly based process (see #9).
Let's hope the Inspector team does our work for us.