├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml ├── matchers │ └── dotnet.json ├── release.yml └── workflows │ ├── build.yml │ └── publish.yml ├── AutoCtor.slnx ├── global.json ├── license ├── mdsnippets.json ├── readme.md ├── readme.nuget.md ├── readme.source.md └── src ├── AutoCtor.Attributes ├── AutoConstructAttribute.cs └── AutoCtor.Attributes.csproj ├── AutoCtor.Example └── AutoCtor.Example.csproj ├── AutoCtor.Roslyn3.11 ├── AttributeSourceGenerator.cs ├── AutoConstructSourceGenerator.cs ├── AutoCtor.Roslyn3.11.csproj └── GlobalSuppressions.cs ├── AutoCtor.Roslyn4.0 ├── AttributeSourceGenerator.cs ├── AutoConstructSourceGenerator.cs └── AutoCtor.Roslyn4.0.csproj ├── AutoCtor.Roslyn4.4 ├── AttributeSourceGenerator.cs ├── AutoConstructSourceGenerator.cs └── AutoCtor.Roslyn4.4.csproj ├── Common.props ├── Directory.Build.props ├── Directory.Packages.props ├── Shared ├── AnalyzerReleases.Shipped.md ├── AnalyzerReleases.Unshipped.md ├── AttributeSourceGenerator │ └── Emitter.cs ├── AutoConstructSourceGenerator │ ├── Diagnostics.cs │ ├── Emitter.cs │ └── Tracking.cs ├── Helpers │ ├── CodeBuilder.Block.cs │ ├── CodeBuilder.InterpolatedStringHandler.cs │ ├── CodeBuilder.PartialType.cs │ ├── CodeBuilder.Templates.cs │ ├── CodeBuilder.cs │ ├── EquatableList.cs │ ├── EquatableTypeSymbol.cs │ ├── Extensions.cs │ ├── GeneratorUtilities.cs │ └── Polyfill.cs ├── Models │ ├── AttributeNames.cs │ ├── IHaveDiagnostics.cs │ ├── MemberModel.cs │ ├── ModelUtilities.cs │ ├── ParameterList.cs │ ├── ParameterModel.cs │ ├── PostCtorModel.cs │ └── TypeModel.cs └── Shared.csproj ├── Tests ├── ExampleTests.cs ├── Examples │ ├── AbstractClassTest.cs │ ├── AbstractClassTest.cs#AbstractClassTest.g.verified.cs │ ├── AllParametersSameTypeTest.cs │ ├── AllParametersSameTypeTest.cs#AllParametersAreSameTypeTest.g.verified.cs │ ├── AmbiguousMarkedMethods.cs │ ├── AmbiguousMarkedMethods.cs#AmbiguousMarkedMethods.g.verified.cs │ ├── AmbiguousMarkedMethods.cs.verified.txt │ ├── BaseTest.cs │ ├── BaseTest.cs#BaseBaseClass.g.verified.cs │ ├── BaseTest.cs#BaseClass.g.verified.cs │ ├── BaseTest.cs#BaseTest.g.verified.cs │ ├── BaseTest.cs#ComplexBase.g.verified.cs │ ├── BaseTest.cs#ComplexTest.g.verified.cs │ ├── BaseTest.cs#TheClass.g.verified.cs │ ├── BlankTest.cs │ ├── Broken251Release.cs │ ├── Broken251Release.cs#Broken251Release.g.verified.cs │ ├── ConflicingNames.cs │ ├── ConflicingNames.cs#AClass.g.verified.cs │ ├── ConflicingNames.cs#BClass.g.verified.cs │ ├── ConflicingNames.cs#CClass.g.verified.cs │ ├── DerivedExample.cs │ ├── DerivedExample.cs#Derived.g.verified.cs │ ├── ExcludeStaticAndInitialisedFieldsTest.cs │ ├── ExcludeStaticAndInitialisedFieldsTest.cs#ExcludeStaticAndInitialisedFieldsTest.g.verified.cs │ ├── FriendlyParameterNamesTest.cs │ ├── FriendlyParameterNamesTest.cs#FriendlyParameterNamesTest.g.verified.cs │ ├── GenericClassTest.cs │ ├── GenericClassTest.cs#GenericClassTest[T].g.verified.cs │ ├── GenericInheritanceTest.cs │ ├── GenericInheritanceTest.cs#ConcreteClass.g.verified.cs │ ├── GenericInheritanceTest.cs#ConcreteClass1[T].g.verified.cs │ ├── GenericInheritanceTest.cs#ConcreteClass2.g.verified.cs │ ├── GenericInheritanceTest.cs#ConcreteClassWithAnotherField.g.verified.cs │ ├── GenericInheritanceTest.cs#ConcreteClassWithGenericArg[T2].g.verified.cs │ ├── GenericInheritanceTest.cs#GenericBase2[T1, T2].g.verified.cs │ ├── GenericInheritanceTest.cs#GenericBase[T].g.verified.cs │ ├── Guard.cs │ ├── Guard.cs#Guard.g.verified.cs │ ├── IgnoreField.cs │ ├── InheritanceTest.cs │ ├── InheritanceTest.cs#A.g.verified.cs │ ├── InheritanceTest.cs#B.g.verified.cs │ ├── InheritanceTest.cs#C.g.verified.cs │ ├── InheritanceTest.cs#D.g.verified.cs │ ├── InheritanceTest.cs#E.g.verified.cs │ ├── Issue125.cs │ ├── Issue125.cs#OrderRequest.g.verified.cs │ ├── Issue206.cs │ ├── Issue206.cs#Base[T2].g.verified.cs │ ├── Issue206.cs#Derived.g.verified.cs │ ├── Issue299.cs │ ├── Issue299.cs#Issue299.g.verified.cs │ ├── KeyedServicesTest.cs │ ├── KeyedServicesTest.cs#ChildKeyedServicesTest.g.verified.cs │ ├── KeyedServicesTest.cs#KeyedServicesTest[T].g.verified.cs │ ├── KeywordsTest.cs │ ├── KeywordsTest.cs#KeywordsTest.g.verified.cs │ ├── MixedNestedClassAndRecordTest.cs │ ├── MixedNestedClassAndRecordTest.cs#OuterClass1.OuterRecord1.OuterClass2.MixedNestedClassAndRecordTest.g.verified.cs │ ├── MultipleGenericInheritance.cs │ ├── MultipleGenericInheritance.cs#Example1.g.verified.cs │ ├── MultipleGenericInheritance.cs#Example2.g.verified.cs │ ├── MultipleGenericInheritance.cs#Generic[TA, TB].g.verified.cs │ ├── NamespaceDoubleNestedClassTest.cs │ ├── NamespaceDoubleNestedClassTest.cs#TestNamespace.OuterClass1.OuterClass2.NamespaceDoubleNestedClassTest.g.verified.cs │ ├── NamespaceTest.cs │ ├── NamespaceTest.cs#TestNamespace.NamespaceTest.g.verified.cs │ ├── NullableAnnotationTest.cs │ ├── NullableAnnotationTest.cs#NullableAnnotationTests.g.verified.cs │ ├── ObsoleteBaseCtor.cs │ ├── ObsoleteBaseCtor.cs#AutoClass.g.verified.cs │ ├── OuterClass.cs │ ├── OuterClass.cs#OuterClass.NestedClassTest.g.verified.cs │ ├── PostCtorAttributeTest.cs │ ├── PostCtorAttributeTest.cs#PostCtorAttributeTest.g.verified.cs │ ├── PostCtorOptionalConst.cs │ ├── PostCtorOptionalConst.cs#PostCtorOptionalConst.g.verified.cs │ ├── PostCtorOptionalDefault.cs │ ├── PostCtorOptionalDefault.cs#PostCtorOptionalDefault.g.verified.cs │ ├── PostCtorOptionalEnum.cs │ ├── PostCtorOptionalEnum.cs#PostCtorOptionalEnum.g.verified.cs │ ├── PostCtorOptionalInt.cs │ ├── PostCtorOptionalInt.cs#PostCtorOptionalInt.g.verified.cs │ ├── PostCtorOptionalString.cs │ ├── PostCtorOptionalString.cs#PostCtorOptionalString.g.verified.cs │ ├── PostCtorOptionalUniqueNameTest.cs │ ├── PostCtorOptionalUniqueNameTest.cs#PostCtorOptionalUniqueNameTest.g.verified.cs │ ├── PostCtorOptionalWithBase.cs │ ├── PostCtorOptionalWithBase.cs#BaseTest.g.verified.cs │ ├── PostCtorOptionalWithBase.cs#PostCtorOptionalWithBase.g.verified.cs │ ├── PostCtorReturnsNonVoidTest.cs │ ├── PostCtorReturnsNonVoidTest.cs#PostCtorReturnsNonVoidTest.g.verified.cs │ ├── PostCtorReturnsNonVoidTest.cs.verified.txt │ ├── PostCtorWithArgumentsTest.cs │ ├── PostCtorWithArgumentsTest.cs#PostCtorWithArgumentsTest.g.verified.cs │ ├── PostCtorWithGenericTest.cs │ ├── PostCtorWithGenericTest.cs#PostCtorWithGenericTest.g.verified.cs │ ├── PostCtorWithGenericTest.cs.verified.txt │ ├── PostCtorWithInArgumentTest.cs │ ├── PostCtorWithInArgumentTest.cs#PostCtorWithInArgumentTest.g.verified.cs │ ├── PostCtorWithKeyedOutParameterTest.cs │ ├── PostCtorWithKeyedOutParameterTest.cs#PostCtorWithKeyedOutParameterTest.g.verified.cs │ ├── PostCtorWithKeyedOutParameterTest.cs.verified.txt │ ├── PostCtorWithKeyedServiceOutParameterTest.cs │ ├── PostCtorWithKeyedServiceOutParameterTest.cs#PostCtorWithKeyedServiceOutParameterTest.g.verified.cs │ ├── PostCtorWithKeyedServiceOutParameterTest.cs.verified.txt │ ├── PostCtorWithKeyedServiceTest.cs │ ├── PostCtorWithKeyedServiceTest.cs#BaseClass.g.verified.cs │ ├── PostCtorWithKeyedServiceTest.cs#PostCtorWithKeyedServiceTest.g.verified.cs │ ├── PostCtorWithMSKeyedServiceTest.cs │ ├── PostCtorWithMSKeyedServiceTest.cs#PostCtorWithMSKeyedServiceTest.g.verified.cs │ ├── PostCtorWithOptionalArgumentsTest.cs │ ├── PostCtorWithOptionalArgumentsTest.cs#PostCtorWithOptionalArgumentsTest.g.verified.cs │ ├── PostCtorWithOutArgumentTest.cs │ ├── PostCtorWithOutArgumentTest.cs#PostCtorWithOutArgumentTest.g.verified.cs │ ├── PostCtorWithRefArgumentTest.cs │ ├── PostCtorWithRefArgumentTest.cs#PostCtorWithRefArgumentTest.g.verified.cs │ ├── PostCtorWithRefReadonlyArgumentTest.cs │ ├── PostCtorWithRefReadonlyArgumentTest.cs#PostCtorWithRefReadonlyArgumentTest.g.verified.cs │ ├── RecordTest.cs │ ├── RecordTest.cs#RecordStructTest.g.verified.cs │ ├── RecordTest.cs#RecordTest.g.verified.cs │ ├── SealedTest.cs │ ├── SealedTest.cs#SealedTest.g.verified.cs │ ├── StructTest.cs │ ├── StructTest.cs#StructTest.g.verified.cs │ ├── UniqueNameTest.cs │ ├── UniqueNameTest.cs#UniqueNameTest.g.verified.cs │ ├── UniqueNameTest2.cs │ ├── UniqueNameTest2.cs#UniqueNameTest2.g.verified.cs │ └── UniqueNameTest2.cs#UniqueNameTestBase.g.verified.cs ├── GeneratedAttributeTests.cs ├── GeneratedAttributeTests.cs#AutoConstructAttribute.g.verified.cs ├── GuardExamples │ ├── DisabledGuard.cs │ ├── DisabledGuard.cs#DisabledGuard.g.verified.cs │ ├── Guard.cs │ ├── Guard.cs#Guard.g.verified.cs │ ├── NullableTypes.cs │ └── NullableTypes.cs#NullableTypes.g.verified.cs ├── Issue73.cs ├── Issue73.cs#B.TheClass.g.verified.cs ├── LangExamples │ ├── PropertiesTest.cs │ ├── Verified_3_11 │ │ └── PropertiesTest.cs#PropertiesTest.g.verified.cs │ ├── Verified_4_0 │ │ └── PropertiesTest.cs#PropertiesTest.g.verified.cs │ └── Verified_4_4 │ │ └── PropertiesTest.cs#PropertiesTest.g.verified.cs ├── ReadmeExamples │ ├── Basic.cs │ ├── Basic.cs#Basic.g.verified.cs │ ├── Guarded.cs │ ├── Guarded.cs#Guarded.g.verified.cs │ ├── Inherited.cs │ ├── Inherited.cs#Inherited.g.verified.cs │ ├── Keyed.cs │ ├── Keyed.cs#Keyed.g.verified.cs │ ├── PostConstruct.cs │ ├── PostConstruct.cs#PostConstruct.g.verified.cs │ ├── PostConstructWithDefaultParameter.cs │ ├── PostConstructWithDefaultParameter.cs#PostConstructWithDefaultParameter.g.verified.cs │ ├── PostConstructWithOutParameter.cs │ ├── PostConstructWithOutParameter.cs#PostConstructWithOutParameter.g.verified.cs │ ├── PostConstructWithParameter.cs │ ├── PostConstructWithParameter.cs#PostConstructWithParameter.g.verified.cs │ ├── Properties.cs │ └── Properties.cs#Properties.g.verified.cs ├── Tests.csproj ├── Utilities │ ├── CodeFileTheoryData.cs │ ├── CompilationBuilder.cs │ ├── ExampleTestsHelper.cs │ ├── GeneratorDriverBuilder.cs │ ├── ModuleInitializer.cs │ ├── Shim.cs │ ├── TestFileHelper.cs │ └── TestHelper.cs └── VerifyChecksTests.cs ├── global.json └── nugetfiles ├── AutoCtor.badcompat.targets ├── AutoCtor.props └── AutoCtor.targets /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: distantcam 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/matchers/dotnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/.github/matchers/dotnet.json -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /AutoCtor.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/AutoCtor.slnx -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/global.json -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/license -------------------------------------------------------------------------------- /mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/mdsnippets.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/readme.md -------------------------------------------------------------------------------- /readme.nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/readme.nuget.md -------------------------------------------------------------------------------- /readme.source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/readme.source.md -------------------------------------------------------------------------------- /src/AutoCtor.Attributes/AutoConstructAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Attributes/AutoConstructAttribute.cs -------------------------------------------------------------------------------- /src/AutoCtor.Attributes/AutoCtor.Attributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Attributes/AutoCtor.Attributes.csproj -------------------------------------------------------------------------------- /src/AutoCtor.Example/AutoCtor.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Example/AutoCtor.Example.csproj -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn3.11/AttributeSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn3.11/AttributeSourceGenerator.cs -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn3.11/AutoConstructSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn3.11/AutoConstructSourceGenerator.cs -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn3.11/AutoCtor.Roslyn3.11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn3.11/AutoCtor.Roslyn3.11.csproj -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn3.11/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn3.11/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn4.0/AttributeSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn4.0/AttributeSourceGenerator.cs -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn4.0/AutoConstructSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn4.0/AutoConstructSourceGenerator.cs -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn4.0/AutoCtor.Roslyn4.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn4.0/AutoCtor.Roslyn4.0.csproj -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn4.4/AttributeSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn4.4/AttributeSourceGenerator.cs -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn4.4/AutoConstructSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn4.4/AutoConstructSourceGenerator.cs -------------------------------------------------------------------------------- /src/AutoCtor.Roslyn4.4/AutoCtor.Roslyn4.4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/AutoCtor.Roslyn4.4/AutoCtor.Roslyn4.4.csproj -------------------------------------------------------------------------------- /src/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Common.props -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Shared/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Shared/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Shared/AttributeSourceGenerator/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/AttributeSourceGenerator/Emitter.cs -------------------------------------------------------------------------------- /src/Shared/AutoConstructSourceGenerator/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/AutoConstructSourceGenerator/Diagnostics.cs -------------------------------------------------------------------------------- /src/Shared/AutoConstructSourceGenerator/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/AutoConstructSourceGenerator/Emitter.cs -------------------------------------------------------------------------------- /src/Shared/AutoConstructSourceGenerator/Tracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/AutoConstructSourceGenerator/Tracking.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/CodeBuilder.Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/CodeBuilder.Block.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/CodeBuilder.InterpolatedStringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/CodeBuilder.InterpolatedStringHandler.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/CodeBuilder.PartialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/CodeBuilder.PartialType.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/CodeBuilder.Templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/CodeBuilder.Templates.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/CodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/CodeBuilder.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/EquatableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/EquatableList.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/EquatableTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/EquatableTypeSymbol.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/Extensions.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/GeneratorUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/GeneratorUtilities.cs -------------------------------------------------------------------------------- /src/Shared/Helpers/Polyfill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Helpers/Polyfill.cs -------------------------------------------------------------------------------- /src/Shared/Models/AttributeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/AttributeNames.cs -------------------------------------------------------------------------------- /src/Shared/Models/IHaveDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/IHaveDiagnostics.cs -------------------------------------------------------------------------------- /src/Shared/Models/MemberModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/MemberModel.cs -------------------------------------------------------------------------------- /src/Shared/Models/ModelUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/ModelUtilities.cs -------------------------------------------------------------------------------- /src/Shared/Models/ParameterList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/ParameterList.cs -------------------------------------------------------------------------------- /src/Shared/Models/ParameterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/ParameterModel.cs -------------------------------------------------------------------------------- /src/Shared/Models/PostCtorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/PostCtorModel.cs -------------------------------------------------------------------------------- /src/Shared/Models/TypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Models/TypeModel.cs -------------------------------------------------------------------------------- /src/Shared/Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Shared/Shared.csproj -------------------------------------------------------------------------------- /src/Tests/ExampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ExampleTests.cs -------------------------------------------------------------------------------- /src/Tests/Examples/AbstractClassTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/AbstractClassTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/AbstractClassTest.cs#AbstractClassTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/AbstractClassTest.cs#AbstractClassTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/AllParametersSameTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/AllParametersSameTypeTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/AllParametersSameTypeTest.cs#AllParametersAreSameTypeTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/AllParametersSameTypeTest.cs#AllParametersAreSameTypeTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/AmbiguousMarkedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/AmbiguousMarkedMethods.cs -------------------------------------------------------------------------------- /src/Tests/Examples/AmbiguousMarkedMethods.cs#AmbiguousMarkedMethods.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/AmbiguousMarkedMethods.cs#AmbiguousMarkedMethods.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/AmbiguousMarkedMethods.cs.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/AmbiguousMarkedMethods.cs.verified.txt -------------------------------------------------------------------------------- /src/Tests/Examples/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BaseTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/BaseTest.cs#BaseBaseClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BaseTest.cs#BaseBaseClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/BaseTest.cs#BaseClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BaseTest.cs#BaseClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/BaseTest.cs#BaseTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BaseTest.cs#BaseTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/BaseTest.cs#ComplexBase.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BaseTest.cs#ComplexBase.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/BaseTest.cs#ComplexTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BaseTest.cs#ComplexTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/BaseTest.cs#TheClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BaseTest.cs#TheClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/BlankTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/BlankTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Broken251Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Broken251Release.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Broken251Release.cs#Broken251Release.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Broken251Release.cs#Broken251Release.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ConflicingNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ConflicingNames.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ConflicingNames.cs#AClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ConflicingNames.cs#AClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ConflicingNames.cs#BClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ConflicingNames.cs#BClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ConflicingNames.cs#CClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ConflicingNames.cs#CClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/DerivedExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/DerivedExample.cs -------------------------------------------------------------------------------- /src/Tests/Examples/DerivedExample.cs#Derived.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/DerivedExample.cs#Derived.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ExcludeStaticAndInitialisedFieldsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ExcludeStaticAndInitialisedFieldsTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ExcludeStaticAndInitialisedFieldsTest.cs#ExcludeStaticAndInitialisedFieldsTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ExcludeStaticAndInitialisedFieldsTest.cs#ExcludeStaticAndInitialisedFieldsTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/FriendlyParameterNamesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/FriendlyParameterNamesTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/FriendlyParameterNamesTest.cs#FriendlyParameterNamesTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/FriendlyParameterNamesTest.cs#FriendlyParameterNamesTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericClassTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericClassTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericClassTest.cs#GenericClassTest[T].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericClassTest.cs#GenericClassTest[T].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClass1[T].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClass1[T].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClass2.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClass2.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClassWithAnotherField.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClassWithAnotherField.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClassWithGenericArg[T2].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs#ConcreteClassWithGenericArg[T2].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs#GenericBase2[T1, T2].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs#GenericBase2[T1, T2].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/GenericInheritanceTest.cs#GenericBase[T].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/GenericInheritanceTest.cs#GenericBase[T].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Guard.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Guard.cs#Guard.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Guard.cs#Guard.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/IgnoreField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/IgnoreField.cs -------------------------------------------------------------------------------- /src/Tests/Examples/InheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/InheritanceTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/InheritanceTest.cs#A.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/InheritanceTest.cs#A.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/InheritanceTest.cs#B.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/InheritanceTest.cs#B.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/InheritanceTest.cs#C.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/InheritanceTest.cs#C.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/InheritanceTest.cs#D.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/InheritanceTest.cs#D.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/InheritanceTest.cs#E.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/InheritanceTest.cs#E.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Issue125.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Issue125.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Issue125.cs#OrderRequest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Issue125.cs#OrderRequest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Issue206.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Issue206.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Issue206.cs#Base[T2].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Issue206.cs#Base[T2].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Issue206.cs#Derived.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Issue206.cs#Derived.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Issue299.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Issue299.cs -------------------------------------------------------------------------------- /src/Tests/Examples/Issue299.cs#Issue299.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/Issue299.cs#Issue299.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/KeyedServicesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/KeyedServicesTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/KeyedServicesTest.cs#ChildKeyedServicesTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/KeyedServicesTest.cs#ChildKeyedServicesTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/KeyedServicesTest.cs#KeyedServicesTest[T].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/KeyedServicesTest.cs#KeyedServicesTest[T].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/KeywordsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/KeywordsTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/KeywordsTest.cs#KeywordsTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/KeywordsTest.cs#KeywordsTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/MixedNestedClassAndRecordTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/MixedNestedClassAndRecordTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/MixedNestedClassAndRecordTest.cs#OuterClass1.OuterRecord1.OuterClass2.MixedNestedClassAndRecordTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/MixedNestedClassAndRecordTest.cs#OuterClass1.OuterRecord1.OuterClass2.MixedNestedClassAndRecordTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/MultipleGenericInheritance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/MultipleGenericInheritance.cs -------------------------------------------------------------------------------- /src/Tests/Examples/MultipleGenericInheritance.cs#Example1.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/MultipleGenericInheritance.cs#Example1.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/MultipleGenericInheritance.cs#Example2.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/MultipleGenericInheritance.cs#Example2.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/MultipleGenericInheritance.cs#Generic[TA, TB].g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/MultipleGenericInheritance.cs#Generic[TA, TB].g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/NamespaceDoubleNestedClassTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/NamespaceDoubleNestedClassTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/NamespaceDoubleNestedClassTest.cs#TestNamespace.OuterClass1.OuterClass2.NamespaceDoubleNestedClassTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/NamespaceDoubleNestedClassTest.cs#TestNamespace.OuterClass1.OuterClass2.NamespaceDoubleNestedClassTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/NamespaceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/NamespaceTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/NamespaceTest.cs#TestNamespace.NamespaceTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/NamespaceTest.cs#TestNamespace.NamespaceTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/NullableAnnotationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/NullableAnnotationTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/NullableAnnotationTest.cs#NullableAnnotationTests.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/NullableAnnotationTest.cs#NullableAnnotationTests.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ObsoleteBaseCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ObsoleteBaseCtor.cs -------------------------------------------------------------------------------- /src/Tests/Examples/ObsoleteBaseCtor.cs#AutoClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/ObsoleteBaseCtor.cs#AutoClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/OuterClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/OuterClass.cs -------------------------------------------------------------------------------- /src/Tests/Examples/OuterClass.cs#OuterClass.NestedClassTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/OuterClass.cs#OuterClass.NestedClassTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorAttributeTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorAttributeTest.cs#PostCtorAttributeTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorAttributeTest.cs#PostCtorAttributeTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalConst.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalConst.cs#PostCtorOptionalConst.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalConst.cs#PostCtorOptionalConst.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalDefault.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalDefault.cs#PostCtorOptionalDefault.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalDefault.cs#PostCtorOptionalDefault.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalEnum.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalEnum.cs#PostCtorOptionalEnum.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalEnum.cs#PostCtorOptionalEnum.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalInt.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalInt.cs#PostCtorOptionalInt.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalInt.cs#PostCtorOptionalInt.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalString.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalString.cs#PostCtorOptionalString.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalString.cs#PostCtorOptionalString.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalUniqueNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalUniqueNameTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalUniqueNameTest.cs#PostCtorOptionalUniqueNameTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalUniqueNameTest.cs#PostCtorOptionalUniqueNameTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalWithBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalWithBase.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalWithBase.cs#BaseTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalWithBase.cs#BaseTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorOptionalWithBase.cs#PostCtorOptionalWithBase.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorOptionalWithBase.cs#PostCtorOptionalWithBase.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorReturnsNonVoidTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorReturnsNonVoidTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorReturnsNonVoidTest.cs#PostCtorReturnsNonVoidTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorReturnsNonVoidTest.cs#PostCtorReturnsNonVoidTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorReturnsNonVoidTest.cs.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorReturnsNonVoidTest.cs.verified.txt -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithArgumentsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithArgumentsTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithArgumentsTest.cs#PostCtorWithArgumentsTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithArgumentsTest.cs#PostCtorWithArgumentsTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithGenericTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithGenericTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithGenericTest.cs#PostCtorWithGenericTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithGenericTest.cs#PostCtorWithGenericTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithGenericTest.cs.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithGenericTest.cs.verified.txt -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithInArgumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithInArgumentTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithInArgumentTest.cs#PostCtorWithInArgumentTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithInArgumentTest.cs#PostCtorWithInArgumentTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedOutParameterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedOutParameterTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedOutParameterTest.cs#PostCtorWithKeyedOutParameterTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedOutParameterTest.cs#PostCtorWithKeyedOutParameterTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedOutParameterTest.cs.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedOutParameterTest.cs.verified.txt -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedServiceOutParameterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedServiceOutParameterTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedServiceOutParameterTest.cs#PostCtorWithKeyedServiceOutParameterTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedServiceOutParameterTest.cs#PostCtorWithKeyedServiceOutParameterTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedServiceOutParameterTest.cs.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedServiceOutParameterTest.cs.verified.txt -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedServiceTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedServiceTest.cs#BaseClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedServiceTest.cs#BaseClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithKeyedServiceTest.cs#PostCtorWithKeyedServiceTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithKeyedServiceTest.cs#PostCtorWithKeyedServiceTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithMSKeyedServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithMSKeyedServiceTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithMSKeyedServiceTest.cs#PostCtorWithMSKeyedServiceTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithMSKeyedServiceTest.cs#PostCtorWithMSKeyedServiceTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithOptionalArgumentsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithOptionalArgumentsTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithOptionalArgumentsTest.cs#PostCtorWithOptionalArgumentsTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithOptionalArgumentsTest.cs#PostCtorWithOptionalArgumentsTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithOutArgumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithOutArgumentTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithOutArgumentTest.cs#PostCtorWithOutArgumentTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithOutArgumentTest.cs#PostCtorWithOutArgumentTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithRefArgumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithRefArgumentTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithRefArgumentTest.cs#PostCtorWithRefArgumentTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithRefArgumentTest.cs#PostCtorWithRefArgumentTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithRefReadonlyArgumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithRefReadonlyArgumentTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/PostCtorWithRefReadonlyArgumentTest.cs#PostCtorWithRefReadonlyArgumentTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/PostCtorWithRefReadonlyArgumentTest.cs#PostCtorWithRefReadonlyArgumentTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/RecordTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/RecordTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/RecordTest.cs#RecordStructTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/RecordTest.cs#RecordStructTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/RecordTest.cs#RecordTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/RecordTest.cs#RecordTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/SealedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/SealedTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/SealedTest.cs#SealedTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/SealedTest.cs#SealedTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/StructTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/StructTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/StructTest.cs#StructTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/StructTest.cs#StructTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/UniqueNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/UniqueNameTest.cs -------------------------------------------------------------------------------- /src/Tests/Examples/UniqueNameTest.cs#UniqueNameTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/UniqueNameTest.cs#UniqueNameTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/UniqueNameTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/UniqueNameTest2.cs -------------------------------------------------------------------------------- /src/Tests/Examples/UniqueNameTest2.cs#UniqueNameTest2.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/UniqueNameTest2.cs#UniqueNameTest2.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Examples/UniqueNameTest2.cs#UniqueNameTestBase.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Examples/UniqueNameTest2.cs#UniqueNameTestBase.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratedAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GeneratedAttributeTests.cs -------------------------------------------------------------------------------- /src/Tests/GeneratedAttributeTests.cs#AutoConstructAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GeneratedAttributeTests.cs#AutoConstructAttribute.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GuardExamples/DisabledGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GuardExamples/DisabledGuard.cs -------------------------------------------------------------------------------- /src/Tests/GuardExamples/DisabledGuard.cs#DisabledGuard.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GuardExamples/DisabledGuard.cs#DisabledGuard.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GuardExamples/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GuardExamples/Guard.cs -------------------------------------------------------------------------------- /src/Tests/GuardExamples/Guard.cs#Guard.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GuardExamples/Guard.cs#Guard.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GuardExamples/NullableTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GuardExamples/NullableTypes.cs -------------------------------------------------------------------------------- /src/Tests/GuardExamples/NullableTypes.cs#NullableTypes.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/GuardExamples/NullableTypes.cs#NullableTypes.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Issue73.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Issue73.cs -------------------------------------------------------------------------------- /src/Tests/Issue73.cs#B.TheClass.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Issue73.cs#B.TheClass.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/LangExamples/PropertiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/LangExamples/PropertiesTest.cs -------------------------------------------------------------------------------- /src/Tests/LangExamples/Verified_3_11/PropertiesTest.cs#PropertiesTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/LangExamples/Verified_3_11/PropertiesTest.cs#PropertiesTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/LangExamples/Verified_4_0/PropertiesTest.cs#PropertiesTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/LangExamples/Verified_4_0/PropertiesTest.cs#PropertiesTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/LangExamples/Verified_4_4/PropertiesTest.cs#PropertiesTest.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/LangExamples/Verified_4_4/PropertiesTest.cs#PropertiesTest.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Basic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Basic.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Basic.cs#Basic.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Basic.cs#Basic.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Guarded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Guarded.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Guarded.cs#Guarded.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Guarded.cs#Guarded.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Inherited.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Inherited.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Inherited.cs#Inherited.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Inherited.cs#Inherited.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Keyed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Keyed.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Keyed.cs#Keyed.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Keyed.cs#Keyed.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstruct.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstruct.cs#PostConstruct.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstruct.cs#PostConstruct.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstructWithDefaultParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstructWithDefaultParameter.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstructWithDefaultParameter.cs#PostConstructWithDefaultParameter.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstructWithDefaultParameter.cs#PostConstructWithDefaultParameter.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstructWithOutParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstructWithOutParameter.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstructWithOutParameter.cs#PostConstructWithOutParameter.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstructWithOutParameter.cs#PostConstructWithOutParameter.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstructWithParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstructWithParameter.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/PostConstructWithParameter.cs#PostConstructWithParameter.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/PostConstructWithParameter.cs#PostConstructWithParameter.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Properties.cs -------------------------------------------------------------------------------- /src/Tests/ReadmeExamples/Properties.cs#Properties.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/ReadmeExamples/Properties.cs#Properties.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/Tests/Utilities/CodeFileTheoryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/CodeFileTheoryData.cs -------------------------------------------------------------------------------- /src/Tests/Utilities/CompilationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/CompilationBuilder.cs -------------------------------------------------------------------------------- /src/Tests/Utilities/ExampleTestsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/ExampleTestsHelper.cs -------------------------------------------------------------------------------- /src/Tests/Utilities/GeneratorDriverBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/GeneratorDriverBuilder.cs -------------------------------------------------------------------------------- /src/Tests/Utilities/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Tests/Utilities/Shim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/Shim.cs -------------------------------------------------------------------------------- /src/Tests/Utilities/TestFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/TestFileHelper.cs -------------------------------------------------------------------------------- /src/Tests/Utilities/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/Utilities/TestHelper.cs -------------------------------------------------------------------------------- /src/Tests/VerifyChecksTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/Tests/VerifyChecksTests.cs -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/global.json -------------------------------------------------------------------------------- /src/nugetfiles/AutoCtor.badcompat.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/nugetfiles/AutoCtor.badcompat.targets -------------------------------------------------------------------------------- /src/nugetfiles/AutoCtor.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/nugetfiles/AutoCtor.props -------------------------------------------------------------------------------- /src/nugetfiles/AutoCtor.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distantcam/AutoCtor/HEAD/src/nugetfiles/AutoCtor.targets --------------------------------------------------------------------------------