Skip to content

Commit ea651cb

Browse files
committed
Don't add unnecessary exe suffix
1 parent 7c2fb0e commit ea651cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileApp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ public void It_codesigns_an_app_targeting_osx(string rid, bool? enableMacOSCodeS
11811181
.Pass();
11821182

11831183
var publishDir = GetPublishDirectory(publishCommand, targetFramework, runtimeIdentifier: rid).FullName;
1184-
var singleFilePath = Path.Combine(publishDir, $"{testProject.Name}{Constants.ExeSuffix}");
1184+
var singleFilePath = Path.Combine(publishDir, testProject.Name);
11851185

11861186
bool shouldBeSigned = enableMacOSCodeSign ?? CodesignsByDefault;
11871187

0 commit comments

Comments
 (0)