File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44using System . IO ;
55using System . IO . Compression ;
66using System . Linq ;
7- using System . Net ;
8- using System . Net . Http ;
9- using System . Net . Http . Headers ;
107using System . Reflection ;
118using System . Security . AccessControl ;
129using System . Security . Principal ;
@@ -19,15 +16,15 @@ internal class DllsUpdater
1916
2017 public class GithubReleaseAsset
2118 {
22- public string name ;
23- public string browser_download_url ;
19+ public string name = null ;
20+ public string browser_download_url = null ;
2421 }
2522
2623 public class GithubRelease
2724 {
28- public string tag_name ;
29- public string html_url ;
30- public GithubReleaseAsset [ ] assets ;
25+ public string tag_name = null ;
26+ public string html_url = null ;
27+ public GithubReleaseAsset [ ] assets = null ;
3128 }
3229
3330 private static string GithubRequestGET ( string uri )
You can’t perform that action at this time.
0 commit comments