File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4949// You can specify all the values or you can default the Build and Revision Numbers
5050// by using the '*' as shown below:
5151// [assembly: AssemblyVersion("1.0.*")]
52- [ assembly: AssemblyVersion ( "0.2.0.0 " ) ]
53- [ assembly: AssemblyFileVersion ( "0.2.0.0 " ) ]
52+ [ assembly: AssemblyVersion ( "0.2.0.1 " ) ]
53+ [ assembly: AssemblyFileVersion ( "0.2.0.1 " ) ]
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ await Task.Run(async () =>
4242 var fileName = Path . GetFileNameWithoutExtension ( filePath ) ;
4343 var extractPath = Path . Combine ( AppHelper . PluginsFolder , fileName ) ;
4444
45- var manifest = await ExtractAndReturnManifest ( extractPath , fileName ) ;
45+ var manifest = await ExtractAndReturnManifest ( extractPath , filePath ) ;
4646
4747 result = new Plugin
4848 {
@@ -76,7 +76,7 @@ await Task.Run(async () =>
7676 var filename = Path . GetFileNameWithoutExtension ( filePath ) ;
7777 var extractPath = Path . Combine ( Path . GetTempPath ( ) , filename ) ;
7878
79- var manifest = await ExtractAndReturnManifest ( filePath , extractPath ) ;
79+ var manifest = await ExtractAndReturnManifest ( extractPath , filePath ) ;
8080
8181 var directory = new DirectoryInfo ( extractPath ) ;
8282 var files = directory . EnumerateFiles ( ) . Select ( x => x . FullName ) . ToArray ( ) ;
@@ -88,7 +88,7 @@ await Task.Run(async () =>
8888 return result ;
8989 }
9090
91- private static async Task < Manifest > ExtractAndReturnManifest ( string filePath , string extractPath )
91+ private static async Task < Manifest > ExtractAndReturnManifest ( string extractPath , string filePath )
9292 {
9393 using ( var zipFile = ZipFile . Read ( filePath ) )
9494 {
You can’t perform that action at this time.
0 commit comments