Fix tests not working due to naming

This commit is contained in:
Dan Balasescu
2023-05-26 11:51:49 +09:00
parent 9959f2cbcd
commit 173bf19263
8 changed files with 15 additions and 15 deletions

View File

@@ -7,7 +7,7 @@ using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace osu.Framework.SourceGeneration.Generators.Input
namespace osu.Framework.SourceGeneration.Generators.HandleInput
{
public class HandleInputSemanticTarget : IncrementalSemanticTarget
{

View File

@@ -5,11 +5,11 @@ using System.Collections.Generic;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace osu.Framework.SourceGeneration.Generators.Input
namespace osu.Framework.SourceGeneration.Generators.HandleInput
{
public class HandleInputSourceEmitter : IncrementalSourceEmitter
{
private const string interface_name = "global::osu.Framework.Input.ISourceGeneratedInputCache";
private const string interface_name = "global::osu.Framework.Input.ISourceGeneratedHandleInputCache";
protected override string FileSuffix => "HandleInput";

View File

@@ -4,7 +4,7 @@
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace osu.Framework.SourceGeneration.Generators.Input
namespace osu.Framework.SourceGeneration.Generators.HandleInput
{
[Generator]
public class HandleInputSourceGenerator : AbstractIncrementalGenerator