Skip to content

Commit

Permalink
Merge pull request #221 from SainsburyWellcomeCentre/clean-build
Browse files Browse the repository at this point in the history
Remove warnings from CI build
  • Loading branch information
glopesdev authored Jul 18, 2024
2 parents a039c49 + b4bceb2 commit dd8d8f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aeon.Acquisition/MetadataSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void OnNext(TMetadata value)

public virtual IObservable<TMetadata> Process()
{
return subject.ObserveOn(Scheduler.TaskPool);
return subject.ObserveOn(TaskPoolScheduler.Default);
}

public virtual IObservable<Timestamped<TMetadata>> Process(IObservable<HarpMessage> source)
Expand Down
5 changes: 5 additions & 0 deletions src/Aeon.Video/Aeon.Video.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<VersionSuffix></VersionSuffix>
</PropertyGroup>

<PropertyGroup>
<!-- The pylon and spinnaker packages include custom build scripts to deploy multi-architecture dependencies -->
<NoWarn>$(NoWarn);MSB3270</NoWarn>
</PropertyGroup>

<ItemGroup>
<EmbeddedResource Include="**\*.bonsai" />
</ItemGroup>
Expand Down

0 comments on commit dd8d8f6

Please sign in to comment.