Skip to content

Commit 48110c5

Browse files
GroteGrote
Grote
authored and
Grote
committedNov 2, 2017
Fixes for DMXC3.1.1
Martin, please Build it and Commit a new packed Plugin
1 parent b80131b commit 48110c5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎MidiPlugin.Rules/MidiPlugin.Rules.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>MidiPlugin.Rules</RootNamespace>
1111
<AssemblyName>MidiPlugin.Rules</AssemblyName>
12-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>

‎MidiPlugin.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<OutputType>Library</OutputType>
88
<AssemblyName>MidiPlugin</AssemblyName>
9-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
9+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1010
<WarningLevel>4</WarningLevel>
1111
<TargetFrameworkProfile>
1212
</TargetFrameworkProfile>

‎MidiPlugin/Utilities/ExecutorWindowHelper.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -487,8 +487,8 @@ internal void RegisterSettings()
487487
{
488488
settings.registerGuiSetting(new SettingsMetadata(ESettingsRegisterType.APPLICATION, "Executor", null, "Dynamic Executor " + (i + 1) + ": Tolerance", "MPL.EXECFG" + i, "", null)
489489
{
490-
MinDouble = 0,
491-
MaxDouble = 1
490+
Min = 0,
491+
Max = 1
492492
}, dynExecutors[i].Tolerance);
493493
}
494494

0 commit comments

Comments
 (0)
Please sign in to comment.