├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── dotnet.yml │ ├── merge.yml │ └── stale.yml ├── .gitignore ├── Directory.Packages.props ├── Injectio.slnx ├── LICENSE ├── README.md ├── coverlet.runsettings ├── logo.png ├── media └── Injectio.Genertors.png ├── src ├── Directory.Build.props ├── Injectio.Attributes │ ├── DuplicateStrategy.cs │ ├── Injectio.Attributes.csproj │ ├── RegisterAttribute.cs │ ├── RegisterScopedAttribute.cs │ ├── RegisterServicesAttribute.cs │ ├── RegisterSingletonAttribute.cs │ ├── RegisterTransientAttribute.cs │ └── RegistrationStrategy.cs └── Injectio.Generators │ ├── EquatableArray.cs │ ├── Extensions │ ├── EnumerableExtensions.cs │ └── StringExtensions.cs │ ├── IndentedStringBuilder.cs │ ├── Injectio.Generators.csproj │ ├── Injectio.targets │ ├── IsExternalInit.cs │ ├── KnownTypes.cs │ ├── MethodOptions.cs │ ├── ModuleRegistration.cs │ ├── Properties │ └── launchSettings.json │ ├── ServiceRegistration.cs │ ├── ServiceRegistrationContext.cs │ ├── ServiceRegistrationGenerator.cs │ └── ServiceRegistrationWriter.cs └── tests ├── Injectio.Acceptance.Tests ├── DependencyInjectionBase.cs ├── DependencyInjectionCollection.cs ├── DependencyInjectionFixture.cs ├── Injectio.Acceptance.Tests.csproj ├── LibraryServiceTests.cs ├── LocalServiceTests.cs └── Services │ ├── LocalService.cs │ ├── ServiceRegistration.cs │ └── ServiceRegistrationInstance.cs ├── Injectio.Tests.Console ├── Injectio.Tests.Console.csproj └── Program.cs ├── Injectio.Tests.Library ├── Injectio.Tests.Library.csproj └── Service.cs └── Injectio.Tests ├── Injectio.Tests.csproj ├── ServiceRegistrationGeneratorTests.cs ├── ServiceRegistrationWriterTests.cs └── Snapshots ├── ServiceRegistrationGeneratorTests.GenerateRegisterMixedWithInterfaces.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterScopedKeyedSelfWithInterfaces.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterScopedSelfWithInterfaces.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterServicesInstance.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterServicesInvalidMethod.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterServicesInvalidService.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterServicesStatic.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonFactory.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonFactoryInvalid.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonGeneric.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonImplementedInterfaces.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonImplementedInterfacesMultiple.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonOpenGeneric.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfAsClosedGeneric.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfAsOpenGeneric.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfWithInterfaces.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonServiceKeys.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterSingletonTags.verified.txt ├── ServiceRegistrationGeneratorTests.GenerateRegisterTransientSelfWithInterfaces.verified.txt ├── ServiceRegistrationWriterTests.GenerateExtensionClassScopedAppend.verified.txt ├── ServiceRegistrationWriterTests.GenerateExtensionClassSingleton.verified.txt ├── ServiceRegistrationWriterTests.GenerateExtensionClassSingletonMultiple.verified.txt ├── ServiceRegistrationWriterTests.GenerateExtensionClassSingletonTags.verified.txt └── ServiceRegistrationWriterTests.GenerateExtensionClassTransientReplace.verified.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: loresoft 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/.github/workflows/merge.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Injectio.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/Injectio.slnx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/README.md -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/logo.png -------------------------------------------------------------------------------- /media/Injectio.Genertors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/media/Injectio.Genertors.png -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Injectio.Attributes/DuplicateStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/DuplicateStrategy.cs -------------------------------------------------------------------------------- /src/Injectio.Attributes/Injectio.Attributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/Injectio.Attributes.csproj -------------------------------------------------------------------------------- /src/Injectio.Attributes/RegisterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/RegisterAttribute.cs -------------------------------------------------------------------------------- /src/Injectio.Attributes/RegisterScopedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/RegisterScopedAttribute.cs -------------------------------------------------------------------------------- /src/Injectio.Attributes/RegisterServicesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/RegisterServicesAttribute.cs -------------------------------------------------------------------------------- /src/Injectio.Attributes/RegisterSingletonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/RegisterSingletonAttribute.cs -------------------------------------------------------------------------------- /src/Injectio.Attributes/RegisterTransientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/RegisterTransientAttribute.cs -------------------------------------------------------------------------------- /src/Injectio.Attributes/RegistrationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Attributes/RegistrationStrategy.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/EquatableArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/EquatableArray.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/IndentedStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/IndentedStringBuilder.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/Injectio.Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/Injectio.Generators.csproj -------------------------------------------------------------------------------- /src/Injectio.Generators/Injectio.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/Injectio.targets -------------------------------------------------------------------------------- /src/Injectio.Generators/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/IsExternalInit.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/KnownTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/KnownTypes.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/MethodOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/MethodOptions.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/ModuleRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/ModuleRegistration.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Injectio.Generators/ServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/ServiceRegistration.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/ServiceRegistrationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/ServiceRegistrationContext.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/ServiceRegistrationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/ServiceRegistrationGenerator.cs -------------------------------------------------------------------------------- /src/Injectio.Generators/ServiceRegistrationWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/src/Injectio.Generators/ServiceRegistrationWriter.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/DependencyInjectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/DependencyInjectionBase.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/DependencyInjectionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/DependencyInjectionCollection.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/DependencyInjectionFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/DependencyInjectionFixture.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/Injectio.Acceptance.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/Injectio.Acceptance.Tests.csproj -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/LibraryServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/LibraryServiceTests.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/LocalServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/LocalServiceTests.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/Services/LocalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/Services/LocalService.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/Services/ServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/Services/ServiceRegistration.cs -------------------------------------------------------------------------------- /tests/Injectio.Acceptance.Tests/Services/ServiceRegistrationInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Acceptance.Tests/Services/ServiceRegistrationInstance.cs -------------------------------------------------------------------------------- /tests/Injectio.Tests.Console/Injectio.Tests.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests.Console/Injectio.Tests.Console.csproj -------------------------------------------------------------------------------- /tests/Injectio.Tests.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests.Console/Program.cs -------------------------------------------------------------------------------- /tests/Injectio.Tests.Library/Injectio.Tests.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests.Library/Injectio.Tests.Library.csproj -------------------------------------------------------------------------------- /tests/Injectio.Tests.Library/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests.Library/Service.cs -------------------------------------------------------------------------------- /tests/Injectio.Tests/Injectio.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Injectio.Tests.csproj -------------------------------------------------------------------------------- /tests/Injectio.Tests/ServiceRegistrationGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/ServiceRegistrationGeneratorTests.cs -------------------------------------------------------------------------------- /tests/Injectio.Tests/ServiceRegistrationWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/ServiceRegistrationWriterTests.cs -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterMixedWithInterfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterMixedWithInterfaces.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterScopedKeyedSelfWithInterfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterScopedKeyedSelfWithInterfaces.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterScopedSelfWithInterfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterScopedSelfWithInterfaces.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesInstance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesInstance.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesInvalidMethod.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesInvalidMethod.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesInvalidService.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesInvalidService.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesStatic.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterServicesStatic.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonFactory.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonFactory.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonFactoryInvalid.verified.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonGeneric.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonGeneric.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonImplementedInterfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonImplementedInterfaces.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonImplementedInterfacesMultiple.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonImplementedInterfacesMultiple.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonOpenGeneric.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonOpenGeneric.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfAsClosedGeneric.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfAsClosedGeneric.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfAsOpenGeneric.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfAsOpenGeneric.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfWithInterfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonSelfWithInterfaces.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonServiceKeys.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonServiceKeys.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonTags.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterSingletonTags.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterTransientSelfWithInterfaces.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationGeneratorTests.GenerateRegisterTransientSelfWithInterfaces.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassScopedAppend.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassScopedAppend.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassSingleton.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassSingleton.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassSingletonMultiple.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassSingletonMultiple.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassSingletonTags.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassSingletonTags.verified.txt -------------------------------------------------------------------------------- /tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassTransientReplace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/Injectio/HEAD/tests/Injectio.Tests/Snapshots/ServiceRegistrationWriterTests.GenerateExtensionClassTransientReplace.verified.txt --------------------------------------------------------------------------------