Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
Setup
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄树航
Setup
Commits
8c98bccf
Commit
8c98bccf
authored
Jul 26, 2024
by
黄树航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工具类换成internal
parent
1742c880
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
16 deletions
+9
-16
App.xaml.cs
App.xaml.cs
+1
-2
DirectoryHelper.cs
Common/DirectoryHelper.cs
+1
-1
DownloadWebClient.cs
Common/DownloadWebClient.cs
+1
-5
Encrypt.cs
Common/Encrypt.cs
+2
-2
ProcessHelper.cs
Common/ProcessHelper.cs
+1
-2
RegeditHelper.cs
Common/RegeditHelper.cs
+1
-1
Utils.cs
Common/Utils.cs
+1
-1
XmlHelper.cs
Common/XmlHelper.cs
+1
-1
ProgressView.xaml.cs
View/ProgressView.xaml.cs
+0
-1
No files found.
App.xaml.cs
View file @
8c98bccf
using
System.IO
;
using
System.Windows
;
using
System.Windows
;
namespace
Dqkj.Setup
{
...
...
Common/DirectoryHelper.cs
View file @
8c98bccf
...
...
@@ -4,7 +4,7 @@ using System.IO;
namespace
Dqkj.Setup.Common
{
public
class
DirectoryHelper
internal
class
DirectoryHelper
{
public
static
void
CopyDirectory
(
string
srcPath
,
string
destPath
)
{
...
...
Common/DownloadWebClient.cs
View file @
8c98bccf
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Net
;
using
System.Text
;
using
System.Threading.Tasks
;
using
System.Windows.Forms
;
namespace
AutoDownload.Common
{
public
class
DownloadWebClient
:
WebClient
internal
class
DownloadWebClient
:
WebClient
{
protected
override
WebRequest
GetWebRequest
(
Uri
address
)
{
...
...
Common/Encrypt.cs
View file @
8c98bccf
...
...
@@ -5,7 +5,7 @@ using System.Text;
namespace
Dqkj.Setup
{
public
static
class
Encrypt
internal
static
class
Encrypt
{
static
DES
des
=
new
DES
();
static
string
key
=
"GZCZKJABCDEFG001"
;
...
...
@@ -21,7 +21,7 @@ namespace Dqkj.Setup
}
}
public
class
DES
internal
class
DES
{
public
DES
()
{
...
...
Common/ProcessHelper.cs
View file @
8c98bccf
using
System.Diagnostics
;
using
System.Windows
;
namespace
Dqkj.Setup.Common
{
public
class
ProcessHelper
internal
class
ProcessHelper
{
public
static
void
KillProcess
(
string
name
)
{
...
...
Common/RegeditHelper.cs
View file @
8c98bccf
...
...
@@ -3,7 +3,7 @@ using System;
namespace
Dqkj.Setup.Common
{
public
class
RegeditHelper
internal
class
RegeditHelper
{
public
static
void
UninstallDelete
(
string
uninstallName
)
{
...
...
Common/Utils.cs
View file @
8c98bccf
...
...
@@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace
Dqkj.Setup
{
public
class
Utils
internal
class
Utils
{
public
static
string
GetMD5
(
byte
[]
data
)
{
...
...
Common/XmlHelper.cs
View file @
8c98bccf
...
...
@@ -3,7 +3,7 @@ using System.Xml.Serialization;
namespace
Dqkj.Setup
{
public
class
XmlHelper
internal
class
XmlHelper
{
#
region
反序列化
...
...
View/ProgressView.xaml.cs
View file @
8c98bccf
using
AutoDownload.Common
;
using
Dqkj.Setup.Common
;
using
Dqkj.Setup.View
;
using
Setup.Common
;
using
System
;
using
System.Collections.Generic
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment