├── .gitattributes ├── .github ├── CODE-OF-CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── feature.yml │ ├── feedback.yml │ └── tasks.yml ├── NMS_TEMPLATE │ ├── bug.issue.template │ ├── codecov.yml.template │ ├── config.yml │ ├── config.yml.template │ ├── dependency.yml.template │ ├── feature.issue.template │ ├── feedback.issue.template │ ├── tasks.issue.template │ └── test.yml.template ├── dependabot.yml ├── nmsdb │ ├── ci.json │ ├── jester_ci_github.json │ └── jester_ci_issue.json ├── project.yml └── workflows │ ├── block_user.yml │ ├── codecov.yml │ ├── create_label_project.yml │ ├── issue_recommend.yml │ ├── pr_archive.yml │ ├── pr_command.yml │ ├── pr_label.yml │ ├── pr_recommend.yml │ ├── pr_test.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CNAME ├── LICENSE ├── Natasha.sln ├── README.md ├── lang └── english │ └── README.md ├── resources ├── 19404084.png ├── LICENSE └── natasha.snk ├── samples ├── AllProxySample │ ├── AllProxySample.csproj │ └── Program.cs ├── DebugSample │ ├── DebugSample.csproj │ ├── MyFile.cs │ └── Program.cs ├── Directory.Build.props ├── ExtensionSample │ ├── Class1.cs │ ├── Class2.cs │ ├── Class3.cs │ ├── Class4.cs │ ├── Class5.cs │ ├── Class6.cs │ ├── Class7.cs │ ├── ExtensionSample.csproj │ ├── InterceptMain.cs │ ├── InteroAttribute.cs │ └── Program.cs ├── HE │ ├── NET5.0 │ │ ├── ConsoleSample │ │ │ ├── ConsoleSample.csproj │ │ │ └── Program.cs │ │ └── WinFormsSample │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── HEOutput │ │ │ └── Debug.txt │ │ │ ├── Program.cs │ │ │ └── WinFormsSample.csproj │ ├── NET6.0 │ │ ├── WebapiSample │ │ │ ├── Program.cs │ │ │ ├── WeatherForecast.cs │ │ │ ├── WebapiSample.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── WebapiWIthController │ │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ │ ├── Program.cs │ │ │ ├── WeatherForecast.cs │ │ │ ├── WebapiWIthController.csproj │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ ├── NET8.0 │ │ └── WebapiSample │ │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ │ ├── Program.cs │ │ │ ├── WeatherForecast.cs │ │ │ ├── WebapiSample.csproj │ │ │ ├── WebapiSample.http │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── NETCORE3.0 │ │ └── ConsoleSample │ │ ├── ConsoleSample.csproj │ │ ├── HEOutput │ │ └── Debug.txt │ │ └── Program.cs ├── HENET5 │ └── HEConsoleSample │ │ ├── HEConsoleSample.csproj │ │ └── Program.cs ├── HESample │ ├── Class1.cs │ ├── Class2.cs │ ├── HESample.csproj │ └── Program.cs ├── HotReloadPlugin │ ├── Class1.cs │ ├── Class2.cs │ ├── Class3.cs │ ├── Class4.cs │ ├── Class5.cs │ └── HotReloadPlugin.csproj ├── HotReloadSample │ ├── 1.txt │ ├── HotReloadSample.csproj │ ├── Program.cs │ └── ReloadController.cs ├── PluginSample │ ├── PluginA │ │ ├── PA.cs │ │ └── PluginA.csproj │ ├── PluginB │ │ ├── PB.cs │ │ └── PluginB.csproj │ ├── PluginBase │ │ ├── PluginBase.cs │ │ └── PluginBase.csproj │ └── PluginSample │ │ ├── PluginSample.csproj │ │ └── Program.cs ├── ReferenceSample │ ├── Program.cs │ └── ReferenceSample.csproj ├── WPFSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── HEOutput │ │ └── Debug.txt │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── WPFSample.csproj └── WinFormsSample │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── HEDebug.txt │ ├── Program.cs │ └── WinFormsSample.csproj ├── scanner.bat ├── scanner.sh ├── src ├── Directory.Build.props └── Natasha.CSharp │ ├── Component │ ├── Core │ │ ├── Natasha.CSharp.Compiler.Domain │ │ │ ├── Natasha.CSharp.Compiler.Domain.csproj │ │ │ ├── NatashaCompilerDomain.cs │ │ │ └── NatashaDomainCreator.cs │ │ ├── Natasha.CSharp.Template.Core │ │ │ ├── API │ │ │ │ ├── Builder │ │ │ │ │ ├── ConstraintBuilder.cs │ │ │ │ │ ├── CtorBuilder.cs │ │ │ │ │ ├── DelegateBuilder.cs │ │ │ │ │ ├── FieldBuilder.cs │ │ │ │ │ ├── MethodBuilder.cs │ │ │ │ │ ├── OopBuilder.cs │ │ │ │ │ └── PropertyBuilder.cs │ │ │ │ ├── DelegateImplementationHelper.cs │ │ │ │ ├── Level1 │ │ │ │ │ └── Operator │ │ │ │ │ │ ├── FakeMethodOperator.cs │ │ │ │ │ │ └── FastMethodOperator.cs │ │ │ │ ├── Level2 │ │ │ │ │ ├── Deconstruct │ │ │ │ │ │ └── DString.cs │ │ │ │ │ └── Operator │ │ │ │ │ │ ├── NClass.cs │ │ │ │ │ │ ├── NDelegate.cs │ │ │ │ │ │ ├── NEnum.cs │ │ │ │ │ │ ├── NHandler.cs │ │ │ │ │ │ ├── NInterface.cs │ │ │ │ │ │ ├── NRecord.cs │ │ │ │ │ │ └── NStruct.cs │ │ │ │ ├── Level3 │ │ │ │ │ └── NInstance.cs │ │ │ │ └── NatashaOperator.cs │ │ │ ├── AccessTemplate.cs │ │ │ ├── AttributeTemplate.cs │ │ │ ├── CommentTemplate.cs │ │ │ ├── DefinedNameTemplate.cs │ │ │ ├── DefinedNullableTemplate.cs │ │ │ ├── DefinedTypeTemplate.cs │ │ │ ├── Extension │ │ │ │ └── Inner │ │ │ │ │ ├── ReflectionInfoExtension.cs │ │ │ │ │ ├── StopwatchExtension.cs │ │ │ │ │ └── SyntaxNodeExtension.cs │ │ │ ├── Field │ │ │ │ └── FieldTemplate.cs │ │ │ ├── Method │ │ │ │ ├── DelegateTemplate.cs │ │ │ │ ├── MethodBodyTemplate.cs │ │ │ │ ├── MethodConstraintTemplate.cs │ │ │ │ └── ParameterTemplate.cs │ │ │ ├── ModifierTemplate.cs │ │ │ ├── Natasha.CSharp.Template.Core.csproj │ │ │ ├── Oop │ │ │ │ ├── Extension │ │ │ │ │ └── OopDefinedTypeExtension.cs │ │ │ │ ├── FlagTemplate.cs │ │ │ │ ├── InheritanceTemplate.cs │ │ │ │ ├── NamespaceBodyTemplate.cs │ │ │ │ ├── NamespaceTemplate.cs │ │ │ │ ├── OopBodyTemplate.cs │ │ │ │ ├── OopConstraintTemplate.cs │ │ │ │ └── UsingTemplate.cs │ │ │ ├── Property │ │ │ │ └── PropertyTemplate.cs │ │ │ ├── Reverser │ │ │ │ ├── AccessReverser.cs │ │ │ │ ├── AsyncReverser.cs │ │ │ │ ├── AvailableNameReverser.cs │ │ │ │ ├── DeclarationReverser.cs │ │ │ │ ├── GenericConstraintReverser.cs │ │ │ │ ├── Model │ │ │ │ │ ├── AccessTypes.cs │ │ │ │ │ ├── ConstraintFlags.cs │ │ │ │ │ └── ModifierFlags.cs │ │ │ │ ├── ModifierReverser.cs │ │ │ │ ├── NET50OR31 │ │ │ │ │ ├── NullabilityInfo.cs │ │ │ │ │ ├── NullabilityInfoContext.cs │ │ │ │ │ └── NullabilityState.cs │ │ │ │ ├── NullableMemberReverser.cs │ │ │ │ ├── NullableNatashaExtension.cs │ │ │ │ └── UnsafeReverser.cs │ │ │ ├── Standard │ │ │ │ ├── ComplierTemplate.cs │ │ │ │ ├── GlobalUsingTemplate.cs │ │ │ │ ├── LinkTemplate.cs │ │ │ │ └── ScriptTemplate.cs │ │ │ ├── Targets │ │ │ │ ├── Project.Usings.targets │ │ │ │ └── Project.targets │ │ │ └── Utils │ │ │ │ ├── Core31Supplement.cs │ │ │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ │ │ └── NamespaceConverter.cs │ │ └── Natasha.Domain │ │ │ ├── Core │ │ │ ├── NatashaDomain.Default.cs │ │ │ ├── NatashaDomain.Event.cs │ │ │ ├── NatashaDomain.Load.cs │ │ │ ├── NatashaDomain.Plugin.cs │ │ │ └── NatashaDomain.cs │ │ │ ├── Extension │ │ │ └── NatashaDomainExtension.cs │ │ │ └── Natasha.Domain.csproj │ └── Framework │ │ └── Natasha.CSharp.Template.Framework │ │ ├── API │ │ ├── Builder │ │ │ ├── ConstraintBuilder.cs │ │ │ ├── CtorBuilder.cs │ │ │ ├── DelegateBuilder.cs │ │ │ ├── FieldBuilder.cs │ │ │ ├── MethodBuilder.cs │ │ │ ├── OopBuilder.cs │ │ │ └── PropertyBuilder.cs │ │ ├── DelegateImplementationHelper.cs │ │ ├── Level1 │ │ │ └── Operator │ │ │ │ ├── FakeMethodOperator.cs │ │ │ │ └── FastMethodOperator.cs │ │ ├── Level2 │ │ │ ├── Deconstruct │ │ │ │ └── DString.cs │ │ │ └── Operator │ │ │ │ ├── NClass.cs │ │ │ │ ├── NDelegate.cs │ │ │ │ ├── NEnum.cs │ │ │ │ ├── NHandler.cs │ │ │ │ ├── NInterface.cs │ │ │ │ ├── NRecord.cs │ │ │ │ └── NStruct.cs │ │ └── NatashaOperator.cs │ │ ├── AccessTemplate.cs │ │ ├── AttributeTemplate.cs │ │ ├── CommentTemplate.cs │ │ ├── DefinedNameTemplate.cs │ │ ├── DefinedNullableTemplate.cs │ │ ├── DefinedTypeTemplate.cs │ │ ├── Extension │ │ └── Inner │ │ │ ├── ReflectionInfoExtension.cs │ │ │ ├── StopwatchExtension.cs │ │ │ └── SyntaxNodeExtension.cs │ │ ├── Field │ │ └── FieldTemplate.cs │ │ ├── Method │ │ ├── DelegateTemplate.cs │ │ ├── MethodBodyTemplate.cs │ │ ├── MethodConstraintTemplate.cs │ │ └── ParameterTemplate.cs │ │ ├── ModifierTemplate.cs │ │ ├── Natasha.CSharp.Template.Framework.csproj │ │ ├── Oop │ │ ├── Extension │ │ │ └── OopDefinedTypeExtension.cs │ │ ├── FlagTemplate.cs │ │ ├── InheritanceTemplate.cs │ │ ├── NamespaceBodyTemplate.cs │ │ ├── NamespaceTemplate.cs │ │ ├── OopBodyTemplate.cs │ │ ├── OopConstraintTemplate.cs │ │ └── UsingTemplate.cs │ │ ├── Property │ │ └── PropertyTemplate.cs │ │ ├── Reverser │ │ ├── AccessReverser.cs │ │ ├── AsyncReverser.cs │ │ ├── AvailableNameReverser.cs │ │ ├── DeclarationReverser.cs │ │ ├── GenericConstraintReverser.cs │ │ ├── Model │ │ │ ├── AccessTypes.cs │ │ │ ├── ConstraintFlags.cs │ │ │ └── ModifierFlags.cs │ │ ├── ModifierReverser.cs │ │ ├── NET50OR31 │ │ │ ├── NullabilityInfo.cs │ │ │ ├── NullabilityInfoContext.cs │ │ │ └── NullabilityState.cs │ │ ├── NullableMemberReverser.cs │ │ ├── NullableNatashaExtension.cs │ │ └── UnsafeReverser.cs │ │ ├── Standard │ │ ├── ComplierTemplate.cs │ │ ├── GlobalUsingTemplate.cs │ │ ├── LinkTemplate.cs │ │ └── ScriptTemplate.cs │ │ ├── Targets │ │ └── Project.Usings.targets │ │ └── Utils │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ └── NamespaceConverter.cs │ ├── Extension │ ├── HotExecutor │ │ ├── Natasha.CSharp.HotExecutor.SG │ │ │ ├── HotExecutorGenerator.cs │ │ │ └── Natasha.CSharp.HotExecutor.SG.csproj │ │ ├── Natasha.CSharp.HotExecutor.Wrapper │ │ │ ├── Natasha.CSharp.HotExecutor.Wrapper.csproj │ │ │ └── targets │ │ │ │ ├── NugetPackage.targets │ │ │ │ └── Project.targets │ │ ├── Natasha.CSharp.HotExecutor │ │ │ ├── HEProxy.cs │ │ │ ├── HEProxyState.cs │ │ │ ├── Logger │ │ │ │ └── HEFileLogger.cs │ │ │ ├── Natasha.CSharp.HotExecutor.csproj │ │ │ ├── ReBuild │ │ │ │ ├── VSCSDependencyProjectWatcher.cs │ │ │ │ └── VSCSProcessor.cs │ │ │ ├── ReCompile │ │ │ │ ├── Component │ │ │ │ │ ├── SyntaxHandler │ │ │ │ │ │ ├── OnceHandler.cs │ │ │ │ │ │ ├── ToplevelHandler.cs │ │ │ │ │ │ └── UsingsHandler.cs │ │ │ │ │ └── SyntaxRewriter │ │ │ │ │ │ ├── HEMethodTriviaRewriter.cs │ │ │ │ │ │ ├── HETreeMethodRewriter.cs │ │ │ │ │ │ ├── HETreeTriviaRewriter.cs │ │ │ │ │ │ └── SyntaxPlugin │ │ │ │ │ │ ├── CS0104Plugin │ │ │ │ │ │ └── CS0104TriviaPlugin.cs │ │ │ │ │ │ ├── OutputPlugin │ │ │ │ │ │ └── OutputTriviaPlugin.cs │ │ │ │ │ │ ├── ProxyMainPlugin │ │ │ │ │ │ ├── AsyncTriviaPlugin.cs │ │ │ │ │ │ ├── BodyRewriter │ │ │ │ │ │ │ ├── ConsoleWriter.cs │ │ │ │ │ │ │ ├── WinformRewriter.cs │ │ │ │ │ │ │ └── WpfWriter.cs │ │ │ │ │ │ ├── OptimizationTriviaPlugin.cs │ │ │ │ │ │ └── ProxyMethodPlugin.cs │ │ │ │ │ │ └── Standard │ │ │ │ │ │ ├── MethodSyntaxPluginBase.cs │ │ │ │ │ │ └── TriviaSyntaxPluginBase.cs │ │ │ │ ├── Extension │ │ │ │ │ └── DisposableExtension.cs │ │ │ │ ├── HECompiler.cs │ │ │ │ ├── Model │ │ │ │ │ └── HEProjectKind.cs │ │ │ │ ├── Utils │ │ │ │ │ ├── HECommentHelper.cs │ │ │ │ │ ├── HEDelegateHelper.cs │ │ │ │ │ ├── HEFileHelper.cs │ │ │ │ │ ├── HESpinLockHelper.cs │ │ │ │ │ └── VSCSProjectInfoHelper.cs │ │ │ │ └── VSCSMainProjectWatcher.cs │ │ │ └── targets │ │ │ │ ├── Project.Usings.targets │ │ │ │ └── Project.targets │ │ └── README.md │ ├── Natasha.CSharp.Extension.Ambiguity │ │ ├── AmbiguityUsings.cs │ │ ├── Extension │ │ │ └── AssenblyCSharpBuilderExtension.cs │ │ ├── Natasha.CSharp.Extension.Ambiguity.csproj │ │ └── RegexHelper.cs │ ├── Natasha.CSharp.Extension.Codecov │ │ ├── Extension │ │ │ ├── AssemblyExtension.cs │ │ │ └── AssenblyCSharpBuilderExtension.cs │ │ ├── Natasha.CSharp.Extension.Codecov.csproj │ │ ├── Utils │ │ │ ├── CodecovMonitor.cs │ │ │ ├── CodecovRecorder.cs │ │ │ └── MethodDefinedFilter.cs │ │ └── targets │ │ │ ├── Project.Usings.targets │ │ │ └── Project.targets │ ├── Natasha.CSharp.Extension.CompileDirector │ │ ├── CompileDirector.cs │ │ └── Natasha.CSharp.Extension.CompileDirector.csproj │ └── Natasha.CSharp.Extension.MethodCreator │ │ ├── MethodExtension │ │ ├── NatashaAsyncDelegateExtension.cs │ │ ├── NatashaDelegateExtension.cs │ │ ├── NatashaUnsafeAsyncDelegateExtension.cs │ │ └── NatashaUnsafeDelegateExtension.cs │ │ ├── Natasha.CSharp.Extension.MethodCreator.csproj │ │ ├── NatashaSlimMethodBuilder.cs │ │ ├── StringExtension │ │ ├── StringToAsyncMethodExtension.cs │ │ ├── StringToBuilderExtension.cs │ │ ├── StringToMethodExtension.cs │ │ ├── StringToUnsafeAsyncMethodExtension.cs │ │ └── StringToUnsafeMethodExtension.cs │ │ └── targets │ │ ├── Project.Usings.targets │ │ └── Project.targets │ ├── Natasha.CSharp.Compiler │ ├── CompileUnit │ │ ├── AssemblyCSharpBuilder.Compile.cs │ │ ├── AssemblyCSharpBuilder.CompileOption.cs │ │ ├── AssemblyCSharpBuilder.Emit.cs │ │ ├── AssemblyCSharpBuilder.Event.cs │ │ ├── AssemblyCSharpBuilder.LoadContext.cs │ │ ├── AssemblyCSharpBuilder.Log.cs │ │ ├── AssemblyCSharpBuilder.Ouput.cs │ │ ├── AssemblyCSharpBuilder.References.cs │ │ ├── AssemblyCSharpBuilder.Semantic.cs │ │ ├── AssemblyCSharpBuilder.Syntax.cs │ │ ├── AssemblyCSharpBuilder.Usings.cs │ │ ├── AssemblyCSharpBuilder.cs │ │ ├── Configuration │ │ │ ├── DebugConfiguration.cs │ │ │ ├── DomainConfiguration.cs │ │ │ └── ReferenceConfiguration.cs │ │ └── SemanticAnalaysis │ │ │ └── UsingAnalysistor.cs │ ├── Component │ │ ├── Cache │ │ │ ├── NatashaMetadataCache.cs │ │ │ └── NatashaUsingCache.cs │ │ ├── Compiler │ │ │ ├── GlobalSupperessCache.cs │ │ │ ├── Model │ │ │ │ ├── CombineReferenceBehavior.cs │ │ │ │ ├── CompilerBinderFlags.cs │ │ │ │ └── UsingLoadBehavior.cs │ │ │ ├── NatashaCSharpCompilerOptions.cs │ │ │ └── Utils │ │ │ │ ├── CompilerInnerHelper.cs │ │ │ │ └── RuntimeInnerHelper.cs │ │ ├── Domain │ │ │ └── DomainManagement.cs │ │ ├── Exception │ │ │ ├── Model │ │ │ │ ├── ExceptionKind.cs │ │ │ │ └── NatashaException.cs │ │ │ └── NatashaExceptionAnalyzer.cs │ │ ├── Metadata │ │ │ ├── MetadataHelper.cs │ │ │ ├── NatashaLoadContext.Reference.cs │ │ │ ├── NatashaLoadContext.Usings.cs │ │ │ ├── NatashaLoadContext.UsingsAndReferences.cs │ │ │ └── NatashaLoadContext.cs │ │ ├── NLog │ │ │ └── NatashaCompilationLog.cs │ │ └── Syntax │ │ │ └── NatashaCSharpSyntax.cs │ ├── Extension │ │ ├── Inner │ │ │ ├── CSharpCompilationExtension.cs │ │ │ ├── ConcurrentDictionaryExtension.cs │ │ │ ├── StopwatchExtension.cs │ │ │ └── SyntaxNodeExtension.cs │ │ ├── NatashaAssemblyBuilderExtension.cs │ │ ├── NatashaAssemblyExtension.cs │ │ ├── NatashaDelegateExtension.cs │ │ ├── NatashaDiagnosticsExtension.cs │ │ ├── NatashaDomainExtension.cs │ │ ├── NatashaLoadContextExtension.cs │ │ ├── NatashaStringExtension.cs │ │ └── NatashaTypeExtension.cs │ ├── Natasha.CSharp.Compiler.csproj │ ├── NatashaInitializer.cs │ ├── NatashaManagement.cs │ ├── Reverser │ │ ├── AvailableNameReverser.cs │ │ ├── TypeNameReverser.cs │ │ └── TypeNatashaExtension.cs │ ├── Utils │ │ ├── NatashaAccessHelper.cs │ │ ├── NatashaAssemblyHelper.cs │ │ ├── NatashaCoreClrShim.cs │ │ ├── NatashaFileRepeateHelper.cs │ │ ├── NatashaInitializeHelper.cs │ │ ├── NatashaPdbHelpers.cs │ │ ├── NatashaPrivateAssemblySyntaxHelper.cs │ │ └── ReflectionUtilities.cs │ └── targets │ │ ├── Project.Usings.targets │ │ └── Project.targets │ └── Natasha.DynamicLoad.Base │ ├── INatashaDynamicLoadContextBase.cs │ ├── INatashaDynamicLoadContextCreator.cs │ ├── Model │ ├── AssemblyCompareInformation.cs │ ├── AssemblyLoadVersionResult.cs │ └── AssemblyNameExtension.cs │ └── Natasha.DynamicLoad.Base.csproj └── test ├── Directory.Build.props ├── benchmark ├── BenchmarkProject │ ├── BenchmarkProject.csproj │ ├── Program.cs │ └── TestClass.cs ├── NatashaBenchmark │ ├── DynamicCallFieldTest.cs │ ├── DynamicCallInitTest.cs │ ├── DynamicCallPropertyTest.cs │ ├── DynamicCloneTest.cs │ ├── DynamicInterfaceTest.cs │ ├── DynamicMethodTest.cs │ ├── Model │ │ ├── CallModel.cs │ │ └── OtherNameSpaceMethod.cs │ ├── NatashaBenchmark.csproj │ ├── Program.cs │ └── UnsafeDelegate.cs └── NormalBenchmark │ ├── NormalBenchmark.csproj │ ├── Program.cs │ └── UnsafeDelegate.cs ├── monitor ├── ReferenceTest50 │ ├── Program.cs │ ├── ReferenceTest50.csproj │ └── Test.cs ├── UnloadTest31 │ ├── Program.cs │ └── UnloadTest31.csproj ├── UnloadTest50 │ ├── Program.cs │ └── UnloadTest50.csproj └── UnloadTest60 │ ├── Program.cs │ └── UnloadTest60.csproj ├── ut ├── Compile │ ├── MemAssembly │ │ ├── Compile │ │ │ ├── Access │ │ │ │ ├── AccessModelTest.cs │ │ │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ │ │ └── PrivateTest.cs │ │ │ ├── CompileSemanticTest.cs │ │ │ ├── DupTypes │ │ │ │ └── DuplicatedTypesTest.cs │ │ │ ├── Member │ │ │ │ ├── MemberReflectTest.cs │ │ │ │ └── Utils │ │ │ │ │ └── MemberHelper.cs │ │ │ ├── Oop │ │ │ │ ├── OopTest.cs │ │ │ │ ├── Oop_TTest.cs │ │ │ │ └── Utils │ │ │ │ │ └── OopCheckHelper.cs │ │ │ ├── Output │ │ │ │ ├── OutputTest.cs │ │ │ │ └── SingleOutputTest.cs │ │ │ ├── SameDomainTest.cs │ │ │ ├── Semantic │ │ │ │ ├── SemanticTest.cs │ │ │ │ └── Utils │ │ │ │ │ └── SemanticHelper.cs │ │ │ └── Suppress │ │ │ │ ├── DiagnosticsLevelError.cs │ │ │ │ ├── DiagnosticsLevelWarning.cs │ │ │ │ ├── SuppressReport.cs │ │ │ │ └── Utils │ │ │ │ └── DiagnosticsHelper.cs │ │ ├── CompilePrepareBase.cs │ │ ├── Context │ │ │ ├── LoadContextManagementTest.cs │ │ │ └── ReferenceTest.cs │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ ├── LogInfo │ │ │ ├── ErrorLogTest.cs │ │ │ ├── LogFile │ │ │ │ ├── 2d79d3e2b027491f93705a4098578bcd.txt │ │ │ │ ├── ed79d3e2b027491f93705a4098578bcd.txt │ │ │ │ ├── ee79d3e2b027491f93705a4098568bc8.txt │ │ │ │ ├── ee79d3e2b027491f93705a4098568bc9.txt │ │ │ │ └── ee79d3e2b027491f93705a4098578bcc.txt │ │ │ ├── SucceedLogTest.cs │ │ │ └── Utils │ │ │ │ └── LogCheckHelper.cs │ │ ├── MemAssembly.csproj │ │ └── Script │ │ │ ├── FormartTest.cs │ │ │ ├── ParseExceptionTest.cs │ │ │ ├── Reverser │ │ │ ├── TypeNameReverserTest.cs │ │ │ └── TypeReflectionTest.cs │ │ │ └── SyntaxOopNameTest.cs │ └── RefAssembly │ │ ├── Compile │ │ ├── Access │ │ │ ├── AccessModelTest.cs │ │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ │ └── PrivateTest.cs │ │ ├── CompileSemanticTest.cs │ │ ├── DupTypes │ │ │ └── DuplicatedTypesTest.cs │ │ ├── Member │ │ │ ├── MemberReflectTest.cs │ │ │ └── Utils │ │ │ │ └── MemberHelper.cs │ │ ├── Oop │ │ │ ├── OopTest.cs │ │ │ ├── Oop_TTest.cs │ │ │ └── Utils │ │ │ │ └── OopCheckHelper.cs │ │ ├── Output │ │ │ ├── OutputTest.cs │ │ │ └── SingleOutputTest.cs │ │ ├── SameDomainTest.cs │ │ ├── Semantic │ │ │ ├── SemanticTest.cs │ │ │ └── Utils │ │ │ │ └── SemanticHelper.cs │ │ └── Suppress │ │ │ ├── DiagnosticsLevelError.cs │ │ │ ├── DiagnosticsLevelWarning.cs │ │ │ ├── SuppressReport.cs │ │ │ └── Utils │ │ │ └── DiagnosticsHelper.cs │ │ ├── CompilePrepareBase.cs │ │ ├── Context │ │ ├── LoadContextManagementTest.cs │ │ └── ReferenceTest.cs │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ ├── LogInfo │ │ ├── ErrorLogTest.cs │ │ ├── LogFile │ │ │ ├── 2d79d3e2b027491f93705a4098578bcd.txt │ │ │ ├── ed79d3e2b027491f93705a4098578bcd.txt │ │ │ ├── ee79d3e2b027491f93705a4098568bc8.txt │ │ │ ├── ee79d3e2b027491f93705a4098568bc9.txt │ │ │ └── ee79d3e2b027491f93705a4098578bcc.txt │ │ ├── SucceedLogTest.cs │ │ └── Utils │ │ │ └── LogCheckHelper.cs │ │ ├── RefAssembly.csproj │ │ └── Script │ │ ├── FormartTest.cs │ │ ├── ParseExceptionTest.cs │ │ ├── Reverser │ │ ├── TypeNameReverserTest.cs │ │ └── TypeReflectionTest.cs │ │ └── SyntaxOopNameTest.cs ├── Extension │ ├── Extension │ │ ├── CS0104Test.cs │ │ ├── NatashaFunctionUT.csproj │ │ ├── Reverser │ │ │ ├── AccessReverserTest.cs │ │ │ ├── CanOvverideMethodReverserTest.cs │ │ │ ├── GenericConstraintReverserTest.cs │ │ │ ├── ModifierReverserTest.cs │ │ │ ├── NullableReverserTest.cs │ │ │ ├── TypeNameReverserTest.cs │ │ │ └── TypeReflectionTest.cs │ │ ├── Special │ │ │ ├── CS0104 │ │ │ │ ├── CS0104Test.cs │ │ │ │ └── Cs0104Model.cs │ │ │ ├── DeconstructTest.cs │ │ │ ├── Private │ │ │ │ └── PrivateTest.cs │ │ │ └── Readonly │ │ │ │ └── ReadonlyTest.cs │ │ ├── StringExtension.cs │ │ ├── Template │ │ │ ├── Compile │ │ │ │ ├── ClassBuilderTest.cs │ │ │ │ ├── EnumBuilderTest.cs │ │ │ │ ├── FakeOperatorTest.cs │ │ │ │ ├── FastOperatorTest.cs │ │ │ │ ├── InterfaceBuilderTest.cs │ │ │ │ ├── MethodOperatorTest.cs │ │ │ │ ├── NDelegateTest.cs │ │ │ │ └── StructBuilderTest.cs │ │ │ └── Script │ │ │ │ ├── FieldTemplateTest.cs │ │ │ │ ├── MethodTemplateTest.cs │ │ │ │ ├── OopTemplateTest.cs │ │ │ │ └── PropertyTemplateTest.cs │ │ └── natasha.snk │ └── Template │ │ ├── AssemblyFileTest.cs │ │ ├── AssemblyPluginTest.cs │ │ ├── AssemblyUT │ │ └── AssemblyTest.cs │ │ ├── BuilderUT │ │ ├── AssemblyBuilderTest.cs │ │ ├── ClassBuilderTest.cs │ │ ├── EnumBuilderTest.cs │ │ ├── InterfaceBuilderTest.cs │ │ └── StructBuilderTest.cs │ │ ├── CS0104Test.cs │ │ ├── CS0433Test.cs │ │ ├── CSharp9 │ │ └── C9SyntaxTest.cs │ │ ├── CoolTechs │ │ ├── PrivateTest.cs │ │ └── ReadonlyTest.cs │ │ ├── DynamicCtorTest.cs │ │ ├── DynamicMethodTest.cs │ │ ├── ExceptionTest.cs │ │ ├── File │ │ ├── TestFileModel.cs │ │ └── TextFile1.txt │ │ ├── Issue │ │ └── 2020 │ │ │ ├── 06 - Issues.cs │ │ │ └── 07 - Issues.cs │ │ ├── Lib │ │ ├── Diff │ │ │ ├── fileV1 │ │ │ │ ├── asmV1 │ │ │ │ │ ├── TestDifferentLibrary.dll │ │ │ │ │ ├── TestRefererenceLibrary.deps.json │ │ │ │ │ └── TestRefererenceLibrary.dll │ │ │ │ ├── asmV2 │ │ │ │ │ ├── TestDifferentLibrary.dll │ │ │ │ │ ├── TestReferenceLibrary2.deps.json │ │ │ │ │ └── TestReferenceLibrary2.dll │ │ │ │ └── asmV3 │ │ │ │ │ └── TestDifferentLibrary.dll │ │ │ ├── fileV2 │ │ │ │ ├── asmV1 │ │ │ │ │ └── TestDifferentLibrary.dll │ │ │ │ └── asmV2 │ │ │ │ │ └── TestDifferentLibrary.dll │ │ │ └── fileV3 │ │ │ │ ├── v1 │ │ │ │ ├── Dependency.dll │ │ │ │ ├── DiffVersionLibrary.deps.json │ │ │ │ ├── DiffVersionLibrary.dll │ │ │ │ └── MySql.Data.dll │ │ │ │ └── v2 │ │ │ │ ├── Dependency.dll │ │ │ │ ├── DiffVersionLibrary.deps.json │ │ │ │ ├── DiffVersionLibrary.dll │ │ │ │ └── MySql.Data.dll │ │ ├── Json │ │ │ ├── ClassLibrary6.deps.json │ │ │ └── ClassLibrary6.dll │ │ ├── Repeate │ │ │ ├── ClassLibrary1.deps.json │ │ │ ├── ClassLibrary1.dll │ │ │ └── ClassLibrary2.dll │ │ ├── Sql │ │ │ ├── ClassLibrary1.deps.json │ │ │ ├── ClassLibrary1.dll │ │ │ └── ClassLibrary2.dll │ │ └── Static │ │ │ ├── ClassLibrary5.deps.json │ │ │ ├── ClassLibrary5.dll │ │ │ └── ClassLibrary6.dll │ │ ├── Model │ │ ├── CloneTestModel.cs │ │ ├── Cs0104Model.cs │ │ ├── MethodSpecialTestModel.cs │ │ ├── NormalTestModel.cs │ │ ├── OopTestModel.cs │ │ ├── OtherNameSpaceMethod.cs │ │ ├── ReadonlyModel.cs │ │ ├── RemoteTestModel.cs │ │ └── StaticTestModel.cs │ │ ├── NDomainMethodTest.cs │ │ ├── NatashaUT.csproj │ │ ├── OperatorUT │ │ ├── FakeOperatorUT.cs │ │ ├── FastOperatorUT.cs │ │ └── NDelegateUT.cs │ │ ├── PluginUT │ │ ├── PluginStreamTest.cs │ │ └── PluginTest.cs │ │ ├── PrepareTest.cs │ │ ├── ReverserUT │ │ ├── AccessReverserUT.cs │ │ ├── GenericConstraintReverserUT.cs │ │ ├── Model │ │ │ └── ReveserModel.cs │ │ ├── ModifierFieldReverserUT.cs │ │ ├── ModifierMethodReverserUT.cs │ │ ├── NullableReverserUT.cs │ │ ├── ReverserUT.cs │ │ └── TypeReverserUT.cs │ │ ├── SameTypeTest.cs │ │ ├── SyntaxUT │ │ ├── SyntaxFormartTest.cs │ │ └── SyntaxTest.cs │ │ ├── TemplateUT │ │ ├── FieldTemplateTest.cs │ │ ├── MethodTemplateTest.cs │ │ ├── OopTemplateTest.cs │ │ └── PropertyTemplateTest.cs │ │ ├── TypeGetterTest.cs │ │ └── TypeTest.cs ├── Natasha.CSharp.UnitTest.Base │ ├── DomainPrepareBase.cs │ ├── Extension │ │ ├── CSharpCompilationExtension.cs │ │ ├── StringExtension.cs │ │ └── SyntaxNodeExtension.cs │ ├── NameGenerator.cs │ ├── Natasha.CSharp.UnitTest.Base.csproj │ ├── OSStringCompare.cs │ ├── SimpleCompiler.cs │ └── natasha.snk └── Plugin │ ├── Compile │ ├── Compile.csproj │ ├── Compile │ │ ├── CompilePrepare.cs │ │ └── CompileReferencesTest.cs │ ├── DomainPrepare.cs │ └── natasha.snk │ ├── Domain │ ├── Domain.csproj │ ├── Domain │ │ ├── DomainPrepare.cs │ │ ├── Load │ │ │ ├── TestDomain.cs │ │ │ └── UnloadTest.cs │ │ ├── Plugin │ │ │ ├── DNDV │ │ │ │ ├── 1 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── DNDV1.deps.json │ │ │ │ │ │ ├── DNDV1.dll │ │ │ │ │ │ ├── DNDV1.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── DNDV1.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── DNDV1.deps.json │ │ │ │ │ │ ├── DNDV1.dll │ │ │ │ │ │ ├── DNDV1.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── DNDV1.deps.json │ │ │ │ │ │ ├── DNDV1.dll │ │ │ │ │ │ ├── DNDV1.runtimeconfig.dev.json │ │ │ │ │ │ ├── DNDV1.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ ├── unix │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ └── win │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── 2 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── DNDV2.deps.json │ │ │ │ │ │ ├── DNDV2.dll │ │ │ │ │ │ ├── DNDV2.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── DNDV2.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── DNDV2.deps.json │ │ │ │ │ │ ├── DNDV2.dll │ │ │ │ │ │ ├── DNDV2.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── PluginBase.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── DNDV2.deps.json │ │ │ │ │ │ ├── DNDV2.dll │ │ │ │ │ │ ├── DNDV2.runtimeconfig.dev.json │ │ │ │ │ │ ├── DNDV2.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── PluginBase.dll │ │ │ │ └── DNDVTest.cs │ │ │ ├── DNSV │ │ │ │ ├── 1 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── DNSV1.deps.json │ │ │ │ │ │ ├── DNSV1.dll │ │ │ │ │ │ ├── DNSV1.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── DNSV1.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── DNSV1.deps.json │ │ │ │ │ │ ├── DNSV1.dll │ │ │ │ │ │ ├── DNSV1.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── PluginBase.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── DNSV1.deps.json │ │ │ │ │ │ ├── DNSV1.dll │ │ │ │ │ │ ├── DNSV1.runtimeconfig.dev.json │ │ │ │ │ │ ├── DNSV1.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── PluginBase.dll │ │ │ │ ├── 2 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── DNSV2.deps.json │ │ │ │ │ │ ├── DNSV2.dll │ │ │ │ │ │ ├── DNSV2.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── DNSV2.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── DNSV2.deps.json │ │ │ │ │ │ ├── DNSV2.dll │ │ │ │ │ │ ├── DNSV2.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── PluginBase.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── DNSV2.deps.json │ │ │ │ │ │ ├── DNSV2.dll │ │ │ │ │ │ ├── DNSV2.runtimeconfig.dev.json │ │ │ │ │ │ ├── DNSV2.runtimeconfig.json │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ └── PluginBase.dll │ │ │ │ └── DNSVTest.cs │ │ │ ├── PluginPrepare.cs │ │ │ ├── SNDVDV │ │ │ │ ├── 1 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVDV.deps.json │ │ │ │ │ │ ├── SNDVDV.dll │ │ │ │ │ │ ├── SNDVDV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── SNDVDV.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVDV.deps.json │ │ │ │ │ │ ├── SNDVDV.dll │ │ │ │ │ │ ├── SNDVDV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVDV.deps.json │ │ │ │ │ │ ├── SNDVDV.dll │ │ │ │ │ │ ├── SNDVDV.runtimeconfig.dev.json │ │ │ │ │ │ ├── SNDVDV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ ├── unix │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ └── win │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── 2 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVDV.deps.json │ │ │ │ │ │ ├── SNDVDV.dll │ │ │ │ │ │ ├── SNDVDV.runtimeconfig.json │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── SNDVDV.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVDV.deps.json │ │ │ │ │ │ ├── SNDVDV.dll │ │ │ │ │ │ └── SNDVDV.runtimeconfig.json │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVDV.deps.json │ │ │ │ │ │ ├── SNDVDV.dll │ │ │ │ │ │ ├── SNDVDV.runtimeconfig.dev.json │ │ │ │ │ │ └── SNDVDV.runtimeconfig.json │ │ │ │ └── SNDVDVTest.cs │ │ │ ├── SNDVSV │ │ │ │ ├── 1 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVSV.deps.json │ │ │ │ │ │ ├── SNDVSV.dll │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── SNDVSV.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVSV.deps.json │ │ │ │ │ │ ├── SNDVSV.dll │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVSV.deps.json │ │ │ │ │ │ ├── SNDVSV.dll │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.dev.json │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ ├── unix │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ └── win │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── 2 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVSV.deps.json │ │ │ │ │ │ ├── SNDVSV.dll │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── SNDVSV.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVSV.deps.json │ │ │ │ │ │ ├── SNDVSV.dll │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNDVSV.deps.json │ │ │ │ │ │ ├── SNDVSV.dll │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.dev.json │ │ │ │ │ │ ├── SNDVSV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ ├── unix │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ └── win │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ └── SNDVSVTest.cs │ │ │ ├── SNIVDV │ │ │ │ ├── 1 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVDV.deps.json │ │ │ │ │ │ ├── SNIVDV.dll │ │ │ │ │ │ ├── SNIVDV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── SNIVDV.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVDV.deps.json │ │ │ │ │ │ ├── SNIVDV.dll │ │ │ │ │ │ ├── SNIVDV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVDV.deps.json │ │ │ │ │ │ ├── SNIVDV.dll │ │ │ │ │ │ ├── SNIVDV.runtimeconfig.dev.json │ │ │ │ │ │ ├── SNIVDV.runtimeconfig.json │ │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ │ └── runtimes │ │ │ │ │ │ ├── unix │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ │ └── win │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── 2 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVDV.deps.json │ │ │ │ │ │ ├── SNIVDV.dll │ │ │ │ │ │ ├── SNIVDV.runtimeconfig.json │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── SNIVDV.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVDV.deps.json │ │ │ │ │ │ ├── SNIVDV.dll │ │ │ │ │ │ └── SNIVDV.runtimeconfig.json │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVDV.deps.json │ │ │ │ │ │ ├── SNIVDV.dll │ │ │ │ │ │ ├── SNIVDV.runtimeconfig.dev.json │ │ │ │ │ │ └── SNIVDV.runtimeconfig.json │ │ │ │ └── SNIVDVTest.cs │ │ │ ├── SNIVSV │ │ │ │ ├── 1 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVSV.deps.json │ │ │ │ │ │ ├── SNIVSV.dll │ │ │ │ │ │ ├── SNIVSV.runtimeconfig.json │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── SNIVSV.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVSV.deps.json │ │ │ │ │ │ ├── SNIVSV.dll │ │ │ │ │ │ └── SNIVSV.runtimeconfig.json │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVSV.deps.json │ │ │ │ │ │ ├── SNIVSV.dll │ │ │ │ │ │ ├── SNIVSV.runtimeconfig.dev.json │ │ │ │ │ │ └── SNIVSV.runtimeconfig.json │ │ │ │ ├── 2 │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVSV.deps.json │ │ │ │ │ │ ├── SNIVSV.dll │ │ │ │ │ │ ├── SNIVSV.runtimeconfig.json │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── SNIVSV.dll │ │ │ │ │ ├── net8.0 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVSV.deps.json │ │ │ │ │ │ ├── SNIVSV.dll │ │ │ │ │ │ └── SNIVSV.runtimeconfig.json │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── Dapper.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── PluginBase.dll │ │ │ │ │ │ ├── SNIVSV.deps.json │ │ │ │ │ │ ├── SNIVSV.dll │ │ │ │ │ │ ├── SNIVSV.runtimeconfig.dev.json │ │ │ │ │ │ └── SNIVSV.runtimeconfig.json │ │ │ │ └── SNIVSVTest.cs │ │ │ └── Utils │ │ │ │ └── PluginHelper.cs │ │ └── Reference │ │ │ ├── 1.0.0.0 │ │ │ ├── net6.0 │ │ │ │ ├── MetadataDiff.deps.json │ │ │ │ ├── MetadataDiff.dll │ │ │ │ └── ref │ │ │ │ │ └── MetadataDiff.dll │ │ │ ├── net8.0 │ │ │ │ ├── MetadataDiff.deps.json │ │ │ │ └── MetadataDiff.dll │ │ │ └── netcoreapp3.1 │ │ │ │ ├── MetadataDiff.deps.json │ │ │ │ └── MetadataDiff.dll │ │ │ ├── GlobalReferenceTest.cs │ │ │ ├── Libraries │ │ │ ├── DNDV1.deps.json │ │ │ ├── DNDV1.dll │ │ │ ├── DNDV1.runtimeconfig.dev.json │ │ │ ├── DNDV1.runtimeconfig.json │ │ │ ├── Dapper.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── PluginBase.dll │ │ │ ├── System.Data.SqlClient.dll │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ └── sni.dll │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Data.SqlClient.dll │ │ │ └── ReferencePrepare.cs │ └── natasha.snk │ └── Libraries │ ├── DN_DV │ ├── DNDV1 │ │ ├── DNDV1.csproj │ │ └── P1.cs │ └── DNDV2 │ │ ├── DNDV2.csproj │ │ └── P2.cs │ ├── DN_SV │ ├── DNSV1 │ │ ├── DNSV1.csproj │ │ └── P1.cs │ └── DNSV2 │ │ ├── DNSV2.csproj │ │ └── P2.cs │ ├── MetadataDiff │ └── MetadataDiff │ │ ├── MetadataDiff.csproj │ │ └── MetadataModel.cs │ ├── Plugin1 │ ├── P1.cs │ └── Plugin1.csproj │ ├── Plugin2 │ ├── P2.cs │ └── Plugin2.csproj │ ├── PluginBase │ ├── IPluginBase.cs │ └── PluginBase.csproj │ ├── SNDV_DV │ └── SNDVDV │ │ ├── P1.cs │ │ └── SNDVDV.csproj │ ├── SNDV_SV │ └── SNDVSV │ │ ├── P1.cs │ │ └── SNDVSV.csproj │ ├── SNIV_DV │ └── SNIVDV │ │ ├── P1.cs │ │ └── SNIVDV.csproj │ └── SNIV_SV │ └── SNIVSV │ ├── P1.cs │ └── SNIVSV.csproj └── workflow ├── Github.NET.Sdk ├── Core │ ├── CLIHelper.cs │ ├── GithubGraphRequest.cs │ └── GithubSdk.cs ├── Github.NET.Sdk.csproj ├── Model │ ├── GithubComment.cs │ ├── GithubGraphModel.cs │ ├── GithubIssue.cs │ ├── GithubLabel.cs │ ├── GithubLabelable.cs │ ├── GithubPageInfo.cs │ ├── GithubProject.cs │ ├── GithubProjectField.cs │ ├── GithubProjectItem.cs │ ├── GithubPullRequest.cs │ ├── GithubRepository.cs │ └── GithubRepositoryOwner.cs ├── NMSGithubSdk.cs ├── Recommend │ ├── RecommendHelper.cs │ ├── RecommendModel.cs │ ├── recommend.py │ └── stopwords.txt └── Request │ ├── GithubIssueAPI.cs │ ├── GithubLabelAPI.cs │ ├── GithubProjectAPI.cs │ ├── GithubPullRequestAPI.cs │ ├── GithubPullRequestOrIssueAPI.cs │ └── GithubRepositoryAPI.cs ├── Github.NMSAction.NET.Sdk ├── Extension │ └── SolutionConfigurationExtension.cs ├── Github.NMSAction.NET.Sdk.csproj ├── Model │ ├── DependencyConfiguration.cs │ ├── GlobalUsingConfiguration.cs │ ├── IssueTemplateConfiguration.cs │ ├── ProjectConfiguration.cs │ ├── ProjectGlobalConfiguration.cs │ └── SolutionConfiguration.cs └── SolutionRecorder.cs ├── Solution.NET.Sdk ├── Model │ ├── CSharpProject.cs │ ├── CSharpProjectCollection.cs │ └── PropertyGroup.cs ├── Solution.NET.Sdk.csproj └── SolutionInfo.cs ├── Workflow.Initialization ├── Core │ └── ConfigRunner.cs ├── Program.cs ├── ResourcesHelper.cs └── Workflow.Initialization.csproj ├── Workflow.Nuget.Publish ├── Helper │ ├── CLIHelper.cs │ ├── ChangeLogHelper.cs │ └── NugetHelper.cs ├── PublishTest.cs ├── Usings.cs └── Workflow.Nuget.Publish.csproj └── Workflow.Runner ├── Helper ├── CLIHelper.cs └── ChangeLogHelper.cs ├── Runner.cs ├── Usings.cs └── Workflow.Runner.csproj /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: ❓ 有使用上的问题来这里提问 4 | about: For general-purpose questions and answers, see the Discussions section. 5 | url: https://github.com/dotnetcore/Natasha/discussions 6 | -------------------------------------------------------------------------------- /.github/NMS_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: ❓ 有使用上的问题来这里提问 4 | about: For general-purpose questions and answers, see the Discussions section. 5 | url: https://github.com/dotnetcore/Natasha/discussions 6 | -------------------------------------------------------------------------------- /.github/NMS_TEMPLATE/config.yml.template: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: ❓ 有使用上的问题来这里提问 4 | about: For general-purpose questions and answers, see the Discussions section. 5 | url: https://github.com/${{owner_name/repo_name}}/discussions 6 | -------------------------------------------------------------------------------- /.github/NMS_TEMPLATE/dependency.yml.template: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | 9 | ${{nms.denpendency}} 10 | -------------------------------------------------------------------------------- /.github/nmsdb/ci.json: -------------------------------------------------------------------------------- 1 | { 2 | "WorkflowConfig": { 3 | "Deepth": -1, 4 | "Directories": [] 5 | }, 6 | "SrcConfig": { 7 | "Deepth": -1, 8 | "Directories": [] 9 | }, 10 | "TestConfig": { 11 | "Deepth": -1, 12 | "Directories": [] 13 | }, 14 | "SampleConfig": { 15 | "Deepth": -1, 16 | "Directories": [] 17 | }, 18 | "IssuesConfig": { 19 | "Discussion": true, 20 | "Bug": true, 21 | "Task": true, 22 | "Feature": true, 23 | "Feedback": false 24 | } 25 | } -------------------------------------------------------------------------------- /.github/nmsdb/jester_ci_github.json: -------------------------------------------------------------------------------- 1 | { 2 | "WorkflowConfig": { 3 | "Deepth": -1, 4 | "Directories": [] 5 | }, 6 | "SrcConfig": { 7 | "Deepth": -1, 8 | "Directories": [] 9 | }, 10 | "TestConfig": { 11 | "Deepth": -1, 12 | "Directories": [] 13 | }, 14 | "SampleConfig": { 15 | "Deepth": -1, 16 | "Directories": [] 17 | }, 18 | "IssuesConfig": { 19 | "Bug": true, 20 | "Discussion": true, 21 | "Task": false, 22 | "Feature": false, 23 | "Feedback": false 24 | } 25 | } -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | natasha.dotnetcore.xyz -------------------------------------------------------------------------------- /resources/19404084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/resources/19404084.png -------------------------------------------------------------------------------- /resources/natasha.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/resources/natasha.snk -------------------------------------------------------------------------------- /samples/AllProxySample/AllProxySample.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /samples/DebugSample/MyFile.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace DebugSample 8 | { 9 | public static class File 10 | { 11 | public static bool Exists(string path) 12 | { 13 | return false; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /samples/ExtensionSample/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace ExtensionSample12 2 | { 3 | 4 | public class Class1 5 | { 6 | public static int Get() 7 | { 8 | return 24333241; 9 | } 10 | } 11 | public class File 12 | { 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/ExtensionSample/Class2.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Runtime.CompilerServices; 7 | namespace ExtensionSample2 8 | { 9 | 10 | public class C2 11 | { 12 | public static int Get() 13 | { 14 | return 22101; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /samples/ExtensionSample/Class3.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ExtensionSample 8 | { 9 | public class Class3 10 | { 11 | public string Name1 { get; set; } = "abc"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/ExtensionSample/Class4.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ExtensionSample4 8 | { 9 | public class Class4 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/ExtensionSample/Class5.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ExtensionSample5 8 | { 9 | public class Class4 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/ExtensionSample/Class6.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ExtensionSample6 8 | { 9 | public class Class4 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/ExtensionSample/InterceptMain.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | namespace System; 4 | 5 | public static class InterceptMain 6 | { 7 | 8 | [InterceptsLocation( 9 | filePath: @"G:\Project\OpenSource\Natasha\samples\ExtensionSample\Program.cs", 10 | line: 24, 11 | character: 28)] 12 | public static void InterceptMethodMain() 13 | { 14 | 15 | Console.WriteLine(11); 16 | 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /samples/ExtensionSample/InteroAttribute.cs: -------------------------------------------------------------------------------- 1 |  2 | // 3 | namespace System.Runtime.CompilerServices 4 | { 5 | [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] 6 | public sealed class InterceptsLocationAttribute(string filePath, int line, int character) : Attribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /samples/HE/NET5.0/ConsoleSample/ConsoleSample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net5.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/HE/NET5.0/WinFormsSample/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace WinFormsSample 12 | { 13 | public partial class Form1 : Form 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /samples/HE/NET5.0/WinFormsSample/WinFormsSample.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | net5.0-windows 6 | enable 7 | true 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiSample/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Webapi2Sample 4 | { 5 | public class WeatherForecast 6 | { 7 | public DateTime Date { get; set; } 8 | 9 | public int TemperatureC { get; set; } 10 | 11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 12 | 13 | public string? Summary { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiSample/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiSample/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiWIthController/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 4 | public class IgnoresAccessChecksToAttribute : Attribute 5 | { 6 | public IgnoresAccessChecksToAttribute(string assemblyName) 7 | { 8 | AssemblyName = assemblyName; 9 | } 10 | 11 | public string AssemblyName { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiWIthController/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | namespace WebapiWIthController 2 | { 3 | public class WeatherForecast 4 | { 5 | public DateTime Date { get; set; } 6 | 7 | public int TemperatureC { get; set; } 8 | 9 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 10 | 11 | public string? Summary { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiWIthController/WebapiWIthController.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiWIthController/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/HE/NET6.0/WebapiWIthController/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /samples/HE/NET8.0/WebapiSample/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | namespace WebapiSample 2 | { 3 | public class WeatherForecast 4 | { 5 | public DateOnly Date { get; set; } 6 | 7 | public int TemperatureC { get; set; } 8 | 9 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 10 | 11 | public string? Summary { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/HE/NET8.0/WebapiSample/WebapiSample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /samples/HE/NET8.0/WebapiSample/WebapiSample.http: -------------------------------------------------------------------------------- 1 | @WebapiSample_HostAddress = http://localhost:5248 2 | 3 | GET {{WebapiSample_HostAddress}}/weatherforecast/ 4 | Accept: application/json 5 | 6 | ### 7 | -------------------------------------------------------------------------------- /samples/HE/NET8.0/WebapiSample/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/HE/NET8.0/WebapiSample/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /samples/HE/NETCORE3.0/ConsoleSample/ConsoleSample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.1 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/HENET5/HEConsoleSample/HEConsoleSample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net5.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /samples/HENET5/HEConsoleSample/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HEConsoleSample 4 | { 5 | internal class Program 6 | { 7 | static void Main(string[] args) 8 | { 9 | 10 | Console.WriteLine("Hello World!"); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /samples/HESample/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace HESample1 2 | { 3 | public static class Class1 4 | { 5 | public static void Show() 6 | { 7 | Console.WriteLine("11"); 8 | } 9 | } 10 | } 11 | namespace HESample2 12 | { 13 | internal static class Class2 14 | { 15 | public static void Show() 16 | { 17 | Console.WriteLine("1241"); 18 | } 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /samples/HESample/Class2.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace HESample 8 | { 9 | internal class Class2 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/HotReloadPlugin/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace HotReloadPlugin 2 | { 3 | public class A 4 | { 5 | public int Code = 3; 6 | 7 | [CLSCompliant(false)] 8 | public void Show() { Console.WriteLine(Code); } 9 | [CLSCompliant(false)] 10 | public void Show2(int i) { Console.WriteLine(Code+i); } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/HotReloadPlugin/Class2.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace HotReloadPlugin2 8 | { 9 | public class Class2 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/HotReloadPlugin/Class3.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace HotReloadPlugin2 8 | { 9 | internal class Class3 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/HotReloadPlugin/Class4.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace HotReloadPlugin4 8 | { 9 | public class Class4 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/HotReloadPlugin/Class5.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | 8 | public class Class5 9 | { 10 | } 11 | 12 | -------------------------------------------------------------------------------- /samples/HotReloadPlugin/HotReloadPlugin.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net6.0; 5 | enable 6 | enable 7 | preview 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /samples/PluginSample/PluginA/PA.cs: -------------------------------------------------------------------------------- 1 | using PluginBase; 2 | 3 | namespace PluginA 4 | { 5 | public class PluginA : IPluginBase 6 | { 7 | public void ShowVersion() 8 | { 9 | Console.WriteLine("PluginA :" + typeof(Dapper.DefaultTypeMap).Assembly.GetName().Version); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/PluginSample/PluginA/PluginA.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | true 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /samples/PluginSample/PluginB/PB.cs: -------------------------------------------------------------------------------- 1 | using PluginBase; 2 | 3 | namespace PluginB 4 | { 5 | public class PluginB : IPluginBase 6 | { 7 | public void ShowVersion() 8 | { 9 | Console.WriteLine("PluginB :" + typeof(Dapper.DefaultTypeMap).Assembly.GetName().Version); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /samples/PluginSample/PluginB/PluginB.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | true 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /samples/PluginSample/PluginBase/PluginBase.cs: -------------------------------------------------------------------------------- 1 | namespace PluginBase 2 | { 3 | public interface IPluginBase 4 | { 5 | public void ShowVersion(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /samples/PluginSample/PluginBase/PluginBase.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/WPFSample/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /samples/WPFSample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Configuration; 2 | using System.Data; 3 | using System.Windows; 4 | 5 | namespace WPFSample 6 | { 7 | /// 8 | /// Interaction logic for App.xaml 9 | /// 10 | public partial class App : Application 11 | { 12 | 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /samples/WinFormsSample/HEDebug.txt: -------------------------------------------------------------------------------- 1 | 重新扫描文件! 2 | 3 | 检测到空成员文件 G:\Project\OpenSource\Natasha\samples\WinFormsSample\obj\Debug\net8.0-windows\WinFormsSample.GlobalUsings.g.cs. 4 | 5 | 检测到空成员文件 G:\Project\OpenSource\Natasha\samples\WinFormsSample\obj\Release\net8.0-windows\WinFormsSample.GlobalUsings.g.cs. 6 | 7 | -------------------------------------------------------------------------------- /samples/WinFormsSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/samples/WinFormsSample/Program.cs -------------------------------------------------------------------------------- /scanner.bat: -------------------------------------------------------------------------------- 1 | dotnet run -c Release --project ".\test\workflow\Workflow.Initialization\Workflow.Initialization.csproj" -------------------------------------------------------------------------------- /scanner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | dotnet run -c Release --project "./test/workflow/Workflow.Initialization/Workflow.Initialization.csproj" -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/API/Builder/CtorBuilder.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp.Template; 2 | 3 | namespace Natasha.CSharp.Builder 4 | { 5 | public class CtorBuilder : DelegateTemplate 6 | { 7 | 8 | public CtorBuilder() 9 | { 10 | 11 | Link = this; 12 | NoUseType(); 13 | 14 | } 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/API/Builder/FieldBuilder.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp.Template; 2 | 3 | namespace Natasha.CSharp.Builder 4 | { 5 | 6 | public class FieldBuilder : FieldTemplate 7 | { 8 | 9 | public FieldBuilder() 10 | { 11 | Link = this; 12 | } 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/API/Builder/PropertyBuilder.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp.Template; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | 6 | namespace Natasha.CSharp.Builder 7 | { 8 | 9 | public class PropertyBuilder : PropertyTemplate 10 | { 11 | 12 | public PropertyBuilder() 13 | { 14 | Link = this; 15 | } 16 | 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/API/Level2/Operator/NClass.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp; 2 | using Natasha.CSharp.Template; 3 | /// 4 | /// 默认创建一个公有的类 5 | /// 6 | public class NClass : NHandler 7 | { 8 | 9 | public NClass() 10 | { 11 | 12 | Link = this; 13 | this.Class(); 14 | 15 | } 16 | 17 | } 18 | 19 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/API/Level2/Operator/NRecord.cs: -------------------------------------------------------------------------------- 1 |  2 | using Natasha.CSharp; 3 | using Natasha.CSharp.Template; 4 | 5 | public class NRecord : NHandler 6 | { 7 | public NRecord() 8 | { 9 | 10 | Link = this; 11 | this.Record(); 12 | 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/API/Level2/Operator/NStruct.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using Natasha.CSharp; 4 | using Natasha.CSharp.Template; 5 | 6 | public class NStruct : NHandler 7 | { 8 | 9 | public NStruct() 10 | { 11 | 12 | Link = this; 13 | this.Struct(); 14 | 15 | } 16 | 17 | } 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Field/FieldTemplate.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.Template 2 | { 3 | 4 | public class FieldTemplate : DefinedNameTemplate where T : FieldTemplate, new() 5 | { 6 | 7 | public override T BuilderScript() 8 | { 9 | // [comment] 10 | // [attribute] 11 | // [access] [modifier] [type] [name][{this}] 12 | base.BuilderScript(); 13 | _script.Append(';'); 14 | return Link; 15 | 16 | } 17 | 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Reverser/AsyncReverser.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | namespace Natasha.CSharp.Template.Reverser 5 | { 6 | public static class AsyncReverser 7 | { 8 | 9 | public static string GetAsync(MethodInfo info) 10 | { 11 | 12 | return info.GetCustomAttribute(typeof(AsyncStateMachineAttribute)) == null ? string.Empty : "async "; 13 | 14 | } 15 | 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Reverser/Model/AccessTypes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | /// 3 | /// 访问级别枚举 4 | /// 5 | [Flags] 6 | public enum AccessFlags 7 | { 8 | None, 9 | Public, 10 | Private, 11 | Protected, 12 | Internal, 13 | InternalAndProtected 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Reverser/Model/ConstraintFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Flags] 4 | public enum ConstraintFlags 5 | { 6 | Class, 7 | Struct, 8 | Unmanaged, 9 | New 10 | } 11 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Reverser/Model/ModifierFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | /// 3 | /// 修饰符枚举 4 | /// 5 | [Flags] 6 | public enum ModifierFlags 7 | { 8 | None, 9 | Const, 10 | Static, 11 | Virtual, 12 | New, 13 | Override, 14 | Abstract, 15 | Async, 16 | Unsafe, 17 | Readonly, 18 | Fixed, 19 | Sealed 20 | 21 | } 22 | 23 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Reverser/NET50OR31/NullabilityState.cs: -------------------------------------------------------------------------------- 1 | #if !NET6_0_OR_GREATER 2 | 3 | namespace System.Reflection 4 | { 5 | public enum NullabilityState 6 | { 7 | // 8 | // 摘要: 9 | // Nullability context not enabled (oblivious). 10 | Unknown = 0, 11 | // 12 | // 摘要: 13 | // Non-nullable value or reference type. 14 | NotNull = 1, 15 | // 16 | // 摘要: 17 | // Nullable value or reference type. 18 | Nullable = 2 19 | } 20 | } 21 | #endif 22 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Reverser/UnsafeReverser.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace Natasha.CSharp.Template.Reverser 4 | { 5 | public static class UnsafeReverser 6 | { 7 | 8 | public static void GetUnsafe(MethodInfo info) 9 | { 10 | //todo 11 | //return info.GetCustomAttribute(typeof(AsyncStateMachineAttribute))==null?"":"async "; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Standard/LinkTemplate.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.Template 2 | { 3 | public class ALinkTemplate 4 | { 5 | 6 | public T Link; 7 | 8 | public ALinkTemplate() 9 | { 10 | Link = default!; 11 | 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Targets/Project.Usings.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Targets/Project.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Utils/Core31Supplement.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace System.Runtime.CompilerServices 6 | { 7 | 8 | #if !NET5_0_OR_GREATER 9 | public sealed class SkipLocalsInitAttribute : Attribute { } 10 | #endif 11 | 12 | } -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Core/Natasha.CSharp.Template.Core/Utils/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 4 | public class IgnoresAccessChecksToAttribute : Attribute 5 | { 6 | public IgnoresAccessChecksToAttribute(string assemblyName) 7 | { 8 | AssemblyName = assemblyName; 9 | } 10 | 11 | public string AssemblyName { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/API/Builder/CtorBuilder.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp.Template; 2 | 3 | namespace Natasha.CSharp.Builder 4 | { 5 | public class CtorBuilder : DelegateTemplate 6 | { 7 | 8 | public CtorBuilder() 9 | { 10 | 11 | Link = this; 12 | NoUseType(); 13 | 14 | } 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/API/Builder/FieldBuilder.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp.Template; 2 | 3 | namespace Natasha.CSharp.Builder 4 | { 5 | 6 | public class FieldBuilder : FieldTemplate 7 | { 8 | 9 | public FieldBuilder() 10 | { 11 | Link = this; 12 | } 13 | 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/API/Builder/PropertyBuilder.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp.Template; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | 6 | namespace Natasha.CSharp.Builder 7 | { 8 | 9 | public class PropertyBuilder : PropertyTemplate 10 | { 11 | 12 | public PropertyBuilder() 13 | { 14 | Link = this; 15 | } 16 | 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/API/Level2/Operator/NClass.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp; 2 | using Natasha.CSharp.Template; 3 | /// 4 | /// 默认创建一个公有的类 5 | /// 6 | public class NClass : NHandler 7 | { 8 | 9 | public NClass() 10 | { 11 | 12 | Link = this; 13 | this.Class(); 14 | 15 | } 16 | 17 | } 18 | 19 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/API/Level2/Operator/NRecord.cs: -------------------------------------------------------------------------------- 1 |  2 | using Natasha.CSharp; 3 | using Natasha.CSharp.Template; 4 | 5 | public class NRecord : NHandler 6 | { 7 | public NRecord() 8 | { 9 | 10 | Link = this; 11 | this.Record(); 12 | 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/API/Level2/Operator/NStruct.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using Natasha.CSharp; 4 | using Natasha.CSharp.Template; 5 | 6 | public class NStruct : NHandler 7 | { 8 | 9 | public NStruct() 10 | { 11 | 12 | Link = this; 13 | this.Struct(); 14 | 15 | } 16 | 17 | } 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Field/FieldTemplate.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.Template 2 | { 3 | 4 | public class FieldTemplate : DefinedNameTemplate where T : FieldTemplate, new() 5 | { 6 | 7 | public override T BuilderScript() 8 | { 9 | // [comment] 10 | // [attribute] 11 | // [access] [modifier] [type] [name][{this}] 12 | base.BuilderScript(); 13 | _script.Append(';'); 14 | return Link; 15 | 16 | } 17 | 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Reverser/AsyncReverser.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | namespace Natasha.CSharp.Template.Reverser 5 | { 6 | public static class AsyncReverser 7 | { 8 | 9 | public static string GetAsync(MethodInfo info) 10 | { 11 | 12 | return info.GetCustomAttribute(typeof(AsyncStateMachineAttribute)) == null ? string.Empty : "async "; 13 | 14 | } 15 | 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Reverser/Model/AccessTypes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | /// 3 | /// 访问级别枚举 4 | /// 5 | [Flags] 6 | public enum AccessFlags 7 | { 8 | None, 9 | Public, 10 | Private, 11 | Protected, 12 | Internal, 13 | InternalAndProtected 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Reverser/Model/ConstraintFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Flags] 4 | public enum ConstraintFlags 5 | { 6 | Class, 7 | Struct, 8 | Unmanaged, 9 | New 10 | } 11 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Reverser/Model/ModifierFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | /// 3 | /// 修饰符枚举 4 | /// 5 | [Flags] 6 | public enum ModifierFlags 7 | { 8 | None, 9 | Const, 10 | Static, 11 | Virtual, 12 | New, 13 | Override, 14 | Abstract, 15 | Async, 16 | Unsafe, 17 | Readonly, 18 | Fixed, 19 | Sealed 20 | 21 | } 22 | 23 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Reverser/NET50OR31/NullabilityState.cs: -------------------------------------------------------------------------------- 1 | #if !NET6_0_OR_GREATER 2 | 3 | namespace System.Reflection 4 | { 5 | public enum NullabilityState 6 | { 7 | // 8 | // 摘要: 9 | // Nullability context not enabled (oblivious). 10 | Unknown = 0, 11 | // 12 | // 摘要: 13 | // Non-nullable value or reference type. 14 | NotNull = 1, 15 | // 16 | // 摘要: 17 | // Nullable value or reference type. 18 | Nullable = 2 19 | } 20 | } 21 | #endif 22 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Reverser/UnsafeReverser.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace Natasha.CSharp.Template.Reverser 4 | { 5 | public static class UnsafeReverser 6 | { 7 | 8 | public static void GetUnsafe(MethodInfo info) 9 | { 10 | //todo 11 | //return info.GetCustomAttribute(typeof(AsyncStateMachineAttribute))==null?"":"async "; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Standard/LinkTemplate.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.Template 2 | { 3 | public class ALinkTemplate 4 | { 5 | 6 | public T Link; 7 | 8 | public ALinkTemplate() 9 | { 10 | Link = default!; 11 | 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Targets/Project.Usings.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Component/Framework/Natasha.CSharp.Template.Framework/Utils/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 4 | public class IgnoresAccessChecksToAttribute : Attribute 5 | { 6 | public IgnoresAccessChecksToAttribute(string assemblyName) 7 | { 8 | AssemblyName = assemblyName; 9 | } 10 | 11 | public string AssemblyName { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor.Wrapper/targets/NugetPackage.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor.Wrapper/targets/Project.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor/HEProxyState.cs: -------------------------------------------------------------------------------- 1 |  2 | public static class HEProxyState 3 | { 4 | public static T Value = default!; 5 | } 6 | 7 | public static class HEProxyState 8 | { 9 | public static void SetValue(T value) 10 | { 11 | HEProxyState.Value = value; 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor/ReCompile/Component/SyntaxRewriter/SyntaxPlugin/Standard/TriviaSyntaxPluginBase.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.HotExecutor.Component.SyntaxPlugin 2 | { 3 | public abstract class TriviaSyntaxPluginBase 4 | { 5 | public abstract void Initialize(); 6 | public abstract bool IsMatch(string comment, string lowerComment); 7 | 8 | public abstract string? Handle(string comment, string lowerComment); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor/ReCompile/Model/HEProjectKind.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.HotExecutor 2 | { 3 | public enum HEProjectKind 4 | { 5 | Winform, 6 | Console, 7 | AspnetCore, 8 | WPF 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor/ReCompile/Utils/HECommentHelper.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.HotExecutor.Utils 2 | { 3 | public static class HECommentHelper 4 | { 5 | public static string GetCommentScript(string comment, int startIndex) 6 | { 7 | if (comment.EndsWith(";")) 8 | { 9 | return comment.Substring(startIndex, comment.Length - startIndex - 1); 10 | } 11 | return comment[startIndex..]; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor/targets/Project.Usings.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/Natasha.CSharp.HotExecutor/targets/Project.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/HotExecutor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/src/Natasha.CSharp/Extension/HotExecutor/README.md -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.Ambiguity/Extension/AssenblyCSharpBuilderExtension.cs: -------------------------------------------------------------------------------- 1 | using Natasha.CSharp.Extension.Ambiguity; 2 | 3 | public static class AssenblyCSharpBuilder 4 | { 5 | public static AssemblyCSharpBuilder WithCodecov(this AssemblyCSharpBuilder builder) 6 | { 7 | builder.AddSemanticAnalysistor(AmbiguityUsings.SemanticAction); 8 | return builder; 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.Codecov/targets/Project.Usings.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.Codecov/targets/Project.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.MethodCreator/targets/Project.Usings.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.MethodCreator/targets/Project.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/Component/Compiler/Model/CombineReferenceBehavior.cs: -------------------------------------------------------------------------------- 1 | public enum CombineReferenceBehavior 2 | { 3 | UseCurrent = 1, 4 | CombineDefault = 2, 5 | UseSpecified = 4 6 | 7 | } 8 | 9 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/Component/Compiler/Model/UsingLoadBehavior.cs: -------------------------------------------------------------------------------- 1 | public enum UsingLoadBehavior 2 | { 3 | /// 4 | /// 不合并 UsingCode, 只用手写的 Using. 5 | /// 6 | None = 0, 7 | /// 8 | /// 仅使用 [共享域] 加载或者编译产生的 UsingCode 9 | /// 10 | WithDefault = 1, 11 | /// 12 | /// 仅使用 [当前域] 加载或者编译产生的 UsingCode 13 | /// 14 | WithCurrent = 2, 15 | /// 16 | /// 合并 [共享域] 以及 [当前域] 的 UsingCode 17 | /// 18 | WithAll = 3 19 | } 20 | 21 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/Component/Exception/Model/ExceptionKind.cs: -------------------------------------------------------------------------------- 1 | public enum NatashaExceptionKind 2 | { 3 | None, 4 | Assembly, 5 | Type, 6 | Method, 7 | Delegate, 8 | Syntax, 9 | Compile 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/Extension/Inner/ConcurrentDictionaryExtension.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Concurrent; 2 | 3 | static class ConcurrentDictionaryExtension 4 | { 5 | public static S? Remove(this ConcurrentDictionary dict, T key) where T : notnull where S : notnull 6 | { 7 | 8 | while (!dict.TryRemove(key, out var result)) 9 | { 10 | if (!dict.ContainsKey(key)) 11 | { 12 | return result; 13 | } 14 | } 15 | return default; 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/Extension/NatashaDelegateExtension.cs: -------------------------------------------------------------------------------- 1 | using Natasha.DynamicLoad.Base; 2 | using System; 3 | 4 | 5 | public static class NatashaDelegateExtension 6 | { 7 | public static INatashaDynamicLoadContextBase? GetDomain(this Delegate @delegate) 8 | { 9 | 10 | return @delegate.Method.Module.Assembly.GetDomain(); 11 | 12 | } 13 | 14 | 15 | 16 | public static void DisposeDomain(this Delegate @delegate) 17 | { 18 | 19 | @delegate.Method.Module.Assembly.DisposeDomain(); 20 | 21 | } 22 | } -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/Extension/NatashaDomainExtension.cs: -------------------------------------------------------------------------------- 1 | //using static System.Runtime.Loader.AssemblyLoadContext; 2 | //public static class NatashaDomainExtension 3 | //{ 4 | 5 | // /// 6 | // /// 创建一个以该字符串命名的域并锁定 7 | // /// 8 | // /// 9 | // /// 10 | // public static ContextualReflectionScope NatashaDomainScope(this string domain) 11 | // { 12 | // return DomainManagement.Create(domain).EnterContextualReflection(); 13 | // } 14 | 15 | //} -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/targets/Project.Usings.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.CSharp.Compiler/targets/Project.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.DynamicLoad.Base/Model/AssemblyCompareInformation.cs: -------------------------------------------------------------------------------- 1 | public enum AssemblyCompareInformation 2 | { 3 | None, 4 | UseHighVersion, 5 | UseLowVersion, 6 | UseDefault, 7 | UseCustom, 8 | UseForce 9 | } -------------------------------------------------------------------------------- /src/Natasha.CSharp/Natasha.DynamicLoad.Base/Model/AssemblyLoadVersionResult.cs: -------------------------------------------------------------------------------- 1 | namespace Natasha.CSharp.Component.Load 2 | { 3 | public enum AssemblyLoadVersionResult 4 | { 5 | /// 6 | /// 无动作 7 | /// 8 | NoAction, 9 | /// 10 | /// 使用默认的 11 | /// 12 | UseDefault, 13 | /// 14 | /// 使用客户的 15 | /// 16 | UseCustomer, 17 | /// 18 | /// 传递给版本控制继续处理 19 | /// 20 | PassToNextHandler 21 | } 22 | } -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | CS0169;CS8602;CS8002;CS8032;1701;1702;0168;NETSDK1138;IDE0060;xUnit2000;CS0067;CS8321;CS0649;CA1822;CS1998;RS1014;CS1591;CA1050; 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/benchmark/BenchmarkProject/BenchmarkProject.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/benchmark/BenchmarkProject/Program.cs: -------------------------------------------------------------------------------- 1 | using BenchmarkDotNet.Running; 2 | 3 | namespace BenchmarkProject 4 | { 5 | internal class Program 6 | { 7 | static void Main(string[] args) 8 | { 9 | BenchmarkRunner.Run(); 10 | Console.ReadKey(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/benchmark/NatashaBenchmark/DynamicCloneTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaBenchmark 6 | { 7 | class DynamicCloneTest 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/benchmark/NatashaBenchmark/DynamicInterfaceTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaBenchmark 6 | { 7 | class DynamicInterfaceTest 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/benchmark/NatashaBenchmark/DynamicMethodTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaBenchmark 6 | { 7 | class DynamicMethodTest 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/benchmark/NatashaBenchmark/Model/CallModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaBenchmark.Model 6 | { 7 | public class CallModel 8 | { 9 | public CallModel() 10 | { 11 | Age = "World!"; 12 | CreateTime = DateTime.Now; 13 | } 14 | public int Id { get; set; } 15 | public string Name { get; set; } 16 | 17 | public string Age; 18 | 19 | public DateTime CreateTime; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /test/benchmark/NatashaBenchmark/Model/OtherNameSpaceMethod.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaBenchmark.Model 6 | { 7 | public class OtherNameSpaceMethod 8 | { 9 | public string FromDate(DateTime dateTime) 10 | { 11 | return dateTime.ToString("yyyy-MM"); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /test/benchmark/NatashaBenchmark/NatashaBenchmark.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net6.0 6 | preview 7 | true 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /test/benchmark/NormalBenchmark/NormalBenchmark.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | enable 7 | enable 8 | true 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /test/benchmark/NormalBenchmark/Program.cs: -------------------------------------------------------------------------------- 1 | // See https://aka.ms/new-console-template for more information 2 | using BenchmarkDotNet.Running; 3 | using NatashaBenchmark; 4 | 5 | BenchmarkRunner.Run(); 6 | Console.ReadKey(); -------------------------------------------------------------------------------- /test/monitor/UnloadTest50/UnloadTest50.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net5.0 6 | 1701;1702;0168;NETSDK1138;IDE0060;xUnit2000;CS0067;CS8321;CS0649;CS8604;CA1822;CS8618; 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/ut/Compile/MemAssembly/Compile/Access/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 4 | public class IgnoresAccessChecksToAttribute : Attribute 5 | { 6 | public IgnoresAccessChecksToAttribute(string assemblyName) 7 | { 8 | AssemblyName = assemblyName; 9 | } 10 | 11 | public string AssemblyName { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/ut/Compile/MemAssembly/CompilePrepareBase.cs: -------------------------------------------------------------------------------- 1 | public class CompilePrepareBase 2 | { 3 | static CompilePrepareBase() 4 | { 5 | NatashaManagement.RegistDomainCreator(); 6 | NatashaManagement.Preheating(true, true); 7 | } 8 | 9 | } 10 | 11 | -------------------------------------------------------------------------------- /test/ut/Compile/MemAssembly/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 4 | public class IgnoresAccessChecksToAttribute : Attribute 5 | { 6 | public IgnoresAccessChecksToAttribute(string assemblyName) 7 | { 8 | AssemblyName = assemblyName; 9 | } 10 | 11 | public string AssemblyName { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/ut/Compile/RefAssembly/Compile/Access/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 4 | public class IgnoresAccessChecksToAttribute : Attribute 5 | { 6 | public IgnoresAccessChecksToAttribute(string assemblyName) 7 | { 8 | AssemblyName = assemblyName; 9 | } 10 | 11 | public string AssemblyName { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/ut/Compile/RefAssembly/CompilePrepareBase.cs: -------------------------------------------------------------------------------- 1 | public class CompilePrepareBase 2 | { 3 | static CompilePrepareBase() 4 | { 5 | NatashaManagement.RegistDomainCreator(); 6 | NatashaManagement.Preheating(false, false); 7 | } 8 | 9 | } 10 | 11 | -------------------------------------------------------------------------------- /test/ut/Compile/RefAssembly/IgnoresAccessChecksToAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 4 | public class IgnoresAccessChecksToAttribute : Attribute 5 | { 6 | public IgnoresAccessChecksToAttribute(string assemblyName) 7 | { 8 | AssemblyName = assemblyName; 9 | } 10 | 11 | public string AssemblyName { get; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/ut/Extension/Extension/Special/CS0104/Cs0104Model.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Cs0104Model1 6 | { 7 | public class Cs0104Model 8 | { 9 | public static string A; 10 | } 11 | 12 | public class CS0104GModel { } 13 | 14 | public class String { public String(string a) { } } 15 | 16 | } 17 | namespace Cs0104Model2 18 | { 19 | public class Cs0104Model 20 | { 21 | } 22 | 23 | public class CS0104GModel { } 24 | } 25 | -------------------------------------------------------------------------------- /test/ut/Extension/Extension/Template/Compile/MethodOperatorTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaFunctionUT.Template.Compile 6 | { 7 | internal class MethodOperatorTest 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/ut/Extension/Extension/natasha.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Extension/natasha.snk -------------------------------------------------------------------------------- /test/ut/Extension/Template/File/TestFileModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace aaa 6 | { 7 | public partial class TestFileModel 8 | { 9 | public int Age; 10 | public TestFileModel() 11 | { 12 | Name = "aaa"; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/ut/Extension/Template/File/TextFile1.txt: -------------------------------------------------------------------------------- 1 | namespace aaa{ 2 | public partial class TestFileModel{ 3 | 4 | public string Name; 5 | } 6 | } -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV1/asmV1/TestDifferentLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV1/asmV1/TestDifferentLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV1/asmV1/TestRefererenceLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV1/asmV1/TestRefererenceLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV1/asmV2/TestDifferentLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV1/asmV2/TestDifferentLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV1/asmV2/TestReferenceLibrary2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV1/asmV2/TestReferenceLibrary2.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV1/asmV3/TestDifferentLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV1/asmV3/TestDifferentLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV2/asmV1/TestDifferentLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV2/asmV1/TestDifferentLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV2/asmV2/TestDifferentLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV2/asmV2/TestDifferentLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV3/v1/Dependency.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV3/v1/Dependency.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV3/v1/DiffVersionLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV3/v1/DiffVersionLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV3/v1/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV3/v1/MySql.Data.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV3/v2/Dependency.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV3/v2/Dependency.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV3/v2/DiffVersionLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV3/v2/DiffVersionLibrary.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Diff/fileV3/v2/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Diff/fileV3/v2/MySql.Data.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Json/ClassLibrary6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Json/ClassLibrary6.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Repeate/ClassLibrary1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Repeate/ClassLibrary1.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Repeate/ClassLibrary2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Repeate/ClassLibrary2.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Sql/ClassLibrary1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Sql/ClassLibrary1.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Sql/ClassLibrary2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Sql/ClassLibrary2.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Static/ClassLibrary5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Static/ClassLibrary5.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Lib/Static/ClassLibrary6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Extension/Template/Lib/Static/ClassLibrary6.dll -------------------------------------------------------------------------------- /test/ut/Extension/Template/Model/Cs0104Model.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Cs0104Model1 6 | { 7 | public class Cs0104Model 8 | { 9 | public static string A; 10 | } 11 | 12 | public class CS0104GModel { } 13 | 14 | public class String { public String(string a) { } } 15 | 16 | } 17 | namespace Cs0104Model2 18 | { 19 | public class Cs0104Model 20 | { 21 | } 22 | 23 | public class CS0104GModel { } 24 | } 25 | -------------------------------------------------------------------------------- /test/ut/Extension/Template/Model/MethodSpecialTestModel.cs: -------------------------------------------------------------------------------- 1 | namespace NatashaUT.Model 2 | { 3 | public class MethodSpecialTestModel 4 | { 5 | public void Test1(in Rsm rsm) { } 6 | public void Test2(out Rsm[]> rsm) { rsm = new Rsm[]>(); } 7 | public void Test3(ref Rsm[]>[] rsm) { } 8 | } 9 | 10 | public class Rsm { 11 | 12 | } 13 | 14 | public class GRsm 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /test/ut/Extension/Template/Model/NormalTestModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaUT.Model 6 | { 7 | public class NormalTestModel 8 | { 9 | public int Age; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/ut/Extension/Template/Model/OtherNameSpaceMethod.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NatashaUT.Model.Method 4 | { 5 | public class OtherNameSpaceMethod 6 | { 7 | public static string FromDate(DateTime dateTime) 8 | { 9 | return dateTime.ToString("yyyy-MM"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test/ut/Extension/Template/Model/ReadonlyModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaUT.Model 6 | { 7 | public class ReadonlyModel 8 | { 9 | private readonly IReadonlyInterface @interface; 10 | 11 | public IReadonlyInterface GetInterface() 12 | { 13 | return @interface; 14 | } 15 | 16 | } 17 | 18 | public interface IReadonlyInterface { } 19 | 20 | public class DefaultReadolyInterface : IReadonlyInterface { } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /test/ut/Extension/Template/Model/RemoteTestModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NatashaUT.Model 4 | { 5 | public class RemoteTestModel 6 | { 7 | public void Say() 8 | { 9 | Console.WriteLine("hello world"); 10 | } 11 | 12 | public string HelloString(string str1,string str2) 13 | { 14 | return str1 + str2; 15 | } 16 | public int HelloInt(int str1, int str2) 17 | { 18 | return str1 + str2; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /test/ut/Extension/Template/PrepareTest.cs: -------------------------------------------------------------------------------- 1 | using Natasha; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | using System.Threading; 6 | 7 | namespace NatashaUT 8 | { 9 | public class PrepareTest 10 | { 11 | static PrepareTest() 12 | { 13 | NatashaInitializer.InitializeAndPreheating(); 14 | Thread.Sleep(3000); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/ut/Natasha.CSharp.UnitTest.Base/DomainPrepareBase.cs: -------------------------------------------------------------------------------- 1 | public class DomainPrepareBase 2 | { 3 | static DomainPrepareBase() 4 | { 5 | NatashaManagement.RegistDomainCreator(); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /test/ut/Natasha.CSharp.UnitTest.Base/NameGenerator.cs: -------------------------------------------------------------------------------- 1 |  2 | public static class NameGenerator 3 | { 4 | public static string GetRandomName() 5 | { 6 | return "T" + Guid.NewGuid().ToString("N"); 7 | } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /test/ut/Natasha.CSharp.UnitTest.Base/OSStringCompare.cs: -------------------------------------------------------------------------------- 1 |  2 | public static class OSStringCompare 3 | { 4 | public static bool Equal(string expected, string actual) 5 | { 6 | return expected.Replace("\r\n", "\n") == actual.Replace("\r\n", "\n"); 7 | 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /test/ut/Natasha.CSharp.UnitTest.Base/SimpleCompiler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Reflection; 4 | using System.Text; 5 | 6 | 7 | public static class SimpleCompiler 8 | { 9 | public static Assembly GetAssemblyForUT(this string script,Action? config = null) 10 | { 11 | AssemblyCSharpBuilder builder = new(); 12 | builder.UseRandomLoadContext(); 13 | config?.Invoke(builder); 14 | builder.Add(script); 15 | return builder.GetAssembly(); 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /test/ut/Natasha.CSharp.UnitTest.Base/natasha.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Natasha.CSharp.UnitTest.Base/natasha.snk -------------------------------------------------------------------------------- /test/ut/Plugin/Compile/natasha.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Compile/natasha.snk -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Load/TestDomain.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace NatashaFunctionUT.Domain.Load 6 | { 7 | internal class TestDomain : NatashaDomain 8 | { 9 | public TestDomain() : base() 10 | { 11 | 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/DNDV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/DNDV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/DNDV1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/ref/DNDV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/ref/DNDV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/DNDV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/DNDV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/DNDV1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/DNDV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/DNDV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/DNDV1.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/DNDV1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/DNDV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/DNDV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/DNDV2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/ref/DNDV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net6.0/ref/DNDV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/DNDV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/DNDV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/DNDV2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/DNDV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/DNDV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/DNDV2.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/DNDV2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNDV/2/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/DNSV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/DNSV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/DNSV1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/ref/DNSV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net6.0/ref/DNSV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/DNSV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/DNSV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/DNSV1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/DNSV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/DNSV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/DNSV1.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/DNSV1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/1/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/DNSV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/DNSV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/DNSV2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/ref/DNSV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net6.0/ref/DNSV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/DNSV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/DNSV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/DNSV2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/DNSV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/DNSV2.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/DNSV2.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/DNSV2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/DNSV/2/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/SNDVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/ref/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/ref/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/SNDVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/SNDVDV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/SNDVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/SNDVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/ref/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net6.0/ref/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/net8.0/SNDVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/SNDVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/SNDVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/SNDVDV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVDV/2/netcoreapp3.1/SNDVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/SNDVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/ref/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/ref/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/SNDVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/SNDVSV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/SNDVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/SNDVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/ref/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/ref/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/SNDVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/SNDVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/SNDVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/SNDVSV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/SNDVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNDVSV/2/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/SNIVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/ref/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/ref/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net6.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/SNIVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/net8.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/SNIVDV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/SNIVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/1/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/SNIVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/ref/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net6.0/ref/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/net8.0/SNIVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/SNIVDV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/SNIVDV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/SNIVDV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVDV/2/netcoreapp3.1/SNIVDV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/SNIVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/ref/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net6.0/ref/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/net8.0/SNIVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/SNIVSV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/1/netcoreapp3.1/SNIVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/SNIVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/ref/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net6.0/ref/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/net8.0/SNIVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | "configProperties": { 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/SNIVSV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/SNIVSV.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/SNIVSV.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Plugin/SNIVSV/2/netcoreapp3.1/SNIVSV.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net6.0/MetadataDiff.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v6.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v6.0": { 9 | "MetadataDiff/1.0.0": { 10 | "runtime": { 11 | "MetadataDiff.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "MetadataDiff/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net6.0/MetadataDiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net6.0/MetadataDiff.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net6.0/ref/MetadataDiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net6.0/ref/MetadataDiff.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net8.0/MetadataDiff.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "MetadataDiff/1.0.0": { 10 | "runtime": { 11 | "MetadataDiff.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "MetadataDiff/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net8.0/MetadataDiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/net8.0/MetadataDiff.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/netcoreapp3.1/MetadataDiff.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": { 9 | "MetadataDiff/1.0.0": { 10 | "runtime": { 11 | "MetadataDiff.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "MetadataDiff/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/netcoreapp3.1/MetadataDiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/1.0.0.0/netcoreapp3.1/MetadataDiff.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/DNDV1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/DNDV1.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/DNDV1.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Administrator\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/DNDV1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "rollForward": "LatestMinor", 5 | "framework": { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "3.1.0" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/Dapper.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/PluginBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/PluginBase.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/Domain/Reference/Libraries/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /test/ut/Plugin/Domain/natasha.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcore/Natasha/91558feac3448846675c3834ed9aba3e761e8fe4/test/ut/Plugin/Domain/natasha.snk -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_DV/DNDV1/DNDV1.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | true 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_DV/DNDV1/P1.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin1 5 | { 6 | 7 | public class P1 : IPluginBase 8 | { 9 | public string PluginMethod1() 10 | { 11 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_DV/DNDV2/DNDV2.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | true 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_DV/DNDV2/P2.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin2 5 | { 6 | public class P2 : IPluginBase 7 | { 8 | public string PluginMethod1() 9 | { 10 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_SV/DNSV1/DNSV1.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | true 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_SV/DNSV1/P1.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin1 5 | { 6 | 7 | public class P1 : IPluginBase 8 | { 9 | public string PluginMethod1() 10 | { 11 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_SV/DNSV2/DNSV2.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | true 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/DN_SV/DNSV2/P2.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin2 5 | { 6 | public class P2 : IPluginBase 7 | { 8 | public string PluginMethod1() 9 | { 10 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/MetadataDiff/MetadataDiff/MetadataDiff.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | 6 | 3.0.0 7 | 3.0.0 8 | 3.0.0 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/MetadataDiff/MetadataDiff/MetadataModel.cs: -------------------------------------------------------------------------------- 1 | namespace MetadataDiff 2 | { 3 | public class MetadataModel 4 | { 5 | //v1.0.0.0 6 | 7 | //public string Old_Name { get; set; } 8 | 9 | //public string Old_Age { get; set; } 10 | 11 | //v3.0.0.0 12 | public string Name { get; set; } 13 | 14 | public string Age { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/Plugin2/Plugin2.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/PluginBase/IPluginBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PluginBase 4 | { 5 | public interface IPluginBase 6 | { 7 | public string PluginMethod1(); 8 | } 9 | 10 | 11 | public class PluginModel 12 | { 13 | public string PluginName { get; set; } 14 | 15 | public string PluginVersion { get; set; } = "1.0.0.0"; 16 | 17 | public string PluginDescription { get; set; } 18 | 19 | public DateTime CreateTime { get; set; } 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/PluginBase/PluginBase.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/SNDV_DV/SNDVDV/P1.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin1 5 | { 6 | 7 | public class P1 : IPluginBase 8 | { 9 | public string PluginMethod1() 10 | { 11 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/SNDV_SV/SNDVSV/P1.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin1 5 | { 6 | 7 | public class P1 : IPluginBase 8 | { 9 | public string PluginMethod1() 10 | { 11 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/SNIV_DV/SNIVDV/P1.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin1 5 | { 6 | 7 | public class P1 : IPluginBase 8 | { 9 | public string PluginMethod1() 10 | { 11 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/SNIV_SV/SNIVSV/P1.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using PluginBase; 3 | 4 | namespace Plugin1 5 | { 6 | 7 | public class P1 : IPluginBase 8 | { 9 | public string PluginMethod1() 10 | { 11 | return $"Json:{typeof(JsonConvert).Assembly.GetName().Version};Dapper:{typeof(Dapper.SqlMapper).Assembly.GetName().Version};IPluginBase:{new PluginModel().PluginVersion};Self:{this.GetType().Assembly.GetName().Version}"; 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/ut/Plugin/Libraries/SNIV_SV/SNIVSV/SNIVSV.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1;net6.0;net8.0; 5 | true 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /test/workflow/Github.NET.Sdk/Model/GithubComment.cs: -------------------------------------------------------------------------------- 1 | namespace Github.NET.Sdk.Model 2 | { 3 | public sealed class GithubComment 4 | { 5 | public string Id { get; set; } = string.Empty; 6 | } 7 | 8 | public sealed class WrapperGithubComment 9 | { 10 | public GithubComment? Subject { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test/workflow/Github.NET.Sdk/Model/GithubLabelable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Github.NET.Sdk.Model 8 | { 9 | public sealed class GithubLabelable 10 | { 11 | public string __typename { get; set; } = string.Empty; 12 | } 13 | public sealed class WrapperGithubLabelable 14 | { 15 | public GithubLabelable? Labelable { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/workflow/Github.NET.Sdk/Model/GithubPageInfo.cs: -------------------------------------------------------------------------------- 1 | namespace Github.NET.Sdk.Model 2 | { 3 | public sealed class GithubPageInfo 4 | { 5 | public string EndCursor { get; set; } = string.Empty; 6 | public bool HasNextPage { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /test/workflow/Github.NET.Sdk/Model/GithubProjectField.cs: -------------------------------------------------------------------------------- 1 | namespace Github.NET.Sdk.Model 2 | { 3 | public sealed class ProjectV2SingleSelectField 4 | { 5 | public string Id { get; set; } = string.Empty; 6 | public ProjectV2SingleSelectOptions[]? Options { get; set; } 7 | } 8 | 9 | public sealed class ProjectV2SingleSelectOptions 10 | { 11 | public string Id { get; set; } = string.Empty; 12 | public string Name { get; set; } = string.Empty; 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /test/workflow/Github.NET.Sdk/Model/GithubRepositoryOwner.cs: -------------------------------------------------------------------------------- 1 | namespace Github.NET.Sdk.Model 2 | { 3 | public sealed class GithubRepositoryOwner 4 | { 5 | public string Id { get; set; } = string.Empty; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/workflow/Github.NMSAction.NET.Sdk/Github.NMSAction.NET.Sdk.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /test/workflow/Github.NMSAction.NET.Sdk/Model/GlobalUsingConfiguration.cs: -------------------------------------------------------------------------------- 1 | namespace Github.NMSAcion.NET.Sdk.Model 2 | { 3 | public sealed class GlobalUsingConfiguration 4 | { 5 | public bool Enable { get; set; } 6 | 7 | public HashSet? Ignores { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /test/workflow/Github.NMSAction.NET.Sdk/Model/ProjectGlobalConfiguration.cs: -------------------------------------------------------------------------------- 1 | using Github.NET.Sdk.Model; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Github.NMSAcion.NET.Sdk.Model 9 | { 10 | public sealed class ProjectGlobalConfiguration where T : CSProjectConfigurationBase, new() 11 | { 12 | public HashSet? FoldedProjects { get; set; } 13 | public GithubLabelBase[]? GlobalLabels { get; set; } 14 | public List? Projects { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /test/workflow/Solution.NET.Sdk/Model/CSharpProjectCollection.cs: -------------------------------------------------------------------------------- 1 | namespace Solution.NET.Sdk.Model 2 | { 3 | public sealed class CSharpProjectCollection 4 | { 5 | public CSharpProject? GlobalConfig { get; set; } 6 | 7 | public List Projects { get; set; } = new List(); 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/workflow/Solution.NET.Sdk/Solution.NET.Sdk.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/workflow/Workflow.Initialization/Workflow.Initialization.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/workflow/Workflow.Nuget.Publish/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/workflow/Workflow.Runner/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; --------------------------------------------------------------------------------