diff --git a/SabreTools.DatFiles/DatFile.Filtering.cs b/SabreTools.DatFiles/DatFile.Filtering.cs
index f8131670..3077b4de 100644
--- a/SabreTools.DatFiles/DatFile.Filtering.cs
+++ b/SabreTools.DatFiles/DatFile.Filtering.cs
@@ -84,6 +84,7 @@ namespace SabreTools.DatFiles
///
/// Create machine to description mapping dictionary
///
+ /// Applies to
private IDictionary CreateMachineToDescriptionMapping()
{
#if NET40_OR_GREATER || NETCOREAPP
@@ -139,6 +140,7 @@ namespace SabreTools.DatFiles
///
/// Create machine to description mapping dictionary
///
+ /// Applies to
private Dictionary CreateMachineToDescriptionMappingDB()
{
Dictionary mapping = [];
@@ -165,6 +167,7 @@ namespace SabreTools.DatFiles
/// Use game descriptions as names, updating cloneof/romof/sampleof
///
/// True if the error that is thrown should be thrown back to the caller, false otherwise
+ /// Applies to
private void MachineDescriptionToNameImpl(bool throwOnError = false)
{
try
@@ -185,6 +188,7 @@ namespace SabreTools.DatFiles
/// Use game descriptions as names, updating cloneof/romof/sampleof
///
/// True if the error that is thrown should be thrown back to the caller, false otherwise
+ /// Applies to
private void MachineDescriptionToNameImplDB(bool throwOnError = false)
{
try
@@ -215,6 +219,7 @@ namespace SabreTools.DatFiles
/// to clone sets based on name, nor does it have the ability to match on the
/// Release DatItem type.
///
+ /// Applies to
private void SetOneGamePerRegionImpl(List regionList)
{
// If we have null region list, make it empty
@@ -308,6 +313,7 @@ namespace SabreTools.DatFiles
/// to clone sets based on name, nor does it have the ability to match on the
/// Release DatItem type.
///
+ /// Applies to
private void SetOneGamePerRegionImplDB(List regionList)
{
// If we have null region list, make it empty
@@ -397,6 +403,7 @@ namespace SabreTools.DatFiles
///
/// Ensure that all roms are in their own game (or at least try to ensure)
///
+ /// Applies to
private void SetOneRomPerGameImpl()
{
// For each rom, we want to update the game to be "/"
@@ -431,6 +438,7 @@ namespace SabreTools.DatFiles
/// Set internal names to match One Rom Per Game (ORPG) logic
///
/// DatItem to run logic on
+ /// Applies to
private static void SetOneRomPerGameImpl(DatItem datItem)
{
// If the item name is null
@@ -462,6 +470,7 @@ namespace SabreTools.DatFiles
///
/// Ensure that all roms are in their own game (or at least try to ensure)
///
+ /// Applies to
private void SetOneRomPerGameImplDB()
{
// For each rom, we want to update the game to be "/"
@@ -496,6 +505,7 @@ namespace SabreTools.DatFiles
/// Set internal names to match One Rom Per Game (ORPG) logic
///
/// DatItem to run logic on
+ /// Applies to
private void SetOneRomPerGameImplDB(KeyValuePair datItem)
{
// If the item name is null
@@ -527,6 +537,7 @@ namespace SabreTools.DatFiles
///
/// Strip the dates from the beginning of scene-style set names
///
+ /// Applies to
private void StripSceneDatesFromItemsImpl()
{
// Now process all of the roms
@@ -570,6 +581,7 @@ namespace SabreTools.DatFiles
///
/// Strip the dates from the beginning of scene-style set names
///
+ /// Applies to
private void StripSceneDatesFromItemsImplDB()
{
// Now process all of the machines
@@ -604,6 +616,7 @@ namespace SabreTools.DatFiles
///
/// Update machine names from descriptions according to mappings
///
+ /// Applies to
private void UpdateMachineNamesFromDescriptions(IDictionary mapping)
{
#if NET452_OR_GREATER || NETCOREAPP
@@ -661,6 +674,7 @@ namespace SabreTools.DatFiles
///
/// Update machine names from descriptions according to mappings
///
+ /// Applies to
private void UpdateMachineNamesFromDescriptionsDB(Dictionary mapping)
{
foreach (var machine in GetMachinesDB())