Skip to content

Commit 98e5c1c

Browse files
authored
Merge pull request #12 from SubZeroPL/chdman-fix
Chdman fix
2 parents edcd384 + 2a81288 commit 98e5c1c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

AssM.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<Nullable>enable</Nullable>
66
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
77
<ApplicationManifest>app.manifest</ApplicationManifest>
8-
<Version>1.4.2</Version>
8+
<Version>1.4.3</Version>
99
<Authors>SubZeroPL</Authors>
1010
<PackageProjectUrl>https://github.com/SubZeroPL/AssM/</PackageProjectUrl>
11-
<AssemblyVersion>1.4.2</AssemblyVersion>
12-
<FileVersion>1.4.2</FileVersion>
11+
<AssemblyVersion>1.4.3</AssemblyVersion>
12+
<FileVersion>1.4.3</FileVersion>
13+
<Title>AssM</Title>
1314
</PropertyGroup>
1415

1516
<ItemGroup>

Classes/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public static partial class Constants
99
private static bool IsWindows() =>
1010
RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
1111

12-
public static readonly string ChdMan = Path.Combine("Tools", "chdman", IsWindows() ? ".exe" : "");
12+
public static readonly string ChdMan = string.Join("", Path.Combine("Tools", "chdman"), IsWindows() ? ".exe" : "");
1313
public const string ChdManInfo = """
1414
info -i "{0}"
1515
""";

0 commit comments

Comments
 (0)