-Any CPU
-Ignore l(absence de conf midi dans les conduites
This commit is contained in:
parent
49162860fe
commit
edcf3af276
3 changed files with 10 additions and 10 deletions
12
DMX-2.0.sln
12
DMX-2.0.sln
|
|
@ -11,14 +11,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|x86 = Debug|x86
|
Debug|Any CPU = Debug|Any CPU
|
||||||
Release|x86 = Release|x86
|
Release|Any CPU = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Debug|x86.ActiveCfg = Debug|x86
|
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Debug|x86.Build.0 = Debug|x86
|
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Release|x86.ActiveCfg = Release|x86
|
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Release|x86.Build.0 = Release|x86
|
{2CB55300-0A5B-4DFA-8984-B7EC4C455962}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(NestedProjects) = preSolution
|
GlobalSection(NestedProjects) = preSolution
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<ProductVersion>10.0.0</ProductVersion>
|
<ProductVersion>10.0.0</ProductVersion>
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
<ProjectGuid>{2CB55300-0A5B-4DFA-8984-B7EC4C455962}</ProjectGuid>
|
<ProjectGuid>{2CB55300-0A5B-4DFA-8984-B7EC4C455962}</ProjectGuid>
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
<AssemblyName>DMX-2.0</AssemblyName>
|
<AssemblyName>DMX-2.0</AssemblyName>
|
||||||
<ReleaseVersion>2.0</ReleaseVersion>
|
<ReleaseVersion>2.0</ReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
<Commandlineparameters>aguibtn</Commandlineparameters>
|
<Commandlineparameters>aguibtn</Commandlineparameters>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
<OutputPath>bin\Release</OutputPath>
|
<OutputPath>bin\Release</OutputPath>
|
||||||
|
|
|
||||||
|
|
@ -702,7 +702,7 @@ namespace DMX2
|
||||||
|
|
||||||
public void Load (System.Xml.XmlElement el)
|
public void Load (System.Xml.XmlElement el)
|
||||||
{
|
{
|
||||||
|
if(el==null) return;
|
||||||
maxpage = uint.Parse (el.TryGetAttribute ("maxpage", "8"));
|
maxpage = uint.Parse (el.TryGetAttribute ("maxpage", "8"));
|
||||||
|
|
||||||
foreach (var xd in el.GetElementsByTagName("MidiDev")) {
|
foreach (var xd in el.GetElementsByTagName("MidiDev")) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue