Skip to content

Commit fc9da0e

Browse files
committed
Renaming project in files
1 parent 4a17a91 commit fc9da0e

50 files changed

Lines changed: 137 additions & 137 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
dotnet-version: '10.0.x'
2121

2222
- name: Restore dependencies
23-
run: dotnet restore MattSourceGenHelpers.sln
23+
run: dotnet restore EasySourceGenerators.sln
2424

2525
- name: Test
26-
run: dotnet test MattSourceGenHelpers.sln --no-restore --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
26+
run: dotnet test EasySourceGenerators.sln --no-restore --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
2727

2828
- name: Upload coverage to Codecov
2929
uses: codecov/codecov-action@v5

.idea/.idea.MattSourceGenHelpers/.idea/.gitignore

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.run/Examples dotnet 10.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<component name="ProjectRunConfigurationManager">
22
<configuration default="false" name="Examples dotnet 10" type="DotNetFolderPublish" factoryName="Publish to folder">
3-
<riderPublish configuration="Release" platform="Any CPU" target_folder="$PROJECT_DIR$/MattSourceGenHelpers.Examples/bin/Release/net10.0/publish" target_framework="net10.0" uuid_high="2267988728648713066" uuid_low="-8701392894052327047">
3+
<riderPublish configuration="Release" platform="Any CPU" target_folder="$PROJECT_DIR$/EasySourceGenerators.Examples/bin/Release/net10.0/publish" target_framework="net10.0" uuid_high="2267988728648713066" uuid_low="-8701392894052327047">
44
<runtimes>
55
<item value="win-x64" />
66
<item value="win-x86" />

.run/Examples dotnet 8.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<component name="ProjectRunConfigurationManager">
22
<configuration default="false" name="Examples dotnet 8" type="DotNetFolderPublish" factoryName="Publish to folder">
3-
<riderPublish configuration="Release" platform="Any CPU" target_folder="$PROJECT_DIR$/MattSourceGenHelpers.Examples/bin/Release/net8.0/publish" target_framework="net8.0" uuid_high="2267988728648713066" uuid_low="-8701392894052327047">
3+
<riderPublish configuration="Release" platform="Any CPU" target_folder="$PROJECT_DIR$/EasySourceGenerators.Examples/bin/Release/net8.0/publish" target_framework="net8.0" uuid_high="2267988728648713066" uuid_low="-8701392894052327047">
44
<runtimes>
55
<item value="win-x64" />
66
<item value="win-x86" />
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("MattSourceGenHelpers.Tests")]
2-
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("MattSourceGenHelpers.Generators")]
1+
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("EasySourceGenerators.Tests")]
2+
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("EasySourceGenerators.Generators")]

MattSourceGenHelpers.Abstractions/Generate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using JetBrains.Annotations;
22

3-
namespace MattSourceGenHelpers.Abstractions;
3+
namespace EasySourceGenerators.Abstractions;
44

55
public static class Generate
66
{

MattSourceGenHelpers.Abstractions/GeneratesMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using JetBrains.Annotations;
22

3-
namespace MattSourceGenHelpers.Abstractions;
3+
namespace EasySourceGenerators.Abstractions;
44

55
[AttributeUsage(AttributeTargets.Method, Inherited = false)]
66
[MeansImplicitUse(ImplicitUseKindFlags.Access, ImplicitUseTargetFlags.WithMembers)]

MattSourceGenHelpers.Abstractions/IGeneratorsFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MattSourceGenHelpers.Abstractions;
1+
namespace EasySourceGenerators.Abstractions;
22

33
public interface IGeneratorsFactory
44
{

MattSourceGenHelpers.Abstractions/IMethodBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MattSourceGenHelpers.Abstractions;
1+
namespace EasySourceGenerators.Abstractions;
22

33
public interface IMethodBuilder
44
{

MattSourceGenHelpers.Abstractions/IMethodImplementationGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using JetBrains.Annotations;
22

3-
namespace MattSourceGenHelpers.Abstractions;
3+
namespace EasySourceGenerators.Abstractions;
44

55
public interface IMethodImplementationGenerator<[UsedImplicitly] TReturnType> : IMethodImplementationGenerator
66
{

0 commit comments

Comments
 (0)