Skip to content

Commit f0ac865

Browse files
committed
v7.50 修复推送镜像仓库不支持http协议的问题
1 parent 74f6c4d commit f0ac865

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
0 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.

AntDeploy2022/AntDeployV2/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="2.9" Language="en-US" Publisher="yuzd" />
4+
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="3.0" Language="en-US" Publisher="yuzd" />
55
<DisplayName>AntDeployV2</DisplayName>
66
<Description xml:space="preserve">Tools to deploy applications to remote server(iis,windowsService,docker) support netframwork and dotnetcore,support rollback and increment deploy</Description>
77
<MoreInfo>https://github.com/yuzd</MoreInfo>

AntDeployWinform/Util/CommandHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,8 @@ private static bool RunDotnetExternalExe(string projectPath, string fileName, st
276276
pr = new BuildProgress(logger);
277277
}
278278
//执行dotnet命令如果 projectdir路径含有空格 或者 outDir 路径含有空格 都是没有问题的
279-
279+
280280
process = new Process();
281-
282281
process.StartInfo.WorkingDirectory = projectPath;
283282
process.StartInfo.FileName = fileName;
284283
process.StartInfo.Arguments = arguments;
@@ -288,7 +287,8 @@ private static bool RunDotnetExternalExe(string projectPath, string fileName, st
288287
process.StartInfo.Verb = "runas";
289288
process.StartInfo.RedirectStandardError = true;
290289
process.StartInfo.RedirectStandardOutput = true;
291-
290+
process.StartInfo.StandardOutputEncoding = Encoding.UTF8;
291+
process.StartInfo.StandardErrorEncoding = Encoding.UTF8;
292292

293293

294294
process.Start();

AntDeployWinform/Vsix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public static class Vsix
44
{
55
public const string FORM_NAME = "AntDeploy("+VERSION+")";
6-
public const string VERSION = "7.48";
6+
public const string VERSION = "7.50";
77
public const string AGENTVERSION = "7.1";
88
public const string PRODUCT = "yuzd";
99
public const string PACKAGE = "AntDeploy";

0 commit comments

Comments
 (0)