Skip to content

Commit

Permalink
fix: get 3-series building correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-welker committed May 8, 2024
1 parent f5f275e commit d922084
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/NvxEpi/Devices/Nvx35x.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,6 @@ public StringFeedback UsbLocalId

public ReadOnlyDictionary<uint, StringFeedback> HdcpCapabilityString { get { return _hdmiInputs.HdcpCapabilityString; } }

public ReadOnlyDictionary<uint, StringFeedback> HdcpSupport => _hdmiInputs.HdcpSupport;
public ReadOnlyDictionary<uint, StringFeedback> HdcpSupport { get { return _hdmiInputs.HdcpSupport; } }
}
}
2 changes: 1 addition & 1 deletion src/NvxEpi/Devices/Nvx36X.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,6 @@ public BoolFeedback MuteFeedback

public ReadOnlyDictionary<uint, StringFeedback> HdcpCapabilityString { get { return _hdmiInputs.HdcpCapabilityString; } }

public ReadOnlyDictionary<uint, StringFeedback> HdcpSupport => _hdmiInputs.HdcpSupport;
public ReadOnlyDictionary<uint, StringFeedback> HdcpSupport { get { return _hdmiInputs.HdcpSupport; } }
}
}
2 changes: 1 addition & 1 deletion src/NvxEpi/Devices/NvxE3X.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public ReadOnlyDictionary<uint, StringFeedback> HdrType {

public ReadOnlyDictionary<uint, StringFeedback> HdcpCapabilityString { get { return _hdmiInputs.HdcpCapabilityString; } }

public ReadOnlyDictionary<uint, StringFeedback> HdcpSupport => _hdmiInputs.HdcpSupport;
public ReadOnlyDictionary<uint, StringFeedback> HdcpSupport { get { return _hdmiInputs.HdcpSupport; } }

public void ExecuteSwitch(object inputSelector, object outputSelector, eRoutingSignalType signalType)
{
Expand Down
1 change: 0 additions & 1 deletion src/NvxEpi/Features/Hdmi/Input/HdmiInputBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using Crestron.SimplSharpPro.DM.Streaming;
using NvxEpi.Abstractions;
using NvxEpi.Abstractions.HdmiInput;
using Org.BouncyCastle.Asn1.X509;
using PepperDash.Essentials.Core;

namespace NvxEpi.Features.Hdmi.Input
Expand Down
4 changes: 2 additions & 2 deletions src/NvxEpi/NvxEpi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,8 @@
<Compile Include="Features\AutomaticRouting\AutomaticInputRouter.cs" />
<Compile Include="Features\Config\NvxDirectorConfig.cs" />
<Compile Include="Factories\NvxDirectorFactory.cs" />
<Compile Include="Features\Hdmi\Input\HdmiInput2.cs" />
<Compile Include="Features\Hdmi\Input\HdmiInput.cs" />
<Compile Include="Features\Hdmi\Input\HdmiInputBase.cs" />
<Compile Include="Features\Hdmi\Input\HdmiInput1.cs" />
<Compile Include="Features\Hdmi\Output\HdmiOutput.cs" />
<Compile Include="Features\Hdmi\Output\VideowallModeOutput.cs" />
<Compile Include="Features\InputSwitching\NaxInputSwitcher.cs" />
Expand Down Expand Up @@ -184,6 +183,7 @@
<Compile Include="Services\Feedback\DmHdcpCapabilityValueFeedback.cs" />
<Compile Include="Services\Feedback\DmSyncDetectedFeedback.cs" />
<Compile Include="Services\Feedback\HdmiInputFeedbacks.cs" />
<Compile Include="Services\Feedback\HdmiOutputResolutionFeedback.cs" />
<Compile Include="Services\Feedback\NaxInputValueFeedback.cs" />
<Compile Include="Services\Feedback\DanteInputFeedback.cs" />
<Compile Include="Services\Feedback\DanteInputValueFeedback.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace NvxEpi.Services.Feedback
{
Expand Down

0 comments on commit d922084

Please sign in to comment.