Skip to content

Commit

Permalink
v7.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzd committed Sep 27, 2022
1 parent 721b965 commit 96cc1c5
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 129 deletions.
Binary file modified AntDeploy2022/AntDeployV2/AntDeployApp.exe
Binary file not shown.
40 changes: 17 additions & 23 deletions AntDeploy2022/AntDeployV2/AntDeployApp.exe.config
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>
<defaultProxy enabled="false" useDefaultCredentials="false">
<proxy />
<bypasslist />
<module />
</defaultProxy>
</system.net>
<runtime>
<AppContextSwitchOverrides value="Switch.System.Windows.Forms.DoNotLoadLatestRichEditControl=true" />
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
</startup>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>
<defaultProxy enabled="false" useDefaultCredentials="false">
<proxy/>
<bypasslist/>
<module/>
</defaultProxy>
</system.net>
<runtime>
<AppContextSwitchOverrides value="Switch.System.Windows.Forms.DoNotLoadLatestRichEditControl=true" />
</runtime>
</configuration>
3 changes: 0 additions & 3 deletions AntDeploy2022/AntDeployV2/AntDeployV2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@
<ResourceName>Menus.ctmenu</ResourceName>
</VSCTCompile>
<None Include="Key.snk" />
<Content Include="nlog.config">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
</None>
Expand Down
Binary file modified AntDeploy2022/AntDeployV2/AntDeployWinform.dll
Binary file not shown.
Binary file modified AntDeploy2022/AntDeployV2/NLog.Windows.Forms.dll
Binary file not shown.
Binary file modified AntDeploy2022/AntDeployV2/NLog.dll
Binary file not shown.
101 changes: 0 additions & 101 deletions AntDeploy2022/AntDeployV2/nlog.config

This file was deleted.

2 changes: 1 addition & 1 deletion AntDeploy2022/AntDeployV2/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="2.4" Language="en-US" Publisher="yuzd" />
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="2.5" Language="en-US" Publisher="yuzd" />
<DisplayName>AntDeployV2</DisplayName>
<Description xml:space="preserve">Tools to deploy applications to remote server(iis,windowsService,docker) support netframwork and dotnetcore,support rollback and increment deploy</Description>
<MoreInfo>https://github.com/yuzd</MoreInfo>
Expand Down
1 change: 1 addition & 0 deletions AntDeployAgentService/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ private static void Main(string[] args)

if (isService)
{
Console.WriteLine("Current Version:" + AntDeployAgent.Version.VERSION);
builder.UseWindowsService().Build().Run();
}
else
Expand Down
2 changes: 1 addition & 1 deletion AntDeployWinform/Vsix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public static class Vsix
{
public const string FORM_NAME = "AntDeploy("+VERSION+")";
public const string VERSION = "7.44";
public const string VERSION = "7.45";
public const string AGENTVERSION = "7.1";
public const string PRODUCT = "yuzd";
public const string PACKAGE = "AntDeploy";
Expand Down

0 comments on commit 96cc1c5

Please sign in to comment.