Skip to content

Commit

Permalink
rename target
Browse files Browse the repository at this point in the history
  • Loading branch information
yibei333 committed Sep 27, 2024
1 parent 4e4fd04 commit 93d6dad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
2 changes: 1 addition & 1 deletion src/SingleExe.Tool/BuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ void CopyFileToTarget(IConsole console, string tempFolder)
var fileName = EntrypointPath.GetFileName();
var filePath = tempFolder.CombinePath($"bin\\Release\\net472\\{fileName}");
Output.CreateDirectoryIfNotExist();
var targetPath = Output.CombinePath(fileName);
var targetPath = Output.CombinePath($"{Name}.exe");
File.Copy(filePath, targetPath, true);
console.WriteSuccess($"生成成功,文件位置'{targetPath}'");
}
Expand Down
2 changes: 1 addition & 1 deletion src/SingleExe.Tool/SingleExe.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<PackageReadmeFile>Nuget.md</PackageReadmeFile>
<AssemblyName>single-exe</AssemblyName>
Expand Down

0 comments on commit 93d6dad

Please sign in to comment.