This repository was archived by the owner on Jan 20, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 3535// You can specify all the values or you can default the Build and Revision Numbers
3636// by using the '*' as shown below:
3737// [assembly: AssemblyVersion("1.0.*")]
38- [ assembly: AssemblyVersion ( "1.5.1 " ) ]
38+ [ assembly: AssemblyVersion ( "1.6.0 " ) ]
Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ namespace DatapathFixPlugin.Actions
1818{
1919 public class LaunchExecutionAction : ExecutionAction
2020 {
21- public string FSBasePath {
22- get {
21+ public string FSBasePath
22+ {
23+ get
24+ {
2325 dynamic fileSystem = typeof ( App ) . GetField ( "FileSystem" ) ? . GetValue ( this ) ?? typeof ( App ) . GetField ( "FileSystemManager" ) ? . GetValue ( this ) ;
2426 return fileSystem . BasePath ;
2527 }
Original file line number Diff line number Diff line change 44using DatapathFixPlugin . Options ;
55using System . Runtime . InteropServices ;
66using System . Windows ;
7- using System . Reflection ;
87
98// Setting ComVisible to false makes the types in this assembly not visible
109// to COM components. If you need to access a type in this assembly from
2524
2625[ assembly: PluginDisplayName ( "DatapathFix" ) ]
2726[ assembly: PluginAuthor ( "Dyvinia" ) ]
28- [ assembly: PluginVersion ( "1.5.1 " ) ]
27+ [ assembly: PluginVersion ( "1.6.0 " ) ]
2928
3029[ assembly: RegisterOptionsExtension ( typeof ( LaunchOptions ) , PluginManagerType . Both ) ]
31- [ assembly: RegisterExecutionAction ( typeof ( LaunchExecutionAction ) ) ]
32-
33- // This is to specify which version of Frosty this is for
34- [ assembly: AssemblyFileVersion ( "1.0.6" ) ]
30+ [ assembly: RegisterExecutionAction ( typeof ( LaunchExecutionAction ) ) ]
You can’t perform that action at this time.
0 commit comments