Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit 2298fa1

Browse files
committed
Version & formatting
1 parent e4b5b36 commit 2298fa1

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

DatapathFix/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
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")]

DatapathFixPlugin/Actions/LaunchExecutionAction.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

DatapathFixPlugin/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using DatapathFixPlugin.Options;
55
using System.Runtime.InteropServices;
66
using 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
@@ -25,10 +24,7 @@
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))]

0 commit comments

Comments
 (0)