Skip to content

Commit b9bdc3c

Browse files
authored
Merge pull request #467 from open-ephys/fix-xml-plurals
Fix link text for plurals in xml comments
2 parents 11c0648 + 8726c07 commit b9bdc3c

File tree

10 files changed

+18
-17
lines changed

10 files changed

+18
-17
lines changed

OpenEphys.Onix1.Design/OpenEphys.Onix1.Design.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<Platforms>x64</Platforms>
1010
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
1111
<ForceDesignerDPIUnaware>true</ForceDesignerDPIUnaware>
12+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1213
</PropertyGroup>
1314

1415
<ItemGroup>

OpenEphys.Onix1/NeuropixelsV1eProbeGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private static Probe[] DefaultProbes()
4848
/// </remarks>
4949
/// <param name="specification">String defining the <see cref="ProbeGroup.Specification"/>.</param>
5050
/// <param name="version">String defining the <see cref="ProbeGroup.Version"/>.</param>
51-
/// <param name="probes">Array of <see cref="Probe"/>s.</param>
51+
/// <param name="probes">Array of <see cref="Probe">Probes</see>.</param>
5252
[JsonConstructor]
5353
public NeuropixelsV1eProbeGroup(string specification, string version, Probe[] probes)
5454
: base(specification, version, probes)

OpenEphys.Onix1/NeuropixelsV2eData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ public class NeuropixelsV2eData : Source<NeuropixelsV2eDataFrame>
4646
public NeuropixelsV2Probe ProbeIndex { get; set; }
4747

4848
/// <summary>
49-
/// Generates a sequence of <see cref="NeuropixelsV2eDataFrame"/>s.
49+
/// Generates a sequence of <see cref="NeuropixelsV2eDataFrame">NeuropixelsV2eDataFrames</see>.
5050
/// </summary>
51-
/// <returns>A sequence of <see cref="NeuropixelsV2eDataFrame"/>s.</returns>
51+
/// <returns>A sequence of <see cref="NeuropixelsV2eDataFrame">NeuropixelsV2eDataFrames</see>.</returns>
5252
public unsafe override IObservable<NeuropixelsV2eDataFrame> Generate()
5353
{
5454
var bufferSize = BufferSize;

OpenEphys.Onix1/NeuropixelsV2eProbeGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ private static Probe[] DefaultProbes()
5757
/// </remarks>
5858
/// <param name="specification">String defining the <see cref="ProbeGroup.Specification"/>.</param>
5959
/// <param name="version">String defining the <see cref="ProbeGroup.Version"/>.</param>
60-
/// <param name="probes">Array of <see cref="Probe"/>s.</param>
60+
/// <param name="probes">Array of <see cref="Probe">Probes</see>.</param>
6161
[JsonConstructor]
6262
public NeuropixelsV2eProbeGroup(string specification, string version, Probe[] probes)
6363
: base(specification, version, probes)

OpenEphys.Onix1/OpenEphys.Onix1.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<TargetFramework>net472</TargetFramework>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
99
<Platforms>x64</Platforms>
10+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1011
</PropertyGroup>
1112

1213
<ItemGroup>

OpenEphys.Onix1/Rhs2116Data.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public class Rhs2116Data : Source<Rhs2116DataFrame>
3737
public int BufferSize { get; set; } = 30;
3838

3939
/// <summary>
40-
/// Generates a sequence of <see cref="Rhs2116DataFrame"/>s.
40+
/// Generates a sequence of <see cref="Rhs2116DataFrame">Rhs2116DataFrames</see>.
4141
/// </summary>
42-
/// <returns>A sequence of <see cref="Rhs2116DataFrame"/>s.</returns>
42+
/// <returns>A sequence of <see cref="Rhs2116DataFrame">Rhs2116DataFrames</see>.</returns>
4343
public unsafe override IObservable<Rhs2116DataFrame> Generate()
4444
{
4545
var bufferSize = BufferSize;

OpenEphys.Onix1/Rhs2116PairData.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ namespace OpenEphys.Onix1
1212
/// <summary>
1313
/// Produces a sequence of <see cref="Rhs2116PairDataFrame"/> objects from a synchronized pair of Intan
1414
/// Rhs2116 bidirectional bioacquisition chips.
15-
/// chips.
1615
/// </summary>
1716
/// <remarks>
1817
/// This data IO operator must be linked to an appropriate configuration, such as a <see
@@ -37,9 +36,9 @@ public class Rhs2116PairData : Source<Rhs2116PairDataFrame>
3736
public int BufferSize { get; set; } = 30;
3837

3938
/// <summary>
40-
/// Generates a sequence of <see cref="Rhs2116PairDataFrame"/>s.
39+
/// Generates a sequence of <see cref="Rhs2116PairDataFrame">Rhs2116PairDataFrames</see>.
4140
/// </summary>
42-
/// <returns>A sequence of <see cref="Rhs2116PairDataFrame"/>s.</returns>
41+
/// <returns>A sequence of <see cref="Rhs2116PairDataFrame">Rhs2116PairDataFrames</see>.</returns>
4342
public unsafe override IObservable<Rhs2116PairDataFrame> Generate()
4443
{
4544
var bufferSize = BufferSize;

OpenEphys.Onix1/Rhs2116ProbeGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ private static Probe[] DefaultProbes()
6666
/// </remarks>
6767
/// <param name="specification">String defining the <see cref="ProbeGroup.Specification"/>.</param>
6868
/// <param name="version">String defining the <see cref="ProbeGroup.Version"/>.</param>
69-
/// <param name="probes">Array of <see cref="Probe"/>s.</param>
69+
/// <param name="probes">Array of <see cref="Probe">Probes</see>.</param>
7070
[JsonConstructor]
7171
public Rhs2116ProbeGroup(string specification, string version, Probe[] probes)
7272
: base(specification, version, probes)

OpenEphys.Onix1/Rhs2116TriggerData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ public class Rhs2116TriggerData : Source<Rhs2116TriggerDataFrame>
2424
public string DeviceName { get; set; }
2525

2626
/// <summary>
27-
/// Generates a sequence of <see cref="Rhs2116TriggerDataFrame"/>s.
27+
/// Generates a sequence of <see cref="Rhs2116TriggerDataFrame">Rhs2116TriggerDataFrames</see>.
2828
/// </summary>
29-
/// <returns>A sequence of <see cref="Rhs2116TriggerDataFrame"/>s.</returns>
29+
/// <returns>A sequence of <see cref="Rhs2116TriggerDataFrame">Rhs2116TriggerDataFrames</see>.</returns>
3030
public override IObservable<Rhs2116TriggerDataFrame> Generate()
3131
{
3232
return DeviceManager.GetDevice(DeviceName).SelectMany(deviceInfo =>

OpenEphys.Onix1/UclaMiniscopeV4CameraData.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
namespace OpenEphys.Onix1
1111
{
1212
/// <summary>
13-
/// Produces a sequence of <see cref="UclaMiniscopeV4CameraFrame"/>s from the Python-480 image sensor on a
14-
/// UCLA Miniscope V4.
13+
/// Produces a sequence of <see cref="UclaMiniscopeV4CameraFrame">UclaMiniscopeV4CameraFrames</see> from
14+
/// the Python-480 image sensor on a UCLA Miniscope V4.
1515
/// </summary>
1616
public class UclaMiniscopeV4CameraData : Source<UclaMiniscopeV4CameraFrame>
1717
{
@@ -38,10 +38,10 @@ public class UclaMiniscopeV4CameraData : Source<UclaMiniscopeV4CameraFrame>
3838
public UclaMiniscopeV4ImageDepth DataType { get; set; } = UclaMiniscopeV4ImageDepth.U8;
3939

4040
/// <summary>
41-
/// Generates a sequence of <see cref="UclaMiniscopeV4CameraFrame"/>s at a rate determined by <see
42-
/// cref="ConfigureUclaMiniscopeV4Camera.FrameRate"/>.
41+
/// Generates a sequence of <see cref="UclaMiniscopeV4CameraFrame">UclaMiniscopeV4CameraFrames</see>
42+
/// at a rate determined by <see cref="ConfigureUclaMiniscopeV4Camera.FrameRate"/>.
4343
/// </summary>
44-
/// <returns>A sequence of <see cref="UclaMiniscopeV4CameraFrame"/>s</returns>
44+
/// <returns>A sequence of <see cref="UclaMiniscopeV4CameraFrame">UclaMiniscopeV4CameraFrames</see></returns>
4545
public unsafe override IObservable<UclaMiniscopeV4CameraFrame> Generate()
4646
{
4747
return DeviceManager.GetDevice(DeviceName).SelectMany(deviceInfo =>

0 commit comments

Comments
 (0)