We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d7548 commit 5bca5b9Copy full SHA for 5bca5b9
modifier/Script.cs
@@ -1,7 +1,5 @@
1
using System;
2
using System.Collections.Generic;
3
-using System.Linq;
4
-using System.Runtime.CompilerServices;
5
6
namespace Schneegans.Unattend;
7
@@ -51,7 +49,7 @@ record class ScriptId(string FullName, string Key);
51
49
52
50
private ScriptId NewScriptId(Script script)
53
{
54
- string name = $"unattend-{++count:X2}";
+ string name = $"unattend-{++count:x2}";
55
string extension = script.Type.ToString().ToLowerInvariant();
56
return new ScriptId(@$"{ScriptsDirectory}\{name}.{extension}", name);
57
}
0 commit comments