├── .gitignore
├── CONTRIBUTING.md
├── CoreWf.svg
├── LICENSE
├── README.md
├── WfDesignerHelloWorld.png
└── src
├── .editorconfig
├── CodeCoverage.runsettings
├── CoreWf.EtwTracking
├── EtwTrackingAsyncResult.cs
├── EtwTrackingParticipant.cs
├── Resources.Constants.cs
├── Resources.resx
├── System.Activities.EtwTracking.csproj
└── WfEtwTrackingEventSource.cs
├── CoreWf
├── Activity.cs
├── ActivityAction.cs
├── ActivityCollectionType.cs
├── ActivityContext.cs
├── ActivityDefaults.cs
├── ActivityDelegate.cs
├── ActivityFunc.cs
├── ActivityInstance.cs
├── ActivityInstanceState.cs
├── ActivityLocationReferenceEnvironment.cs
├── ActivityMetadata.cs
├── ActivityPropertyReference.cs
├── ActivityUtilities.cs
├── ActivityWithResult.cs
├── ActivityWithResultWrapper.cs
├── Argument.cs
├── ArgumentDirection.cs
├── ArgumentDirectionHelper.cs
├── AssemblyInfo.cs
├── AsyncCodeActivity.cs
├── AsyncCodeActivityContext.cs
├── AsyncInvokeContext.cs
├── AsyncInvokeOperation.cs
├── AsyncOperationContext.cs
├── Bookmark.cs
├── BookmarkCallback.cs
├── BookmarkConverter.cs
├── BookmarkOptions.cs
├── BookmarkOptionsHelper.cs
├── BookmarkResumptionResult.cs
├── BookmarkScope.cs
├── BookmarkScopeHandle.cs
├── CodeActivity.cs
├── CodeActivityContext.cs
├── CodeActivityMetadata.cs
├── CodeActivityPublicEnvironmentAccessor.cs
├── CompletionCallback.cs
├── DelegateArgument.cs
├── DelegateCompletionCallback.cs
├── DelegateInArgument.cs
├── DelegateOutArgument.cs
├── DurableInstancing
│ ├── ActivatableWorkflowsQueryResult.cs
│ ├── CreateWorkflowOwnerCommand.cs
│ ├── CreateWorkflowOwnerWithIdentityCommand.cs
│ ├── DeleteWorkflowOwnerCommand.cs
│ ├── HasActivatableWorkflowEvent.cs
│ ├── HasRunnableWorkflowEvent.cs
│ ├── LoadWorkflowByInstanceKeyCommand.cs
│ ├── LoadWorkflowCommand.cs
│ ├── PersistenceIOParticipant.cs
│ ├── PersistenceParticipant.cs
│ ├── QueryActivatableWorkflowsCommand.cs
│ ├── SaveWorkflowCommand.cs
│ └── TryLoadRunnableWorkflowCommand.cs
├── DynamicActivity.cs
├── DynamicActivityProperty.cs
├── DynamicActivityTypeDescriptor.cs
├── ExceptionPersistenceExtension.cs
├── ExclusiveHandle.cs
├── ExecutionProperties.cs
├── ExpressionUtilities.cs
├── Expressions
│ ├── Add.cs
│ ├── And.cs
│ ├── AndAlso.cs
│ ├── ArgumentReference.cs
│ ├── ArgumentValue.cs
│ ├── ArrayItemReference.cs
│ ├── ArrayItemValue.cs
│ ├── As.cs
│ ├── AssemblyNameEqualityComparer.cs
│ ├── AssemblyReference.cs
│ ├── BinaryExpressionHelper.cs
│ ├── Cast.cs
│ ├── CompiledExpressionInvoker.cs
│ ├── DelegateArgumentReference.cs
│ ├── DelegateArgumentValue.cs
│ ├── Divide.cs
│ ├── EnvironmentLocationReference.cs
│ ├── EnvironmentLocationValue.cs
│ ├── Equal.cs
│ ├── ExpressionServices.cs
│ ├── FieldReference.cs
│ ├── FieldValue.cs
│ ├── GreaterThan.cs
│ ├── GreaterThanOrEqual.cs
│ ├── ILocationReferenceExpression.cs
│ ├── ILocationReferenceWrapper.cs
│ ├── ITextExpression.cs
│ ├── IndexerHelper.cs
│ ├── IndexerReference.cs
│ ├── InvokeFunc.cs
│ ├── InvokeMethod.cs
│ ├── LambdaReference.cs
│ ├── LambdaSerializationException.cs
│ ├── LambdaValue.cs
│ ├── LessThan.cs
│ ├── LessThanOrEqual.cs
│ ├── Literal.cs
│ ├── LocationReferenceValue.cs
│ ├── MemberExpressionHelper.cs
│ ├── MethodCallExpressionHelper.cs
│ ├── MultidimensionalArrayItemReference.cs
│ ├── Multiply.cs
│ ├── New.cs
│ ├── NewArray.cs
│ ├── Not.cs
│ ├── NotEqual.cs
│ ├── OperatorPermissionHelper.cs
│ ├── Or.cs
│ ├── OrElse.cs
│ ├── PropertyReference.cs
│ ├── PropertyValue.cs
│ ├── Subtract.cs
│ ├── TextExpression.cs
│ ├── UnaryExpressionHelper.cs
│ ├── ValueTypeFieldReference.cs
│ ├── ValueTypeIndexerReference.cs
│ ├── ValueTypePropertyReference.cs
│ ├── VariableReference.cs
│ └── VariableValue.cs
├── FaultCallback.cs
├── Handle.cs
├── HandleInitializationContext.cs
├── HopperCache.cs
├── Hosting
│ ├── BookmarkInfo.cs
│ ├── BookmarkScopeInfo.cs
│ ├── IWorkflowInstanceExtension.cs
│ ├── LocationInfo.cs
│ ├── SymbolResolver.cs
│ ├── WorkflowInstance.cs
│ ├── WorkflowInstanceExtensionCollection.cs
│ ├── WorkflowInstanceExtensionManager.cs
│ ├── WorkflowInstanceExtensionProvider.cs
│ ├── WorkflowInstanceProxy.cs
│ └── WorkflowInstanceState.cs
├── HybridCollection.cs
├── HybridDictionary.cs
├── IAsyncCodeActivity.cs
├── IDynamicActivity.cs
├── IExecutionProperty.cs
├── IExpressionContainer.cs
├── IInstanceNotificationListener.cs
├── IPropertyRegistrationCallback.cs
├── IdSpace.cs
├── InArgument.cs
├── InOutArgument.cs
├── InlinedLocationReference.cs
├── Internals
│ ├── DelayTimer.cs
│ ├── FxTrace.cs
│ └── ReflectionExtensions.cs
├── InvalidWorkflowException.cs
├── InvokeCompletedEventArgs.cs
├── LocalAppContextSwitches.cs
├── Location.cs
├── LocationFactory.cs
├── LocationReference.cs
├── LocationReferenceEnvironment.cs
├── NativeActivity.cs
├── NativeActivityAbortContext.cs
├── NativeActivityContext.cs
├── NativeActivityFaultContext.cs
├── NativeActivityMetadata.cs
├── NativeActivityTransactionContext.cs
├── NoPersistHandle.cs
├── NoPersistProperty.cs
├── OutArgument.cs
├── OverloadGroupAttribute.cs
├── PersistableIdleAction.cs
├── ProcessActivityTreeOptions.cs
├── Quack.cs
├── QualifiedId.cs
├── RegistrationContext.cs
├── RequiredArgumentAttribute.cs
├── Resources
│ ├── EventSourceStrings.ar.resx
│ ├── EventSourceStrings.cs.resx
│ ├── EventSourceStrings.da.resx
│ ├── EventSourceStrings.de.resx
│ ├── EventSourceStrings.el.resx
│ ├── EventSourceStrings.en.resx
│ ├── EventSourceStrings.es.resx
│ ├── EventSourceStrings.fi.resx
│ ├── EventSourceStrings.fr.resx
│ ├── EventSourceStrings.he.resx
│ ├── EventSourceStrings.hu.resx
│ ├── EventSourceStrings.it.resx
│ ├── EventSourceStrings.ja.resx
│ ├── EventSourceStrings.ko.resx
│ ├── EventSourceStrings.nb.resx
│ ├── EventSourceStrings.nl.resx
│ ├── EventSourceStrings.pl.resx
│ ├── EventSourceStrings.pt-br.resx
│ ├── EventSourceStrings.pt-pt.resx
│ ├── EventSourceStrings.ru.resx
│ ├── EventSourceStrings.sv.resx
│ ├── EventSourceStrings.tr.resx
│ ├── EventSourceStrings.zh-cn.resx
│ ├── EventSourceStrings.zh-tw.resx
│ ├── SR.ar.resx
│ ├── SR.cs.resx
│ ├── SR.da.resx
│ ├── SR.de.resx
│ ├── SR.el.resx
│ ├── SR.en.resx
│ ├── SR.es.resx
│ ├── SR.fi.resx
│ ├── SR.fr.resx
│ ├── SR.he.resx
│ ├── SR.hu.resx
│ ├── SR.it.resx
│ ├── SR.ja.resx
│ ├── SR.ko.resx
│ ├── SR.nb.resx
│ ├── SR.nl.resx
│ ├── SR.pl.resx
│ ├── SR.pt-br.resx
│ ├── SR.pt-pt.resx
│ ├── SR.ru.resx
│ ├── SR.sv.resx
│ ├── SR.tr.resx
│ ├── SR.zh-cn.resx
│ └── SR.zh-tw.resx
├── Runtime
│ ├── ActionItem.cs
│ ├── ActivityCompletionCallbackWrapper.cs
│ ├── ActivityExecutionWorkItem.cs
│ ├── ActivityExecutor.cs
│ ├── ActivityInstanceMap.cs
│ ├── ActivityInstanceReference.cs
│ ├── AsyncResult.cs
│ ├── AsyncWaitHandle.cs
│ ├── BookmarkCallbackWrapper.cs
│ ├── BookmarkList.cs
│ ├── BookmarkManager.cs
│ ├── BookmarkScopeManager.cs
│ ├── BookmarkWorkItem.cs
│ ├── CallbackException.cs
│ ├── CallbackWrapper.cs
│ ├── CollapseTemporaryResolutionLocationWorkItem.cs
│ ├── Collections
│ │ ├── NullableKeyDictionary.cs
│ │ └── ValidatingCollection.cs
│ ├── CompletedAsyncResult.cs
│ ├── CompletionBookmark.cs
│ ├── CompletionCallbackWrapper.cs
│ ├── DelegateCompletionCallbackWrapper.cs
│ ├── DiagnosticStrings.cs
│ ├── Diagnostics
│ │ └── EventTraceActivity.cs
│ ├── DurableInstancing
│ │ ├── DisassociateInstanceKeysExtension.cs
│ │ ├── IDurableInstancingOptions.cs
│ │ ├── InstanceCollisionException.cs
│ │ ├── InstanceCompleteException.cs
│ │ ├── InstanceHandle.cs
│ │ ├── InstanceHandleConflictException.cs
│ │ ├── InstanceHandleReference.cs
│ │ ├── InstanceKey.cs
│ │ ├── InstanceKeyCollisionException.cs
│ │ ├── InstanceKeyCompleteException.cs
│ │ ├── InstanceKeyNotReadyException.cs
│ │ ├── InstanceKeyState.cs
│ │ ├── InstanceKeyView.cs
│ │ ├── InstanceLockLostException.cs
│ │ ├── InstanceLockQueryResult.cs
│ │ ├── InstanceLockedException.cs
│ │ ├── InstanceNormalEvent.cs
│ │ ├── InstanceNotReadyException.cs
│ │ ├── InstanceOwner.cs
│ │ ├── InstanceOwnerException.cs
│ │ ├── InstanceOwnerQueryResult.cs
│ │ ├── InstancePersistence.cs
│ │ ├── InstancePersistenceCommand.cs
│ │ ├── InstancePersistenceCommandException.cs
│ │ ├── InstancePersistenceContext.cs
│ │ ├── InstancePersistenceEvent.cs
│ │ ├── InstancePersistenceException.cs
│ │ ├── InstanceState.cs
│ │ ├── InstanceStore.cs
│ │ ├── InstanceStoreQueryResult.cs
│ │ ├── InstanceValue.cs
│ │ ├── InstanceValueConsistency.cs
│ │ ├── InstanceValueOptions.cs
│ │ ├── InstanceView.cs
│ │ └── TransactedAsyncResult.cs
│ ├── EmptyWithCancelationCheckWorkItem.cs
│ ├── EmptyWorkItem.cs
│ ├── ExceptionTrace.cs
│ ├── ExclusiveHandleList.cs
│ ├── ExecuteSynchronousExpressionWorkItem.cs
│ ├── ExecutionPropertyManager.cs
│ ├── FatalException.cs
│ ├── FaultBookmark.cs
│ ├── FaultCallbackWrapper.cs
│ ├── FaultContext.cs
│ ├── FuncCompletionCallbackWrapper.cs
│ ├── Fx.cs
│ ├── IAsyncEventArgs.cs
│ ├── ICancelable.cs
│ ├── IPersistencePipelineModule.cs
│ ├── InsufficientMemoryException.cs
│ ├── LocationEnvironment.cs
│ ├── MappableObjectManager.cs
│ ├── MruCache.cs
│ ├── NameGenerator.cs
│ ├── PersistenceMetadataNamespace.cs
│ ├── PersistencePipeline.cs
│ ├── Pool.cs
│ ├── ResolveNextArgumentWorkItem.cs
│ ├── ScheduleActionItemAsyncResult.cs
│ ├── Scheduler.cs
│ ├── SignalGate.cs
│ ├── Ticks.cs
│ ├── TimeoutHelper.cs
│ ├── TransactionHelper.cs
│ ├── TypeHelper.cs
│ ├── TypedAsyncResult.cs
│ ├── TypedLocationWrapper.cs
│ ├── WaitCallbackActionItem.cs
│ ├── WorkItem.cs
│ ├── Workflow45Namespace.cs
│ ├── WorkflowNamespace.cs
│ └── WorkflowServiceNamespace.cs
├── RuntimeArgument.cs
├── RuntimeDelegateArgument.cs
├── RuntimeTransactionHandle.cs
├── SR.cs
├── Statements
│ ├── AddToCollection.cs
│ ├── Assign.cs
│ ├── BookmarkTable.cs
│ ├── CancellationScope.cs
│ ├── Catch.cs
│ ├── ClearCollection.cs
│ ├── CompensableActivity.cs
│ ├── Compensate.cs
│ ├── CompensationActivityStrings.cs
│ ├── CompensationBookmarkName.cs
│ ├── CompensationExtension.cs
│ ├── CompensationParticipant.cs
│ ├── CompensationState.cs
│ ├── CompensationToken.cs
│ ├── CompensationTokenData.cs
│ ├── Confirm.cs
│ ├── CreateBookmarkScope.cs
│ ├── DefaultCompensation.cs
│ ├── DefaultConfirmation.cs
│ ├── Delay.cs
│ ├── DeleteBookmarkScope.cs
│ ├── DoWhile.cs
│ ├── DurableTimerExtension.cs
│ ├── ExecutionTracker.cs
│ ├── ExistsInCollection.cs
│ ├── FlowDecision.cs
│ ├── FlowNode.cs
│ ├── FlowStep.cs
│ ├── FlowSwitch.cs
│ ├── Flowchart.cs
│ ├── ForEach.cs
│ ├── HandleScope.cs
│ ├── IFlowSwitch.cs
│ ├── If.cs
│ ├── InternalCompensate.cs
│ ├── InternalConfirm.cs
│ ├── InternalState.cs
│ ├── InternalTransition.cs
│ ├── InvokeAction.cs
│ ├── InvokeDelegate.cs
│ ├── InvokeMethod.cs
│ ├── MethodExecutor.cs
│ ├── MethodResolver.cs
│ ├── NoPersistScope.cs
│ ├── Parallel.cs
│ ├── ParallelForEach.cs
│ ├── Persist.cs
│ ├── Pick.cs
│ ├── PickBranch.cs
│ ├── RemoveFromCollection.cs
│ ├── Rethrow.cs
│ ├── Sequence.cs
│ ├── State.cs
│ ├── StateMachine.cs
│ ├── StateMachineEventManager.cs
│ ├── StateMachineExtension.cs
│ ├── StateMachineIdHelper.cs
│ ├── Switch.cs
│ ├── TerminateWorkflow.cs
│ ├── Throw.cs
│ ├── TimerExtension.cs
│ ├── TimerTable.cs
│ ├── Tracking
│ │ ├── StateMachineStateQuery.cs
│ │ └── StateMachineStateRecord.cs
│ ├── TransactionScope.cs
│ ├── Transition.cs
│ ├── TransitionData.cs
│ ├── TriggerCompletedEvent.cs
│ ├── TryCatch.cs
│ ├── While.cs
│ ├── WorkflowCompensationBehavior.cs
│ ├── WorkflowTerminatedException.cs
│ └── WriteLine.cs
├── StringResourceBase.cs
├── SynchronizationContextHelper.cs
├── System.Activities.csproj
├── TD.cs
├── Tracking
│ ├── ActivityInfo.cs
│ ├── ActivityScheduledQuery.cs
│ ├── ActivityScheduledRecord.cs
│ ├── ActivityStateQuery.cs
│ ├── ActivityStateRecord.cs
│ ├── ActivityStates.cs
│ ├── BookmarkResumptionQuery.cs
│ ├── BookmarkResumptionRecord.cs
│ ├── CancelRequestedQuery.cs
│ ├── CancelRequestedRecord.cs
│ ├── CustomTrackingQuery.cs
│ ├── CustomTrackingRecord.cs
│ ├── FaultPropagationQuery.cs
│ ├── FaultPropagationRecord.cs
│ ├── ImplementationVisibility.cs
│ ├── RuntimeTrackingProfile.cs
│ ├── TrackingParticipant.cs
│ ├── TrackingProfile.cs
│ ├── TrackingProvider.cs
│ ├── TrackingQuery.cs
│ ├── TrackingRecord.cs
│ ├── TrackingRecordPreFilter.cs
│ ├── WorkflowInstanceAbortedRecord.cs
│ ├── WorkflowInstanceQuery.cs
│ ├── WorkflowInstanceRecord.cs
│ ├── WorkflowInstanceStates.cs
│ ├── WorkflowInstanceSuspendedRecord.cs
│ ├── WorkflowInstanceTerminatedRecord.cs
│ └── WorkflowInstanceUnhandledExceptionRecord.cs
├── TypeConverters.cs
├── UnhandledExceptionAction.cs
├── Validation
│ ├── ActivityValidationServices.cs
│ ├── AddValidationError.cs
│ ├── AssertValidation.cs
│ ├── Constraint.cs
│ ├── ExtensionMethods.cs
│ ├── GetChildSubtree.cs
│ ├── GetParentChain.cs
│ ├── GetWorkflowTree.cs
│ ├── ValidationContext.cs
│ ├── ValidationError.cs
│ ├── ValidationHelper.cs
│ ├── ValidationResults.cs
│ └── ValidationSettings.cs
├── ValidationException.cs
├── Variable.cs
├── VariableModifiers.cs
├── VariableModifiersHelper.cs
├── VersionMismatchException.cs
├── WfEventSource.cs
├── WorkflowApplication.cs
├── WorkflowApplicationAbortedEventArgs.cs
├── WorkflowApplicationAbortedException.cs
├── WorkflowApplicationCompletedEventArgs.cs
├── WorkflowApplicationCompletedException.cs
├── WorkflowApplicationEventArgs.cs
├── WorkflowApplicationException.cs
├── WorkflowApplicationIdleEventArgs.cs
├── WorkflowApplicationInstance.cs
├── WorkflowApplicationTerminatedException.cs
├── WorkflowApplicationUnhandledExceptionEventArgs.cs
├── WorkflowApplicationUnloadedException.cs
├── WorkflowDataContext.cs
├── WorkflowIdentity.cs
├── WorkflowIdentityFilter.cs
├── WorkflowInspectionServices.cs
├── WorkflowInvoker.cs
├── WorkflowPersistenceContext.cs
├── XD.cs
└── XamlIntegration
│ ├── ActivityWithResultValueSerializer.cs
│ ├── CompiledDataContext.cs
│ ├── CompiledExpressionActivityVisitor.cs
│ ├── CompiledLocation.cs
│ ├── ExpressionTreeRewriter.cs
│ ├── ICompiledExpressionRoot.cs
│ └── IValueSerializableExpression.cs
├── Directory.Build.props
├── System.Activities.sln
├── System.Xaml
├── GlobalSuppressions.cs
├── Resources
│ ├── ExceptionStringTable.txt
│ ├── SRID.Designer.cs
│ ├── SRID.resx
│ ├── win32res.rc
│ └── xlf
│ │ ├── Strings.cs.xlf
│ │ ├── Strings.de.xlf
│ │ ├── Strings.es.xlf
│ │ ├── Strings.fr.xlf
│ │ ├── Strings.it.xlf
│ │ ├── Strings.ja.xlf
│ │ ├── Strings.ko.xlf
│ │ ├── Strings.pl.xlf
│ │ ├── Strings.pt-BR.xlf
│ │ ├── Strings.ru.xlf
│ │ ├── Strings.tr.xlf
│ │ ├── Strings.zh-Hans.xlf
│ │ └── Strings.zh-Hant.xlf
├── SR.cs
├── System.Xaml.csproj
├── System.Xaml.sln
├── System
│ ├── SR.cs
│ ├── Windows
│ │ ├── Markup
│ │ │ ├── AcceptedMarkupExtensionExpressionTypeAttribute.cs
│ │ │ ├── AmbientAttribute.cs
│ │ │ ├── ArrayExtension.cs
│ │ │ ├── BuildTopDownAttribute.cs
│ │ │ ├── ConstructorArgumentAttribute.cs
│ │ │ ├── ContentPropertyAttribute.cs
│ │ │ ├── ContentWrapperAttribute.cs
│ │ │ ├── DateTimeValueSerializer.cs
│ │ │ ├── DependsOnAttribute.cs
│ │ │ ├── DictionaryKeyPropertyAttribute.cs
│ │ │ ├── IComponentConnector.cs
│ │ │ ├── INameScope.cs
│ │ │ ├── INameScopeDictionary.cs
│ │ │ ├── IProvideValueTarget.cs
│ │ │ ├── IQueryAmbient.cs
│ │ │ ├── IUriContext.cs
│ │ │ ├── IValueSerializerContext.cs
│ │ │ ├── IXamlTypeResolver.cs
│ │ │ ├── MarkupExtension.cs
│ │ │ ├── MarkupExtensionBracketCharactersAttribute.cs
│ │ │ ├── MarkupExtensionReturnTypeAttribute.cs
│ │ │ ├── MemberDefinition.cs
│ │ │ ├── NameScopePropertyAttribute.cs
│ │ │ ├── NullExtension.cs
│ │ │ ├── PropertyDefinition.cs
│ │ │ ├── ReflectionHelper.cs
│ │ │ ├── Replacements
│ │ │ │ └── UriTypeConverter.cs
│ │ │ ├── RootNamespaceAttribute.cs
│ │ │ ├── RuntimeIdentifierPropertyAttribute.cs
│ │ │ ├── StaticExtension.cs
│ │ │ ├── StaticExtensionConverter.cs
│ │ │ ├── TrimSurroundingWhitespaceAttribute.cs
│ │ │ ├── TypeConverterHelper.cs
│ │ │ ├── TypeExtension.cs
│ │ │ ├── TypeExtensionConverter.cs
│ │ │ ├── UidPropertyAttribute.cs
│ │ │ ├── ValueSerializer.cs
│ │ │ ├── ValueSerializerAttribute.cs
│ │ │ ├── WhitespaceSignificantCollectionAttribute.cs
│ │ │ ├── XamlSetMarkupExtensionAttribute.cs
│ │ │ ├── XamlSetMarkupExtensionEventArgs.cs
│ │ │ ├── XamlSetTypeConverterAttribute.cs
│ │ │ ├── XamlSetTypeConverterEventArgs.cs
│ │ │ ├── XamlSetValueEventArgs.cs
│ │ │ ├── XmlCompatibilityReader.cs
│ │ │ ├── XmlLangPropertyAttribute.cs
│ │ │ ├── XmlWrappingReader.cs
│ │ │ ├── XmlnsCompatibleWithAttribute.cs
│ │ │ ├── XmlnsDefinitionAttribute.cs
│ │ │ └── XmlnsPrefixAttribute.cs
│ │ ├── NameScope.cs
│ │ └── NameValidationHelper.cs
│ └── Xaml
│ │ ├── AllowedMemberLocations.cs
│ │ ├── AttachableMemberIdentifier.cs
│ │ ├── AttachablePropertyServices.cs
│ │ ├── Context
│ │ ├── ContextServices.cs
│ │ ├── ICheckIfInitialized.cs
│ │ ├── NameFixupGraph.cs
│ │ ├── NameFixupToken.cs
│ │ ├── ObjectWriterContext.cs
│ │ ├── ObjectWriterFrame.cs
│ │ ├── SavedContext.cs
│ │ ├── ServiceProviderContext.cs
│ │ ├── XamlCommonFrame.cs
│ │ ├── XamlContext.cs
│ │ ├── XamlObjectWriterFactory.cs
│ │ ├── XamlParserContext.cs
│ │ └── XamlParserFrame.cs
│ │ ├── EnhancedXamlAttribute.cs
│ │ ├── EventConverter.cs
│ │ ├── Events
│ │ └── XamlObjectEventArgs.cs
│ │ ├── IAmbientProvider.cs
│ │ ├── IAttachedPropertyStore.cs
│ │ ├── IDestinationTypeProvider.cs
│ │ ├── INamespacePrefixLookup.cs
│ │ ├── IRootObjectProvider.cs
│ │ ├── IXamlLineInfo.cs
│ │ ├── IXamlLineInfoConsumer.cs
│ │ ├── IXamlNameProvider.cs
│ │ ├── IXamlNameResolver.cs
│ │ ├── IXamlNamespaceResolver.cs
│ │ ├── IXamlObjectWriterFactory.cs
│ │ ├── IXamlSchemaContextProvider.cs
│ │ ├── InfosetObjects
│ │ ├── DeferredWriter.cs
│ │ ├── XamlNodes.cs
│ │ ├── XamlObjectWriter.cs
│ │ ├── XamlObjectWriterSettings.cs
│ │ ├── XamlReaderSettings.cs
│ │ ├── XamlXmlReader.cs
│ │ └── XamlXmlReaderSettings.cs
│ │ ├── MS
│ │ └── Impl
│ │ │ ├── ArrayHelper.cs
│ │ │ ├── AssemblyNamespacePair.cs
│ │ │ ├── KnownStrings.cs
│ │ │ ├── PositionalParameterDescriptor.cs
│ │ │ └── XmlNsInfo.cs
│ │ ├── NameReferenceConverter.cs
│ │ ├── NameScopeDictionary.cs
│ │ ├── NamespaceDeclaration.cs
│ │ ├── Parser
│ │ ├── GenericTypeNameParser.cs
│ │ ├── GenericTypeNameScanner.cs
│ │ ├── MePullParser.cs
│ │ ├── MeScanner.cs
│ │ ├── NamespacePrefixLookup.cs
│ │ ├── NodeStreamSorter.cs
│ │ ├── ScannerNodeType.cs
│ │ ├── XamlAttribute.cs
│ │ ├── XamlName.cs
│ │ ├── XamlPropertyName.cs
│ │ ├── XamlPullParser.cs
│ │ ├── XamlQualifiedName.cs
│ │ ├── XamlScanner.cs
│ │ ├── XamlScannerNode.cs
│ │ ├── XamlScannerStack.cs
│ │ └── XamlText.cs
│ │ ├── Permissions
│ │ ├── XamlAccessLevel.cs
│ │ └── XamlLoadPermission.cs
│ │ ├── Primitives
│ │ ├── LineInfo.cs
│ │ ├── ReaderBaseDelegate.cs
│ │ ├── ReaderDelegate.cs
│ │ ├── ReaderMultiIndexDelegate.cs
│ │ ├── WriterDelegate.cs
│ │ ├── XamlBackgroundReader.cs
│ │ ├── XamlNodeList.cs
│ │ ├── XamlNodeQueue.cs
│ │ └── XamlSubreader.cs
│ │ ├── RefOnly
│ │ └── LooseTypeExtensions.cs
│ │ ├── Replacements
│ │ ├── DateTimeConverter2.cs
│ │ ├── DateTimeOffsetConverter2.cs
│ │ ├── DateTimeValueSerializerContext.cs
│ │ ├── Reference.cs
│ │ ├── TypeListConverter.cs
│ │ └── TypeTypeConverter.cs
│ │ ├── Runtime
│ │ ├── ClrObjectRuntime.cs
│ │ ├── DynamicMethodRuntime.cs
│ │ ├── PartialTrustTolerantRuntime.cs
│ │ └── XamlRuntimeSettings.cs
│ │ ├── Schema
│ │ ├── BuiltInValueConverter.cs
│ │ ├── ClrNamespaceUriParser.cs
│ │ ├── CollectionReflector.cs
│ │ ├── MemberReflector.cs
│ │ ├── ReferenceEqualityComparer.cs
│ │ ├── Reflector.cs
│ │ ├── SafeReflectionInvoker.cs
│ │ ├── TypeBits.cs
│ │ ├── TypeReflector.cs
│ │ ├── XamlCollectionKind.cs
│ │ ├── XamlDirective.cs
│ │ ├── XamlMemberInvoker.cs
│ │ ├── XamlNamespace.cs
│ │ ├── XamlTypeInvoker.cs
│ │ └── XamlValueConverter.cs
│ │ ├── ShouldSerializeAttribute.cs
│ │ ├── XData.cs
│ │ ├── XamlDeferLoadAttribute.cs
│ │ ├── XamlDeferringLoader.cs
│ │ ├── XamlException.cs
│ │ ├── XamlLanguage.cs
│ │ ├── XamlMarkupExtensionWriter.cs
│ │ ├── XamlMember.cs
│ │ ├── XamlObjectReader.cs
│ │ ├── XamlObjectReaderSettings.cs
│ │ ├── XamlReader.cs
│ │ ├── XamlRuntime.cs
│ │ ├── XamlSchemaContext.cs
│ │ ├── XamlSchemaContextSettings.cs
│ │ ├── XamlServices.cs
│ │ ├── XamlType.cs
│ │ ├── XamlTypeName.cs
│ │ ├── XamlTypeTypeConverter.cs
│ │ ├── XamlWriter.cs
│ │ ├── XamlWriterSettings.cs
│ │ ├── XamlXmlWriter.cs
│ │ └── XamlXmlWriterSettings.cs
├── ms
│ └── Internal
│ │ ├── CriticalExceptions.cs
│ │ ├── FriendAccessAllowedAttribute.cs
│ │ ├── FrugalList.cs
│ │ ├── Markup
│ │ ├── StringValueSerializer.cs
│ │ └── TypeConverterValueSerializer.cs
│ │ ├── SafeSecurityHelper.cs
│ │ ├── SecurityCriticalDataForSet.cs
│ │ └── Xaml
│ │ ├── Context
│ │ ├── XamlContextStack.cs
│ │ └── XamlFrame.cs
│ │ └── Parser
│ │ └── SpecialBracketCharacters.cs
└── otherassemblyattrs.cs
├── Test
├── BookmarkConsoleApp
│ ├── BookmarkActivity.cs
│ ├── BookmarkConsoleApp.csproj
│ └── BookmarkConsoleAppProgram.cs
├── Directory.Build.props
├── ImperativeTestCases
│ ├── DynamicTests.cs
│ ├── ImperativeTestCases.csproj
│ ├── PrintTransactionId.cs
│ └── TransactedScopeTest.cs
├── JsonFileInstanceStore
│ ├── AsyncResult.cs
│ ├── JsonFileInstanceStore.cs
│ ├── JsonFileInstanceStore.csproj
│ ├── TypedAsyncResult.cs
│ └── TypedCompletedAsyncResult.cs
├── Samples
│ ├── AtBatStateMachine.cs
│ ├── BookmarkActivity.cs
│ ├── FlowChart.cs
│ ├── HelloWorld.cs
│ ├── JSONPersistence.cs
│ ├── Samples.csproj
│ ├── Sequential.cs
│ ├── Tracking.cs
│ ├── Utilities.cs
│ ├── WFAppExtension.cs
│ ├── WfTracingEventListener.cs
│ └── xunit.runner.json
├── System.Xaml.TestCases
│ ├── Assets
│ │ ├── NUnitLockScreenLogo.scale-200.png
│ │ ├── NUnitSplashScreen.scale-200.png
│ │ ├── NUnitSquare150x150Logo.scale-200.png
│ │ ├── NUnitSquare44x44Logo.scale-200.png
│ │ ├── NUnitSquare44x44Logo.targetsize-24_altform-unplated.png
│ │ ├── NUnitStoreLogo.png
│ │ └── NUnitWide310x150Logo.scale-200.png
│ ├── Categories.cs
│ ├── Compat.cs
│ ├── MainTestPage.xaml
│ ├── MainTestPage.xaml.cs
│ ├── Package.appxmanifest
│ ├── Program.cs
│ ├── Properties
│ │ └── Default.rd.xml
│ ├── System.Windows.Markup
│ │ ├── ArrayExtensionTest.cs
│ │ ├── ChangeLog
│ │ ├── ReferenceTest.cs
│ │ ├── StaticExtensionTest.cs
│ │ ├── TypeExtensionConverterTest.cs
│ │ ├── TypeExtensionTest.cs
│ │ ├── ValueSerializerAttributeTest.cs
│ │ ├── ValueSerializerTest.cs
│ │ ├── XDataTest.cs
│ │ └── XamlDeferLoadTest.cs
│ ├── System.Xaml.Schema
│ │ ├── ChangeLog
│ │ ├── XamlMemberInvokerTest.cs
│ │ ├── XamlTypeInvokerTest.cs
│ │ ├── XamlTypeNameTest.cs
│ │ ├── XamlTypeTypeConverterTest.cs
│ │ └── XamlValueConverterTest.cs
│ ├── System.Xaml.TestCases.csproj
│ ├── System.Xaml
│ │ ├── AmbientPropertyValueTest.cs
│ │ ├── AttachableMemberIdentifierTest.cs
│ │ ├── AttachablePropertyServicesTest.cs
│ │ ├── ChangeLog
│ │ ├── DummyValueSerializerContext.cs
│ │ ├── InlinesTest.cs
│ │ ├── NamespaceDeclarationTest.cs
│ │ ├── TestedTypes.cs
│ │ ├── ValueSerializerContextTest.cs
│ │ ├── XamlBackgroundReaderTest.cs
│ │ ├── XamlCompatibilityTests.cs
│ │ ├── XamlDeferringLoaderTest.cs
│ │ ├── XamlDirectiveTest.cs
│ │ ├── XamlDuplicateMemberExceptionTest.cs
│ │ ├── XamlLanguageTest.cs
│ │ ├── XamlMemberTest.cs
│ │ ├── XamlNodeListTest.cs
│ │ ├── XamlNodeQueueTest.cs
│ │ ├── XamlObjectEventArgsTest.cs
│ │ ├── XamlObjectReaderSettingsTest.cs
│ │ ├── XamlObjectReaderTest.cs
│ │ ├── XamlObjectWriterCollectionTests.cs
│ │ ├── XamlObjectWriterSettingsTest.cs
│ │ ├── XamlObjectWriterTest.cs
│ │ ├── XamlReaderSettingsTest.cs
│ │ ├── XamlReaderTest.cs
│ │ ├── XamlReaderTestBase.cs
│ │ ├── XamlSchemaContextSettingsTest.cs
│ │ ├── XamlSchemaContextTest.cs
│ │ ├── XamlTypeTest.cs
│ │ ├── XamlXmlReaderSettingsTest.cs
│ │ ├── XamlXmlReaderTest.cs
│ │ ├── XamlXmlWriterSettingsTest.cs
│ │ └── XamlXmlWriterTest.cs
│ ├── UnitTestApp.xaml
│ ├── UnitTestApp.xaml.cs
│ └── XmlFiles
│ │ ├── AbstractContainer.xml
│ │ ├── AbstractWrapper.xml
│ │ ├── AmbientPropertyContainer.xml
│ │ ├── AmbientPropertyContainer2.xml
│ │ ├── AmbientPropertyContainer3.xml
│ │ ├── AmbientPropertyContainer4.xml
│ │ ├── AmbientResourceProvider.xml
│ │ ├── AmbientResourceWrapper.xml
│ │ ├── ArgumentAttributed.xml
│ │ ├── ArgumentMultipleTypesFromAttribute.xml
│ │ ├── ArgumentMultipleTypesFromInt.xml
│ │ ├── ArgumentMultipleTypesFromString.xml
│ │ ├── ArgumentNonAttributed.xml
│ │ ├── ArgumentWithIntConstructorFromAttribute.xml
│ │ ├── ArgumentWithIntConstructorFromInt.xml
│ │ ├── ArgumentWithIntConstructorFromString.xml
│ │ ├── ArrayExtension.xml
│ │ ├── ArrayExtension2.xml
│ │ ├── ArrayList.xml
│ │ ├── Array_Int32.xml
│ │ ├── AttachedProperty.xml
│ │ ├── AttachedPropertyOnClassWithDifferentNamespace.xml
│ │ ├── AttachedPropertyWithNamespace.xml
│ │ ├── BaseClassPropertiesInSeparateNamespace.xml
│ │ ├── BaseClassPropertiesInSeparateNamespace_WithChildren.xml
│ │ ├── ChangeLog
│ │ ├── CollectionContentProperty.xml
│ │ ├── CollectionContentProperty2.xml
│ │ ├── CollectionContentPropertyX.xml
│ │ ├── CollectionContentPropertyX2.xml
│ │ ├── CommandContainer.xml
│ │ ├── ComplexPositionalParameterWrapper.xml
│ │ ├── ComplexPositionalParameterWrapper2.xml
│ │ ├── ContentIncluded.xml
│ │ ├── ContentPropertyContainer.xml
│ │ ├── CurrentVersion.xaml
│ │ ├── CustomExtensionWithChild.xml
│ │ ├── CustomExtensionWithChildExtensionAndNamedProperty.xml
│ │ ├── CustomExtensionWithCommasInNamedValue.xml
│ │ ├── CustomExtensionWithCommasInPositionalValue.xml
│ │ ├── CustomExtensionWithEscapeChars.xml
│ │ ├── CustomExtensionWithPositionalAndNamed.xml
│ │ ├── CustomExtensionWithPositionalChild.xml
│ │ ├── CustomExtensionWithPositonalAfterExplicitProperty.xml
│ │ ├── DateTime.xml
│ │ ├── DateTime2.xml
│ │ ├── DateTime3.xml
│ │ ├── DateTime4.xml
│ │ ├── DateTime5.xml
│ │ ├── DateTime6.xml
│ │ ├── DefaultNamespaces.xml
│ │ ├── DefaultNamespaces_WithDefinedNamespace.xml
│ │ ├── DeferredLoadingCollectionContainer.xml
│ │ ├── DeferredLoadingContainerMember.xml
│ │ ├── DeferredLoadingContainerMember2.xml
│ │ ├── DeferredLoadingContainerMemberStringType.xml
│ │ ├── DeferredLoadingContainerType.xml
│ │ ├── DeferredLoadingWithInvalidType.xml
│ │ ├── Dictionary_Int32_String.xml
│ │ ├── Dictionary_String_Double.xml
│ │ ├── Dictionary_String_Type.xml
│ │ ├── Dictionary_String_Type_2.xml
│ │ ├── DirectDictionaryContainer.xml
│ │ ├── DirectDictionaryContainer2.xml
│ │ ├── DirectListContainer.xml
│ │ ├── EnumContainer.xml
│ │ ├── EscapedPropertyValue.xml
│ │ ├── EventContainer.xml
│ │ ├── EventStore.xml
│ │ ├── EventStore2.xml
│ │ ├── EventStore3.xml
│ │ ├── EventStore4.xml
│ │ ├── EventStore5.xml
│ │ ├── ExplicitKeyDictionary.xml
│ │ ├── GenericTypeWithClrNamespace.xml
│ │ ├── GenericTypeWithXamlNamespace.xml
│ │ ├── Guid.xml
│ │ ├── GuidFactoryMethod.xml
│ │ ├── ImmutableCollectionContainer.xml
│ │ ├── ImmutableTypeMultipleArguments.xml
│ │ ├── ImmutableTypeMultipleConstructors1.xml
│ │ ├── ImmutableTypeMultipleConstructors2.xml
│ │ ├── ImmutableTypeMultipleConstructors3.xml
│ │ ├── ImmutableTypeMultipleConstructors4.xml
│ │ ├── ImmutableTypeOptionalParameters1.xml
│ │ ├── ImmutableTypeOptionalParameters2.xml
│ │ ├── ImmutableTypeSingleArgument.xml
│ │ ├── ImmutableTypeWithCollectionProperty.xml
│ │ ├── ImmutableTypeWithNames.xml
│ │ ├── ImmutableTypeWithWritableProperty.xml
│ │ ├── Int32.xml
│ │ ├── InvalidPropertiesShouldThrowException.xml
│ │ ├── ListWrapper.xml
│ │ ├── ListWrapper2.xml
│ │ ├── List_Array.xml
│ │ ├── List_Int32.xml
│ │ ├── List_Int32_2.xml
│ │ ├── List_Type.px.xml
│ │ ├── List_Type.sx.xml
│ │ ├── List_Type.xml
│ │ ├── List_XmlSerializable.xml
│ │ ├── LocalAssembly.xml
│ │ ├── LookupCorrectEvent.xml
│ │ ├── LookupCorrectEvent2.xml
│ │ ├── LookupCorrectEvent3.xml
│ │ ├── MyArrayExtension.xml
│ │ ├── MyArrayExtensionA.xml
│ │ ├── MyExtension.xml
│ │ ├── MyExtension2.xml
│ │ ├── MyExtension3.xml
│ │ ├── MyExtension4.xml
│ │ ├── MyExtension6.xml
│ │ ├── NamedItemWithEmptyString.xml
│ │ ├── NamedItems.xml
│ │ ├── NamedItems2.xml
│ │ ├── NamedItems3.xml
│ │ ├── NamedItems4.xml
│ │ ├── NonPrimitive.xml
│ │ ├── NullExtension.xml
│ │ ├── NullableContainer.xml
│ │ ├── NullableWithConverter.xml
│ │ ├── NumericValues.xml
│ │ ├── NumericValues_Max.xml
│ │ ├── NumericValues_NaN.xml
│ │ ├── NumericValues_NegativeInfinity.xml
│ │ ├── NumericValues_PositiveInfinity.xml
│ │ ├── NumericValues_StandardTypes.xml
│ │ ├── PositionalParametersWrapper.xml
│ │ ├── PropertyDefinition.xml
│ │ ├── PropertyNotFound.xml
│ │ ├── ReadOnlyPropertyContainer.xml
│ │ ├── Reference.xml
│ │ ├── SilverlightApp1.xaml
│ │ ├── StaticExtension.xml
│ │ ├── StaticExtensionWrapper.xml
│ │ ├── StaticExtensionWrapper2.xml
│ │ ├── StaticMember.xml
│ │ ├── String.xml
│ │ ├── TestClass4.xml
│ │ ├── TestClass5.xml
│ │ ├── TimeSpan.xml
│ │ ├── Type.xml
│ │ ├── Type2.xml
│ │ ├── TypeConverterOnListMember.xml
│ │ ├── TypeExtensionWrapper.xml
│ │ ├── TypeExtensionWrapper2.xml
│ │ ├── Uri.xml
│ │ ├── Whitespace.xml
│ │ ├── XmlDocument.xml
│ │ ├── XmlSerializable.xml
│ │ └── XmlSerializableWrapper.xml
├── TestCases.Activities
│ ├── AssemblyInfo.cs
│ ├── Assign.cs
│ ├── BasicTests.cs
│ ├── Common
│ │ ├── ApplicationException.cs
│ │ ├── CustomException.cs
│ │ ├── Expressions
│ │ │ ├── TestExpressionTracer.cs
│ │ │ └── TestTypes.cs
│ │ ├── TestBlockingActivityWithWriteLineInCancel.cs
│ │ ├── TestCaseException.cs
│ │ └── TestCaseFailedException.cs
│ ├── DoWhile.cs
│ ├── ExpressionTransform
│ │ ├── ArgumentTest.cs
│ │ ├── BinaryExpression.cs
│ │ ├── DummyHelper.cs
│ │ ├── ExpressionLeafs.cs
│ │ ├── LeafHelper.cs
│ │ ├── MemberExpression.cs
│ │ ├── MethodCall.cs
│ │ ├── NewExpression.cs
│ │ ├── TransformAPITest.cs
│ │ ├── UnaryExpression.cs
│ │ └── ValueTypeDummyHelper.cs
│ ├── Expressions
│ │ ├── Add.cs
│ │ ├── And.cs
│ │ ├── AndAlso.cs
│ │ ├── ArrayItemValue.cs
│ │ ├── As.cs
│ │ ├── Cast.cs
│ │ ├── Divide.cs
│ │ ├── Equal.cs
│ │ ├── FieldReference.cs
│ │ ├── FieldValue.cs
│ │ ├── GreaterThan.cs
│ │ ├── GreaterThanOrEqual.cs
│ │ ├── LessThan.cs
│ │ ├── LessThanOrEqual.cs
│ │ ├── Multiply.cs
│ │ ├── New.cs
│ │ ├── NewArray.cs
│ │ ├── Not.cs
│ │ ├── NotEqual.cs
│ │ ├── Or.cs
│ │ ├── OrElse.cs
│ │ ├── PropertyReference.cs
│ │ ├── PropertyValue.cs
│ │ ├── Subtract.cs
│ │ ├── ValueTypeFieldReference.cs
│ │ ├── ValueTypeIndexerReference.cs
│ │ └── ValueTypePropertyReference.cs
│ ├── Flowchart
│ │ ├── Conditional.cs
│ │ ├── Constraints.cs
│ │ ├── Execution.cs
│ │ ├── Fault.cs
│ │ ├── GenericSwitch.cs
│ │ ├── Join.cs
│ │ ├── Loops.cs
│ │ ├── ObjectModel.cs
│ │ └── Switch.cs
│ ├── ForEach.cs
│ ├── If.cs
│ ├── MethodInvokeTests.cs
│ ├── ParallelActivity.cs
│ ├── ParallelForEach.cs
│ ├── Pick
│ │ ├── Cancellation.cs
│ │ ├── ChangeAfterOpened.cs
│ │ ├── FaultHandling.cs
│ │ ├── Scenario.cs
│ │ └── Validation.cs
│ ├── Rethrow.cs
│ ├── Sequence.cs
│ ├── SwitchTests.cs
│ ├── TerminateWorkflowTests.cs
│ ├── TestCases.Activities.csproj
│ ├── Throw.cs
│ ├── TryCatch.cs
│ ├── WhileActivity.cs
│ ├── WriteLineActivity.cs
│ └── xunit.runner.json
├── TestCases.Runtime
│ ├── AssemblyInfo.cs
│ ├── Common
│ │ ├── Activities
│ │ │ ├── WaitForEventActivity.cs
│ │ │ └── WaitForTrace.cs
│ │ ├── ExceptionStrings.cs
│ │ └── RuntimeHelper.cs
│ ├── TestCases.Runtime.csproj
│ ├── WFIWorkflowInstanceExtensionTests.cs
│ ├── WorflowInstanceResumeBookmarkAsyncTests.cs
│ ├── WorkflowInstanceAbortTests.cs
│ ├── WorkflowInstanceHelper.cs
│ └── xunit.runner.json
├── TestCases.Workflows
│ ├── ActivityWithObjectArgument.cs
│ ├── HelloWorldConsole.cs
│ ├── TestCases.Workflows.csproj
│ ├── TestXamls
│ │ ├── CSharpCalculation.xaml
│ │ ├── NonGenericForEach.xaml
│ │ └── SalaryCalculation.xaml
│ ├── WF4Samples
│ │ ├── Expressions.cs
│ │ ├── NonGenericForEach.cs
│ │ └── TestHelper.cs
│ └── XamlTests.cs
├── TestCases.Xaml
│ ├── Common
│ │ ├── Constants.cs
│ │ └── InstanceCreator
│ │ │ ├── CreatorSettings.cs
│ │ │ ├── DataContractInstanceCreator.cs
│ │ │ ├── InstanceCreator.cs
│ │ │ ├── POCOInstanceCreator.cs
│ │ │ └── PrimitiveCreator.cs
│ ├── RoundTripXamlVisibleTypes.cs
│ └── TestCases.Xaml.csproj
├── TestFileInstanceStore
│ ├── AsyncResult.cs
│ ├── TestFileInstanceStore.cs
│ ├── TestFileInstanceStore.csproj
│ ├── TypedAsyncResult.cs
│ └── TypedCompletedAsyncResult.cs
└── TestObjects
│ ├── Activities
│ ├── Arguments
│ │ └── TestArgument.cs
│ ├── Collections
│ │ ├── CatchList.cs
│ │ └── MemberCollection.cs
│ ├── CustomActivities
│ │ └── BlockingActivity.cs
│ ├── ExpressionTransform
│ │ ├── ExpressionTestRuntime.cs
│ │ ├── TestBinaryExpression.cs
│ │ ├── TestExpression.cs
│ │ ├── TestLValueExpression.cs
│ │ └── TestUnaryExpression.cs
│ ├── Expressions
│ │ ├── ITestBinaryExpression.cs
│ │ ├── ITestBoolReturningActivity.cs
│ │ ├── ITestUnaryExpression.cs
│ │ ├── TestAdd.cs
│ │ ├── TestAnd.cs
│ │ ├── TestAndAlso.cs
│ │ ├── TestArrayItemReference.cs
│ │ ├── TestArrayItemValue.cs
│ │ ├── TestAs.cs
│ │ ├── TestCast.cs
│ │ ├── TestDivide.cs
│ │ ├── TestEqual.cs
│ │ ├── TestFieldReference.cs
│ │ ├── TestFieldValue.cs
│ │ ├── TestGreaterThan.cs
│ │ ├── TestGreaterThanOrEqual.cs
│ │ ├── TestIndexerReference.cs
│ │ ├── TestLessThan.cs
│ │ ├── TestLessThanOrEqual.cs
│ │ ├── TestMultidimensionalArrayItemReference.cs
│ │ ├── TestMultiply.cs
│ │ ├── TestNew.cs
│ │ ├── TestNewArray.cs
│ │ ├── TestNot.cs
│ │ ├── TestNotEqual.cs
│ │ ├── TestOr.cs
│ │ ├── TestOrElse.cs
│ │ ├── TestPropertyReference.cs
│ │ ├── TestPropertyValue.cs
│ │ ├── TestSubtract.cs
│ │ ├── TestValueTypeFieldReference.cs
│ │ ├── TestValueTypeIndexerReference.cs
│ │ └── TestValueTypePropertyReference.cs
│ ├── Flowchart
│ │ ├── TestFlowConditional.cs
│ │ ├── TestFlowElement.cs
│ │ ├── TestFlowStep.cs
│ │ ├── TestFlowSwitch.cs
│ │ └── TestFlowchart.cs
│ ├── StateMachine
│ │ ├── TestStateMachine.cs
│ │ ├── TestStateMachineState.cs
│ │ └── TestTransition.cs
│ ├── TestActivity.cs
│ ├── TestAddToCollection.cs
│ ├── TestArgumentReference.cs
│ ├── TestArgumentValue.cs
│ ├── TestAssign.cs
│ ├── TestAssignNG.cs
│ ├── TestAsyncOperationBlockActivity.cs
│ ├── TestBlockingActivity.cs
│ ├── TestBlockingActivityGeneric.cs
│ ├── TestBlockingActivityUnique.cs
│ ├── TestCancellationScope.cs
│ ├── TestCatch.cs
│ ├── TestClearCollection.cs
│ ├── TestCompensableActivity.cs
│ ├── TestCompensate.cs
│ ├── TestCompensationScope.cs
│ ├── TestConfirm.cs
│ ├── TestCustomActivity.cs
│ ├── TestCustomSequenceBase.cs
│ ├── TestDelay.cs
│ ├── TestDoWhile.cs
│ ├── TestDummyTraceActivity.cs
│ ├── TestExistsInCollection.cs
│ ├── TestExpressionEvaluator.cs
│ ├── TestExpressionEvaluatorWithBody.cs
│ ├── TestForEach.cs
│ ├── TestHandleScope.cs
│ ├── TestIf.cs
│ ├── TestImpersonatedActivity.cs
│ ├── TestImportedChildrenWrapperActivity.cs
│ ├── TestIncrement.cs
│ ├── TestInternalSendMessage.cs
│ ├── TestInvokeAction.cs
│ ├── TestInvokeMethod.cs
│ ├── TestLoop.cs
│ ├── TestNoPersistScope.cs
│ ├── TestNoPersistenceBlockActivity.cs
│ ├── TestParallel.cs
│ ├── TestParallelForEach.cs
│ ├── TestPersist.cs
│ ├── TestPick.cs
│ ├── TestPickBranch.cs
│ ├── TestProductWriteline.cs
│ ├── TestPublicNoPersistScope.cs
│ ├── TestReadLine.cs
│ ├── TestRemoveFromCollection.cs
│ ├── TestResultScope.cs
│ ├── TestRethrow.cs
│ ├── TestRootActivity.cs
│ ├── TestSequence.cs
│ ├── TestSwitch.cs
│ ├── TestTerminateWorkflow.cs
│ ├── TestThrow.cs
│ ├── TestTryCatch.cs
│ ├── TestVariableReference.cs
│ ├── TestVariableValue.cs
│ ├── TestWhile.cs
│ ├── TestWriteLine.cs
│ ├── Tracing
│ │ ├── Outcome.cs
│ │ └── TracingHelper.cs
│ └── Variables
│ │ └── VariableHelper.cs
│ ├── Configurers
│ ├── IConfigurer.cs
│ └── TestSettings.cs
│ ├── CustomActivities
│ ├── ActionActivity.cs
│ ├── ActivityWithConstraints.cs
│ ├── AddContextProperty.cs
│ ├── AsyncOperationBlockActivity.cs
│ ├── BlockingActivity.cs
│ ├── BlockingActivityGeneric.cs
│ ├── BlockingActivityUnique.cs
│ ├── CustomCompensationScope.cs
│ ├── CustomSequence.cs
│ ├── CustomSequenceBase.cs
│ ├── ExpressionEvaluator.cs
│ ├── ExpressionEvaluatorWithBody.cs
│ ├── ImportedChildrenWrapperActivity.cs
│ ├── Increment.cs
│ ├── NoPersistenceBlockActivity.cs
│ ├── ResultScope.cs
│ └── WriteLine.cs
│ ├── Runtime
│ ├── ConstraintValidation
│ │ └── TestConstraintViolation.cs
│ ├── IWorkflowRuntimeAdapter.cs
│ ├── RemoteWorkflowRuntime.cs
│ ├── TestMethodRuntime.cs
│ ├── TestRuntime.cs
│ ├── TestRuntimeDynamicUpdates.cs
│ ├── TestSymbolResolver.cs
│ ├── TestWorkflowRuntime.cs
│ └── TestWorkflowRuntimeConfiguration.cs
│ ├── Runtime45
│ ├── Core
│ │ ├── IDeployable.cs
│ │ ├── IRunnable.cs
│ │ └── RemoteDeployment.cs
│ └── General
│ │ └── ExecuteMethod.cs
│ ├── TestObjects.csproj
│ ├── Tracking
│ ├── FilteredTrackingConfiguration.cs
│ ├── SqlTrackingConfiguration.cs
│ ├── TestProfileProvider.cs
│ ├── TrackingConfiguration.cs
│ ├── TrackingConstants.cs
│ ├── TrackingFilter.cs
│ ├── TrackingParticipants
│ │ ├── InMemoryTrackingParticipant.cs
│ │ ├── StateMachineTrackingParticipant.cs
│ │ ├── TestTrackingDataManager.cs
│ │ ├── TestTrackingParticipantBase.cs
│ │ ├── TrackingParticipantWithDelay.cs
│ │ └── TrackingParticipantWithException.cs
│ └── WorkflowTrackingWatcherProxy.cs
│ ├── Utilities
│ ├── AsyncResult.cs
│ ├── CheckParameter.cs
│ ├── CompletedAsyncResult.cs
│ ├── ErrorStrings.cs
│ ├── ExceptionHelpers.cs
│ ├── FileStore.cs
│ ├── NamespaceHelper.cs
│ ├── PartialTrustMethodInfo.cs
│ ├── Poco
│ │ └── PocoHelper.cs
│ ├── ReflectionHelpers.cs
│ ├── Sql
│ │ ├── DatabaseConfiguration.cs
│ │ ├── DatabaseConfigurations.cs
│ │ ├── SqlHelperUtility.cs
│ │ ├── SqlInstance.cs
│ │ ├── SqlInstanceFactory.cs
│ │ ├── SqlProviderHelper.cs
│ │ ├── SqlWorkflowInstanceStoreLogic40.sql
│ │ └── SqlWorkflowInstanceStoreSchema40.sql
│ ├── TestTraceListenerExtension.cs
│ ├── TestTraceManager.cs
│ └── Validation
│ │ ├── ActivityPlaceholderTrace.cs
│ │ ├── ActivityTrace.cs
│ │ ├── ActualTrace.cs
│ │ ├── BookmarkResumptionTrace.cs
│ │ ├── Common.cs
│ │ ├── DelayTrace.cs
│ │ ├── ExpectedTrace.cs
│ │ ├── PlaceholderTrace.cs
│ │ ├── SynchronizeTrace.cs
│ │ ├── TraceFilter.cs
│ │ ├── TraceValidator.cs
│ │ ├── UserTrace.cs
│ │ ├── WorkflowAbortedTrace.cs
│ │ ├── WorkflowExceptionTrace.cs
│ │ └── WorkflowInstanceTrace.cs
│ ├── Xaml
│ ├── GraphCore
│ │ ├── GraphNode.cs
│ │ ├── IGraphNode.cs
│ │ ├── ITestDependencyObject.cs
│ │ └── TestDependencyObject.cs
│ ├── GraphOperations
│ │ ├── Builders
│ │ │ ├── IXamlObjectGraphBuilder.cs
│ │ │ ├── ObjectGraphWalker.cs
│ │ │ └── XamlObjectGraphBuilder.cs
│ │ └── Comparers
│ │ │ ├── CompareError.cs
│ │ │ ├── CompareMode.cs
│ │ │ ├── GraphCompareResult.cs
│ │ │ └── ObjectGraphComparer.cs
│ └── ObjectGraph.cs
│ ├── XamlObjectComparer
│ ├── CompareResult.cs
│ ├── IgnoreProperty.cs
│ ├── PropertyToIgnore.cs
│ ├── TreeComparer.cs
│ └── TreeComparerResult.cs
│ ├── XamlTestDriver
│ ├── ObjectDumper.cs
│ └── XamlTestDriver.cs
│ └── XmlDiff
│ ├── DiffType.cs
│ ├── NodePosition.cs
│ ├── PositionInfo.cs
│ ├── PropertyCollection.cs
│ ├── ReaderPositionInfo.cs
│ ├── XmlDiff.cs
│ ├── XmlDiffAttribute.cs
│ ├── XmlDiffCharacterData.cs
│ ├── XmlDiffDocument.cs
│ ├── XmlDiffElement.cs
│ ├── XmlDiffEmptyElement.cs
│ ├── XmlDiffEntityReference.cs
│ ├── XmlDiffNameTable.cs
│ ├── XmlDiffNavigator.cs
│ ├── XmlDiffNode.cs
│ ├── XmlDiffNodeType.cs
│ ├── XmlDiffOption.cs
│ └── XmlDiffProcessingInstruction.cs
├── UiPath.Workflow
├── Activities
│ ├── ActivityBuilder.cs
│ └── SourceExpressionException.cs
├── AssemblyInfo.cs
├── Microsoft
│ ├── CSharp
│ │ └── Activities
│ │ │ ├── CSharpReference.cs
│ │ │ └── CSharpValue.cs
│ └── VisualBasic
│ │ └── Activities
│ │ ├── JustInTimeCompiler.cs
│ │ ├── VisualBasic.cs
│ │ ├── VisualBasicDesignerHelper.cs
│ │ ├── VisualBasicHelper.cs
│ │ ├── VisualBasicImportReference.cs
│ │ ├── VisualBasicNameShadowingConstraint.cs
│ │ ├── VisualBasicReference.cs
│ │ ├── VisualBasicSettings.cs
│ │ ├── VisualBasicValue.cs
│ │ └── XamlIntegration
│ │ ├── VisualBasicExpressionConverter.cs
│ │ ├── VisualBasicSettingsConverter.cs
│ │ └── VisualBasicSettingsValueSerializer.cs
├── ScriptingAheadOfTimeCompiler.cs
├── UiPath.Workflow.csproj
├── VbJustInTimeCompiler.cs
└── XamlIntegration
│ ├── ActivityBuilderXamlWriter.cs
│ ├── ActivityWithResultConverter.cs
│ ├── ActivityXamlServices.cs
│ ├── ActivityXamlServicesSettings.cs
│ ├── AheadOfTimeCompiler.cs
│ ├── ArgumentValueSerializer.cs
│ ├── AssemblyReferenceConverter.cs
│ ├── ConcatenatingXamlReader.cs
│ ├── DynamicActivityXamlReader.cs
│ ├── FuncFactory.cs
│ ├── FuncTypeConverter.cs
│ ├── ImplementationVersionConverter.cs
│ ├── InArgumentConverter.cs
│ ├── InOutArgumentConverter.cs
│ ├── NamespaceTable.cs
│ ├── NetDataContractXmlSerializable.cs
│ ├── OutArgumentConverter.cs
│ ├── PropertyReferenceExtension.cs
│ ├── SerializableFuncDeferringLoader.cs
│ ├── TextExpressionCompiler.cs
│ ├── TextExpressionCompilerError.cs
│ ├── TextExpressionCompilerHelper.cs
│ ├── TextExpressionCompilerResults.cs
│ ├── TextExpressionCompilerSettings.cs
│ ├── TypeConverterBase.cs
│ ├── WorkflowIdentityConverter.cs
│ └── XamlWriterExtensions.cs
└── VisualBasic
├── 35MSSharedLib1024.snk
├── Hosting
├── CommandLine
│ └── Vbi.vb
├── ObjectFormatter
│ ├── VisualBasicObjectFormatter.vb
│ ├── VisualBasicObjectFormatterImpl.vb
│ ├── VisualBasicPrimitiveFormatter.vb
│ └── VisualBasicTypeNameFormatter.vb
└── VisualBasicReplServiceProvider.vb
├── Microsoft.CodeAnalysis.VisualBasic.Scripting.vbproj
├── PublicAPI.Shipped.txt
├── PublicAPI.Unshipped.txt
├── VBScriptingResources.Designer.vb
├── VBScriptingResources.resx
├── VisualBasicMemberFilter.vb
├── VisualBasicScript.vb
├── VisualBasicScriptCompiler.vb
└── xlf
├── VBScriptingResources.cs.xlf
├── VBScriptingResources.de.xlf
├── VBScriptingResources.es.xlf
├── VBScriptingResources.fr.xlf
├── VBScriptingResources.it.xlf
├── VBScriptingResources.ja.xlf
├── VBScriptingResources.ko.xlf
├── VBScriptingResources.pl.xlf
├── VBScriptingResources.pt-BR.xlf
├── VBScriptingResources.ru.xlf
├── VBScriptingResources.tr.xlf
├── VBScriptingResources.zh-Hans.xlf
└── VBScriptingResources.zh-Hant.xlf
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/.gitignore
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/CoreWf.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/CoreWf.svg
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/README.md
--------------------------------------------------------------------------------
/WfDesignerHelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/WfDesignerHelloWorld.png
--------------------------------------------------------------------------------
/src/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/.editorconfig
--------------------------------------------------------------------------------
/src/CodeCoverage.runsettings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CodeCoverage.runsettings
--------------------------------------------------------------------------------
/src/CoreWf.EtwTracking/EtwTrackingAsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf.EtwTracking/EtwTrackingAsyncResult.cs
--------------------------------------------------------------------------------
/src/CoreWf.EtwTracking/EtwTrackingParticipant.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf.EtwTracking/EtwTrackingParticipant.cs
--------------------------------------------------------------------------------
/src/CoreWf.EtwTracking/Resources.Constants.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf.EtwTracking/Resources.Constants.cs
--------------------------------------------------------------------------------
/src/CoreWf.EtwTracking/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf.EtwTracking/Resources.resx
--------------------------------------------------------------------------------
/src/CoreWf.EtwTracking/WfEtwTrackingEventSource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf.EtwTracking/WfEtwTrackingEventSource.cs
--------------------------------------------------------------------------------
/src/CoreWf/Activity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Activity.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityAction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityAction.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityCollectionType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityCollectionType.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityDefaults.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityDefaults.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityDelegate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityDelegate.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityFunc.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityFunc.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityInstance.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityInstance.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityInstanceState.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityInstanceState.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityLocationReferenceEnvironment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityLocationReferenceEnvironment.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityMetadata.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityPropertyReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityPropertyReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityUtilities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityUtilities.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityWithResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityWithResult.cs
--------------------------------------------------------------------------------
/src/CoreWf/ActivityWithResultWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ActivityWithResultWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Argument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Argument.cs
--------------------------------------------------------------------------------
/src/CoreWf/ArgumentDirection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ArgumentDirection.cs
--------------------------------------------------------------------------------
/src/CoreWf/ArgumentDirectionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ArgumentDirectionHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/AssemblyInfo.cs
--------------------------------------------------------------------------------
/src/CoreWf/AsyncCodeActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/AsyncCodeActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/AsyncCodeActivityContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/AsyncCodeActivityContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/AsyncInvokeContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/AsyncInvokeContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/AsyncInvokeOperation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/AsyncInvokeOperation.cs
--------------------------------------------------------------------------------
/src/CoreWf/AsyncOperationContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/AsyncOperationContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/Bookmark.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Bookmark.cs
--------------------------------------------------------------------------------
/src/CoreWf/BookmarkCallback.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/BookmarkCallback.cs
--------------------------------------------------------------------------------
/src/CoreWf/BookmarkConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/BookmarkConverter.cs
--------------------------------------------------------------------------------
/src/CoreWf/BookmarkOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/BookmarkOptions.cs
--------------------------------------------------------------------------------
/src/CoreWf/BookmarkOptionsHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/BookmarkOptionsHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/BookmarkResumptionResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/BookmarkResumptionResult.cs
--------------------------------------------------------------------------------
/src/CoreWf/BookmarkScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/BookmarkScope.cs
--------------------------------------------------------------------------------
/src/CoreWf/BookmarkScopeHandle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/BookmarkScopeHandle.cs
--------------------------------------------------------------------------------
/src/CoreWf/CodeActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/CodeActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/CodeActivityContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/CodeActivityContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/CodeActivityMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/CodeActivityMetadata.cs
--------------------------------------------------------------------------------
/src/CoreWf/CodeActivityPublicEnvironmentAccessor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/CodeActivityPublicEnvironmentAccessor.cs
--------------------------------------------------------------------------------
/src/CoreWf/CompletionCallback.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/CompletionCallback.cs
--------------------------------------------------------------------------------
/src/CoreWf/DelegateArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DelegateArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/DelegateCompletionCallback.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DelegateCompletionCallback.cs
--------------------------------------------------------------------------------
/src/CoreWf/DelegateInArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DelegateInArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/DelegateOutArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DelegateOutArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/DurableInstancing/HasRunnableWorkflowEvent.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DurableInstancing/HasRunnableWorkflowEvent.cs
--------------------------------------------------------------------------------
/src/CoreWf/DurableInstancing/LoadWorkflowCommand.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DurableInstancing/LoadWorkflowCommand.cs
--------------------------------------------------------------------------------
/src/CoreWf/DurableInstancing/PersistenceIOParticipant.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DurableInstancing/PersistenceIOParticipant.cs
--------------------------------------------------------------------------------
/src/CoreWf/DurableInstancing/PersistenceParticipant.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DurableInstancing/PersistenceParticipant.cs
--------------------------------------------------------------------------------
/src/CoreWf/DurableInstancing/SaveWorkflowCommand.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DurableInstancing/SaveWorkflowCommand.cs
--------------------------------------------------------------------------------
/src/CoreWf/DynamicActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DynamicActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/DynamicActivityProperty.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DynamicActivityProperty.cs
--------------------------------------------------------------------------------
/src/CoreWf/DynamicActivityTypeDescriptor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/DynamicActivityTypeDescriptor.cs
--------------------------------------------------------------------------------
/src/CoreWf/ExceptionPersistenceExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ExceptionPersistenceExtension.cs
--------------------------------------------------------------------------------
/src/CoreWf/ExclusiveHandle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ExclusiveHandle.cs
--------------------------------------------------------------------------------
/src/CoreWf/ExecutionProperties.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ExecutionProperties.cs
--------------------------------------------------------------------------------
/src/CoreWf/ExpressionUtilities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ExpressionUtilities.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Add.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Add.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/And.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/And.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/AndAlso.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/AndAlso.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ArgumentReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ArgumentReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ArgumentValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ArgumentValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ArrayItemReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ArrayItemReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ArrayItemValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ArrayItemValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/As.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/As.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/AssemblyNameEqualityComparer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/AssemblyNameEqualityComparer.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/AssemblyReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/AssemblyReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/BinaryExpressionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/BinaryExpressionHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Cast.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Cast.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/CompiledExpressionInvoker.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/CompiledExpressionInvoker.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/DelegateArgumentReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/DelegateArgumentReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/DelegateArgumentValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/DelegateArgumentValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Divide.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Divide.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/EnvironmentLocationReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/EnvironmentLocationReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/EnvironmentLocationValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/EnvironmentLocationValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Equal.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Equal.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ExpressionServices.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ExpressionServices.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/FieldReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/FieldReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/FieldValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/FieldValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/GreaterThan.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/GreaterThan.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/GreaterThanOrEqual.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/GreaterThanOrEqual.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ILocationReferenceExpression.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ILocationReferenceExpression.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ILocationReferenceWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ILocationReferenceWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ITextExpression.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ITextExpression.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/IndexerHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/IndexerHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/IndexerReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/IndexerReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/InvokeFunc.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/InvokeFunc.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/InvokeMethod.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/InvokeMethod.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/LambdaReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/LambdaReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/LambdaSerializationException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/LambdaSerializationException.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/LambdaValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/LambdaValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/LessThan.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/LessThan.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/LessThanOrEqual.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/LessThanOrEqual.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Literal.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Literal.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/LocationReferenceValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/LocationReferenceValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/MemberExpressionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/MemberExpressionHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/MethodCallExpressionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/MethodCallExpressionHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Multiply.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Multiply.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/New.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/New.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/NewArray.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/NewArray.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Not.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Not.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/NotEqual.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/NotEqual.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/OperatorPermissionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/OperatorPermissionHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Or.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Or.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/OrElse.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/OrElse.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/PropertyReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/PropertyReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/PropertyValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/PropertyValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/Subtract.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/Subtract.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/TextExpression.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/TextExpression.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/UnaryExpressionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/UnaryExpressionHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ValueTypeFieldReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ValueTypeFieldReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ValueTypeIndexerReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ValueTypeIndexerReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/ValueTypePropertyReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/ValueTypePropertyReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/VariableReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/VariableReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Expressions/VariableValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Expressions/VariableValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/FaultCallback.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/FaultCallback.cs
--------------------------------------------------------------------------------
/src/CoreWf/Handle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Handle.cs
--------------------------------------------------------------------------------
/src/CoreWf/HandleInitializationContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/HandleInitializationContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/HopperCache.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/HopperCache.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/BookmarkInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/BookmarkInfo.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/BookmarkScopeInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/BookmarkScopeInfo.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/IWorkflowInstanceExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/IWorkflowInstanceExtension.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/LocationInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/LocationInfo.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/SymbolResolver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/SymbolResolver.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/WorkflowInstance.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/WorkflowInstance.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/WorkflowInstanceExtensionManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/WorkflowInstanceExtensionManager.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/WorkflowInstanceExtensionProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/WorkflowInstanceExtensionProvider.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/WorkflowInstanceProxy.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/WorkflowInstanceProxy.cs
--------------------------------------------------------------------------------
/src/CoreWf/Hosting/WorkflowInstanceState.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Hosting/WorkflowInstanceState.cs
--------------------------------------------------------------------------------
/src/CoreWf/HybridCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/HybridCollection.cs
--------------------------------------------------------------------------------
/src/CoreWf/HybridDictionary.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/HybridDictionary.cs
--------------------------------------------------------------------------------
/src/CoreWf/IAsyncCodeActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/IAsyncCodeActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/IDynamicActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/IDynamicActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/IExecutionProperty.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/IExecutionProperty.cs
--------------------------------------------------------------------------------
/src/CoreWf/IExpressionContainer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/IExpressionContainer.cs
--------------------------------------------------------------------------------
/src/CoreWf/IInstanceNotificationListener.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/IInstanceNotificationListener.cs
--------------------------------------------------------------------------------
/src/CoreWf/IPropertyRegistrationCallback.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/IPropertyRegistrationCallback.cs
--------------------------------------------------------------------------------
/src/CoreWf/IdSpace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/IdSpace.cs
--------------------------------------------------------------------------------
/src/CoreWf/InArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/InArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/InOutArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/InOutArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/InlinedLocationReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/InlinedLocationReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Internals/DelayTimer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Internals/DelayTimer.cs
--------------------------------------------------------------------------------
/src/CoreWf/Internals/FxTrace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Internals/FxTrace.cs
--------------------------------------------------------------------------------
/src/CoreWf/Internals/ReflectionExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Internals/ReflectionExtensions.cs
--------------------------------------------------------------------------------
/src/CoreWf/InvalidWorkflowException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/InvalidWorkflowException.cs
--------------------------------------------------------------------------------
/src/CoreWf/InvokeCompletedEventArgs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/InvokeCompletedEventArgs.cs
--------------------------------------------------------------------------------
/src/CoreWf/LocalAppContextSwitches.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/LocalAppContextSwitches.cs
--------------------------------------------------------------------------------
/src/CoreWf/Location.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Location.cs
--------------------------------------------------------------------------------
/src/CoreWf/LocationFactory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/LocationFactory.cs
--------------------------------------------------------------------------------
/src/CoreWf/LocationReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/LocationReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/LocationReferenceEnvironment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/LocationReferenceEnvironment.cs
--------------------------------------------------------------------------------
/src/CoreWf/NativeActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NativeActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/NativeActivityAbortContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NativeActivityAbortContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/NativeActivityContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NativeActivityContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/NativeActivityFaultContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NativeActivityFaultContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/NativeActivityMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NativeActivityMetadata.cs
--------------------------------------------------------------------------------
/src/CoreWf/NativeActivityTransactionContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NativeActivityTransactionContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/NoPersistHandle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NoPersistHandle.cs
--------------------------------------------------------------------------------
/src/CoreWf/NoPersistProperty.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/NoPersistProperty.cs
--------------------------------------------------------------------------------
/src/CoreWf/OutArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/OutArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/OverloadGroupAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/OverloadGroupAttribute.cs
--------------------------------------------------------------------------------
/src/CoreWf/PersistableIdleAction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/PersistableIdleAction.cs
--------------------------------------------------------------------------------
/src/CoreWf/ProcessActivityTreeOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ProcessActivityTreeOptions.cs
--------------------------------------------------------------------------------
/src/CoreWf/Quack.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Quack.cs
--------------------------------------------------------------------------------
/src/CoreWf/QualifiedId.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/QualifiedId.cs
--------------------------------------------------------------------------------
/src/CoreWf/RegistrationContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/RegistrationContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/RequiredArgumentAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/RequiredArgumentAttribute.cs
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.ar.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.ar.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.cs.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.cs.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.da.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.da.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.de.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.de.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.el.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.el.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.en.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.en.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.es.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.es.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.fi.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.fi.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.fr.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.fr.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.he.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.he.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.hu.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.hu.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.it.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.it.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.ja.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.ja.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.ko.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.ko.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.nb.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.nb.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.nl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.nl.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.pl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.pl.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.pt-br.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.pt-br.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.pt-pt.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.pt-pt.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.ru.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.ru.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.sv.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.sv.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.tr.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.tr.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.zh-cn.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.zh-cn.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/EventSourceStrings.zh-tw.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/EventSourceStrings.zh-tw.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.ar.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.ar.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.cs.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.cs.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.da.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.da.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.de.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.de.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.el.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.el.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.en.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.en.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.es.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.es.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.fi.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.fi.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.fr.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.fr.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.he.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.he.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.hu.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.hu.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.it.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.it.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.ja.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.ja.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.ko.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.ko.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.nb.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.nb.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.nl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.nl.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.pl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.pl.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.pt-br.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.pt-br.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.pt-pt.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.pt-pt.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.ru.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.ru.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.sv.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.sv.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.tr.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.tr.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.zh-cn.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.zh-cn.resx
--------------------------------------------------------------------------------
/src/CoreWf/Resources/SR.zh-tw.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Resources/SR.zh-tw.resx
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ActionItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ActionItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ActivityCompletionCallbackWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ActivityCompletionCallbackWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ActivityExecutionWorkItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ActivityExecutionWorkItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ActivityExecutor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ActivityExecutor.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ActivityInstanceMap.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ActivityInstanceMap.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ActivityInstanceReference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ActivityInstanceReference.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/AsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/AsyncResult.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/AsyncWaitHandle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/AsyncWaitHandle.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/BookmarkCallbackWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/BookmarkCallbackWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/BookmarkList.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/BookmarkList.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/BookmarkManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/BookmarkManager.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/BookmarkScopeManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/BookmarkScopeManager.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/BookmarkWorkItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/BookmarkWorkItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/CallbackException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/CallbackException.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/CallbackWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/CallbackWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Collections/NullableKeyDictionary.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Collections/NullableKeyDictionary.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Collections/ValidatingCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Collections/ValidatingCollection.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/CompletedAsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/CompletedAsyncResult.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/CompletionBookmark.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/CompletionBookmark.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/CompletionCallbackWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/CompletionCallbackWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DelegateCompletionCallbackWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DelegateCompletionCallbackWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DiagnosticStrings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DiagnosticStrings.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Diagnostics/EventTraceActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Diagnostics/EventTraceActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceHandle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceHandle.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceKey.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceKey.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceKeyState.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceKeyState.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceKeyView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceKeyView.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceOwner.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceOwner.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceState.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceState.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceStore.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceStore.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceValue.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/DurableInstancing/InstanceView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/DurableInstancing/InstanceView.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/EmptyWithCancelationCheckWorkItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/EmptyWithCancelationCheckWorkItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/EmptyWorkItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/EmptyWorkItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ExceptionTrace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ExceptionTrace.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ExclusiveHandleList.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ExclusiveHandleList.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ExecutionPropertyManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ExecutionPropertyManager.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/FatalException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/FatalException.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/FaultBookmark.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/FaultBookmark.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/FaultCallbackWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/FaultCallbackWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/FaultContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/FaultContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/FuncCompletionCallbackWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/FuncCompletionCallbackWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Fx.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Fx.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/IAsyncEventArgs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/IAsyncEventArgs.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ICancelable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ICancelable.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/IPersistencePipelineModule.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/IPersistencePipelineModule.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/InsufficientMemoryException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/InsufficientMemoryException.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/LocationEnvironment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/LocationEnvironment.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/MappableObjectManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/MappableObjectManager.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/MruCache.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/MruCache.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/NameGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/NameGenerator.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/PersistenceMetadataNamespace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/PersistenceMetadataNamespace.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/PersistencePipeline.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/PersistencePipeline.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Pool.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Pool.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ResolveNextArgumentWorkItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ResolveNextArgumentWorkItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/ScheduleActionItemAsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/ScheduleActionItemAsyncResult.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Scheduler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Scheduler.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/SignalGate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/SignalGate.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Ticks.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Ticks.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/TimeoutHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/TimeoutHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/TransactionHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/TransactionHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/TypeHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/TypeHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/TypedAsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/TypedAsyncResult.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/TypedLocationWrapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/TypedLocationWrapper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/WaitCallbackActionItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/WaitCallbackActionItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/WorkItem.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/WorkItem.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/Workflow45Namespace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/Workflow45Namespace.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/WorkflowNamespace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/WorkflowNamespace.cs
--------------------------------------------------------------------------------
/src/CoreWf/Runtime/WorkflowServiceNamespace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Runtime/WorkflowServiceNamespace.cs
--------------------------------------------------------------------------------
/src/CoreWf/RuntimeArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/RuntimeArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/RuntimeDelegateArgument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/RuntimeDelegateArgument.cs
--------------------------------------------------------------------------------
/src/CoreWf/RuntimeTransactionHandle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/RuntimeTransactionHandle.cs
--------------------------------------------------------------------------------
/src/CoreWf/SR.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/SR.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/AddToCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/AddToCollection.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Assign.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Assign.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/BookmarkTable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/BookmarkTable.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CancellationScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CancellationScope.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Catch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Catch.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/ClearCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/ClearCollection.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensableActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensableActivity.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Compensate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Compensate.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensationActivityStrings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensationActivityStrings.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensationBookmarkName.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensationBookmarkName.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensationExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensationExtension.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensationParticipant.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensationParticipant.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensationState.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensationState.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensationToken.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensationToken.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CompensationTokenData.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CompensationTokenData.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Confirm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Confirm.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/CreateBookmarkScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/CreateBookmarkScope.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/DefaultCompensation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/DefaultCompensation.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/DefaultConfirmation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/DefaultConfirmation.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Delay.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Delay.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/DeleteBookmarkScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/DeleteBookmarkScope.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/DoWhile.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/DoWhile.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/DurableTimerExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/DurableTimerExtension.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/ExecutionTracker.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/ExecutionTracker.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/ExistsInCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/ExistsInCollection.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/FlowDecision.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/FlowDecision.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/FlowNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/FlowNode.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/FlowStep.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/FlowStep.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/FlowSwitch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/FlowSwitch.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Flowchart.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Flowchart.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/ForEach.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/ForEach.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/HandleScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/HandleScope.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/IFlowSwitch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/IFlowSwitch.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/If.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/If.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/InternalCompensate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/InternalCompensate.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/InternalConfirm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/InternalConfirm.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/InternalState.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/InternalState.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/InternalTransition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/InternalTransition.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/InvokeAction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/InvokeAction.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/InvokeDelegate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/InvokeDelegate.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/InvokeMethod.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/InvokeMethod.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/MethodExecutor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/MethodExecutor.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/MethodResolver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/MethodResolver.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/NoPersistScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/NoPersistScope.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Parallel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Parallel.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/ParallelForEach.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/ParallelForEach.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Persist.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Persist.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Pick.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Pick.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/PickBranch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/PickBranch.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/RemoveFromCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/RemoveFromCollection.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Rethrow.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Rethrow.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Sequence.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Sequence.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/State.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/State.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/StateMachine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/StateMachine.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/StateMachineEventManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/StateMachineEventManager.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/StateMachineExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/StateMachineExtension.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/StateMachineIdHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/StateMachineIdHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Switch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Switch.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/TerminateWorkflow.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/TerminateWorkflow.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Throw.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Throw.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/TimerExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/TimerExtension.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/TimerTable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/TimerTable.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Tracking/StateMachineStateQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Tracking/StateMachineStateQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/TransactionScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/TransactionScope.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/Transition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/Transition.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/TransitionData.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/TransitionData.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/TriggerCompletedEvent.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/TriggerCompletedEvent.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/TryCatch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/TryCatch.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/While.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/While.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/WorkflowCompensationBehavior.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/WorkflowCompensationBehavior.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/WorkflowTerminatedException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/WorkflowTerminatedException.cs
--------------------------------------------------------------------------------
/src/CoreWf/Statements/WriteLine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Statements/WriteLine.cs
--------------------------------------------------------------------------------
/src/CoreWf/StringResourceBase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/StringResourceBase.cs
--------------------------------------------------------------------------------
/src/CoreWf/SynchronizationContextHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/SynchronizationContextHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/System.Activities.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/System.Activities.csproj
--------------------------------------------------------------------------------
/src/CoreWf/TD.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/TD.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/ActivityInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/ActivityInfo.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/ActivityScheduledQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/ActivityScheduledQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/ActivityScheduledRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/ActivityScheduledRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/ActivityStateQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/ActivityStateQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/ActivityStateRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/ActivityStateRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/ActivityStates.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/ActivityStates.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/BookmarkResumptionQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/BookmarkResumptionQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/BookmarkResumptionRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/BookmarkResumptionRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/CancelRequestedQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/CancelRequestedQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/CancelRequestedRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/CancelRequestedRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/CustomTrackingQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/CustomTrackingQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/CustomTrackingRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/CustomTrackingRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/FaultPropagationQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/FaultPropagationQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/FaultPropagationRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/FaultPropagationRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/ImplementationVisibility.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/ImplementationVisibility.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/RuntimeTrackingProfile.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/RuntimeTrackingProfile.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/TrackingParticipant.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/TrackingParticipant.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/TrackingProfile.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/TrackingProfile.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/TrackingProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/TrackingProvider.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/TrackingQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/TrackingQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/TrackingRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/TrackingRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/TrackingRecordPreFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/TrackingRecordPreFilter.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/WorkflowInstanceAbortedRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/WorkflowInstanceAbortedRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/WorkflowInstanceQuery.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/WorkflowInstanceQuery.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/WorkflowInstanceRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/WorkflowInstanceRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/WorkflowInstanceStates.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/WorkflowInstanceStates.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/WorkflowInstanceSuspendedRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/WorkflowInstanceSuspendedRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/Tracking/WorkflowInstanceTerminatedRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Tracking/WorkflowInstanceTerminatedRecord.cs
--------------------------------------------------------------------------------
/src/CoreWf/TypeConverters.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/TypeConverters.cs
--------------------------------------------------------------------------------
/src/CoreWf/UnhandledExceptionAction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/UnhandledExceptionAction.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/ActivityValidationServices.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/ActivityValidationServices.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/AddValidationError.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/AddValidationError.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/AssertValidation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/AssertValidation.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/Constraint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/Constraint.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/ExtensionMethods.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/ExtensionMethods.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/GetChildSubtree.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/GetChildSubtree.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/GetParentChain.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/GetParentChain.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/GetWorkflowTree.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/GetWorkflowTree.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/ValidationContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/ValidationContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/ValidationError.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/ValidationError.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/ValidationHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/ValidationHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/ValidationResults.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/ValidationResults.cs
--------------------------------------------------------------------------------
/src/CoreWf/Validation/ValidationSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Validation/ValidationSettings.cs
--------------------------------------------------------------------------------
/src/CoreWf/ValidationException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/ValidationException.cs
--------------------------------------------------------------------------------
/src/CoreWf/Variable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/Variable.cs
--------------------------------------------------------------------------------
/src/CoreWf/VariableModifiers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/VariableModifiers.cs
--------------------------------------------------------------------------------
/src/CoreWf/VariableModifiersHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/VariableModifiersHelper.cs
--------------------------------------------------------------------------------
/src/CoreWf/VersionMismatchException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/VersionMismatchException.cs
--------------------------------------------------------------------------------
/src/CoreWf/WfEventSource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WfEventSource.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplication.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplication.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationAbortedEventArgs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationAbortedEventArgs.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationAbortedException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationAbortedException.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationCompletedEventArgs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationCompletedEventArgs.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationCompletedException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationCompletedException.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationEventArgs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationEventArgs.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationException.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationIdleEventArgs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationIdleEventArgs.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationInstance.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationInstance.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationTerminatedException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationTerminatedException.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowApplicationUnloadedException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowApplicationUnloadedException.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowDataContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowDataContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowIdentity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowIdentity.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowIdentityFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowIdentityFilter.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowInspectionServices.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowInspectionServices.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowInvoker.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowInvoker.cs
--------------------------------------------------------------------------------
/src/CoreWf/WorkflowPersistenceContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/WorkflowPersistenceContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/XD.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/XD.cs
--------------------------------------------------------------------------------
/src/CoreWf/XamlIntegration/CompiledDataContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/XamlIntegration/CompiledDataContext.cs
--------------------------------------------------------------------------------
/src/CoreWf/XamlIntegration/CompiledLocation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/XamlIntegration/CompiledLocation.cs
--------------------------------------------------------------------------------
/src/CoreWf/XamlIntegration/ExpressionTreeRewriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/XamlIntegration/ExpressionTreeRewriter.cs
--------------------------------------------------------------------------------
/src/CoreWf/XamlIntegration/ICompiledExpressionRoot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/CoreWf/XamlIntegration/ICompiledExpressionRoot.cs
--------------------------------------------------------------------------------
/src/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Directory.Build.props
--------------------------------------------------------------------------------
/src/System.Activities.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Activities.sln
--------------------------------------------------------------------------------
/src/System.Xaml/GlobalSuppressions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/GlobalSuppressions.cs
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/ExceptionStringTable.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/ExceptionStringTable.txt
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/SRID.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/SRID.Designer.cs
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/SRID.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/SRID.resx
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/win32res.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/win32res.rc
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.cs.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.de.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.es.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.fr.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.it.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.ja.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.ko.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.pl.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.pt-BR.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.pt-BR.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.ru.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.tr.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.zh-Hans.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.zh-Hans.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/Resources/xlf/Strings.zh-Hant.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/Resources/xlf/Strings.zh-Hant.xlf
--------------------------------------------------------------------------------
/src/System.Xaml/SR.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/SR.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System.Xaml.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System.Xaml.csproj
--------------------------------------------------------------------------------
/src/System.Xaml/System.Xaml.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System.Xaml.sln
--------------------------------------------------------------------------------
/src/System.Xaml/System/SR.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/SR.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/ArrayExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/ArrayExtension.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/INameScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/INameScope.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/IQueryAmbient.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/IQueryAmbient.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/IUriContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/IUriContext.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/MarkupExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/MarkupExtension.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/NullExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/NullExtension.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/StaticExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/StaticExtension.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/TypeExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/TypeExtension.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/Markup/ValueSerializer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/Markup/ValueSerializer.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/NameScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/NameScope.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Windows/NameValidationHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Windows/NameValidationHelper.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/AllowedMemberLocations.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/AllowedMemberLocations.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/ContextServices.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/ContextServices.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/NameFixupGraph.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/NameFixupGraph.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/NameFixupToken.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/NameFixupToken.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/ObjectWriterFrame.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/ObjectWriterFrame.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/SavedContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/SavedContext.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/XamlCommonFrame.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/XamlCommonFrame.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/XamlContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/XamlContext.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/XamlParserContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/XamlParserContext.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Context/XamlParserFrame.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Context/XamlParserFrame.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/EnhancedXamlAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/EnhancedXamlAttribute.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/EventConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/EventConverter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IAmbientProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IAmbientProvider.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IAttachedPropertyStore.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IAttachedPropertyStore.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IDestinationTypeProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IDestinationTypeProvider.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/INamespacePrefixLookup.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/INamespacePrefixLookup.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IRootObjectProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IRootObjectProvider.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IXamlLineInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IXamlLineInfo.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IXamlLineInfoConsumer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IXamlLineInfoConsumer.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IXamlNameProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IXamlNameProvider.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IXamlNameResolver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IXamlNameResolver.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IXamlNamespaceResolver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IXamlNamespaceResolver.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/IXamlObjectWriterFactory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/IXamlObjectWriterFactory.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/InfosetObjects/XamlNodes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/InfosetObjects/XamlNodes.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/MS/Impl/ArrayHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/MS/Impl/ArrayHelper.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/MS/Impl/KnownStrings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/MS/Impl/KnownStrings.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/MS/Impl/XmlNsInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/MS/Impl/XmlNsInfo.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/NameReferenceConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/NameReferenceConverter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/NameScopeDictionary.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/NameScopeDictionary.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/NamespaceDeclaration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/NamespaceDeclaration.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/MePullParser.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/MePullParser.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/MeScanner.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/MeScanner.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/NodeStreamSorter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/NodeStreamSorter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/ScannerNodeType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/ScannerNodeType.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlAttribute.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlName.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlName.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlPropertyName.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlPropertyName.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlPullParser.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlPullParser.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlQualifiedName.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlQualifiedName.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlScanner.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlScanner.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlScannerNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlScannerNode.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlScannerStack.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlScannerStack.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Parser/XamlText.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Parser/XamlText.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Primitives/LineInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Primitives/LineInfo.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Primitives/ReaderDelegate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Primitives/ReaderDelegate.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Primitives/WriterDelegate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Primitives/WriterDelegate.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Primitives/XamlNodeList.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Primitives/XamlNodeList.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Primitives/XamlNodeQueue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Primitives/XamlNodeQueue.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Primitives/XamlSubreader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Primitives/XamlSubreader.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Replacements/Reference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Replacements/Reference.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Runtime/ClrObjectRuntime.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Runtime/ClrObjectRuntime.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/MemberReflector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/MemberReflector.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/Reflector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/Reflector.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/TypeBits.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/TypeBits.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/TypeReflector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/TypeReflector.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/XamlCollectionKind.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/XamlCollectionKind.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/XamlDirective.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/XamlDirective.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/XamlMemberInvoker.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/XamlMemberInvoker.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/XamlNamespace.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/XamlNamespace.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/XamlTypeInvoker.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/XamlTypeInvoker.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/Schema/XamlValueConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/Schema/XamlValueConverter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/ShouldSerializeAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/ShouldSerializeAttribute.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XData.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XData.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlDeferLoadAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlDeferLoadAttribute.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlDeferringLoader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlDeferringLoader.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlException.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlException.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlLanguage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlLanguage.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlMarkupExtensionWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlMarkupExtensionWriter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlMember.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlMember.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlObjectReader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlObjectReader.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlObjectReaderSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlObjectReaderSettings.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlReader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlReader.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlRuntime.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlRuntime.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlSchemaContext.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlSchemaContext.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlSchemaContextSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlSchemaContextSettings.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlServices.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlServices.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlType.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlTypeName.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlTypeName.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlTypeTypeConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlTypeTypeConverter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlWriter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlWriterSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlWriterSettings.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlXmlWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlXmlWriter.cs
--------------------------------------------------------------------------------
/src/System.Xaml/System/Xaml/XamlXmlWriterSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/System/Xaml/XamlXmlWriterSettings.cs
--------------------------------------------------------------------------------
/src/System.Xaml/ms/Internal/CriticalExceptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/ms/Internal/CriticalExceptions.cs
--------------------------------------------------------------------------------
/src/System.Xaml/ms/Internal/FrugalList.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/ms/Internal/FrugalList.cs
--------------------------------------------------------------------------------
/src/System.Xaml/ms/Internal/SafeSecurityHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/ms/Internal/SafeSecurityHelper.cs
--------------------------------------------------------------------------------
/src/System.Xaml/ms/Internal/Xaml/Context/XamlFrame.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/ms/Internal/Xaml/Context/XamlFrame.cs
--------------------------------------------------------------------------------
/src/System.Xaml/otherassemblyattrs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/System.Xaml/otherassemblyattrs.cs
--------------------------------------------------------------------------------
/src/Test/BookmarkConsoleApp/BookmarkActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/BookmarkConsoleApp/BookmarkActivity.cs
--------------------------------------------------------------------------------
/src/Test/BookmarkConsoleApp/BookmarkConsoleApp.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/BookmarkConsoleApp/BookmarkConsoleApp.csproj
--------------------------------------------------------------------------------
/src/Test/BookmarkConsoleApp/BookmarkConsoleAppProgram.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/BookmarkConsoleApp/BookmarkConsoleAppProgram.cs
--------------------------------------------------------------------------------
/src/Test/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Directory.Build.props
--------------------------------------------------------------------------------
/src/Test/ImperativeTestCases/DynamicTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/ImperativeTestCases/DynamicTests.cs
--------------------------------------------------------------------------------
/src/Test/ImperativeTestCases/ImperativeTestCases.csproj:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Test/ImperativeTestCases/PrintTransactionId.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/ImperativeTestCases/PrintTransactionId.cs
--------------------------------------------------------------------------------
/src/Test/ImperativeTestCases/TransactedScopeTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/ImperativeTestCases/TransactedScopeTest.cs
--------------------------------------------------------------------------------
/src/Test/JsonFileInstanceStore/AsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/JsonFileInstanceStore/AsyncResult.cs
--------------------------------------------------------------------------------
/src/Test/JsonFileInstanceStore/JsonFileInstanceStore.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/JsonFileInstanceStore/JsonFileInstanceStore.cs
--------------------------------------------------------------------------------
/src/Test/JsonFileInstanceStore/JsonFileInstanceStore.csproj:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Test/JsonFileInstanceStore/TypedAsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/JsonFileInstanceStore/TypedAsyncResult.cs
--------------------------------------------------------------------------------
/src/Test/Samples/AtBatStateMachine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/AtBatStateMachine.cs
--------------------------------------------------------------------------------
/src/Test/Samples/BookmarkActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/BookmarkActivity.cs
--------------------------------------------------------------------------------
/src/Test/Samples/FlowChart.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/FlowChart.cs
--------------------------------------------------------------------------------
/src/Test/Samples/HelloWorld.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/HelloWorld.cs
--------------------------------------------------------------------------------
/src/Test/Samples/JSONPersistence.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/JSONPersistence.cs
--------------------------------------------------------------------------------
/src/Test/Samples/Samples.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/Samples.csproj
--------------------------------------------------------------------------------
/src/Test/Samples/Sequential.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/Sequential.cs
--------------------------------------------------------------------------------
/src/Test/Samples/Tracking.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/Tracking.cs
--------------------------------------------------------------------------------
/src/Test/Samples/Utilities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/Utilities.cs
--------------------------------------------------------------------------------
/src/Test/Samples/WFAppExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/WFAppExtension.cs
--------------------------------------------------------------------------------
/src/Test/Samples/WfTracingEventListener.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/WfTracingEventListener.cs
--------------------------------------------------------------------------------
/src/Test/Samples/xunit.runner.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/Samples/xunit.runner.json
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/Assets/NUnitStoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/Assets/NUnitStoreLogo.png
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/Categories.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/Categories.cs
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/Compat.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/Compat.cs
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/MainTestPage.xaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/MainTestPage.xaml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/MainTestPage.xaml.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/MainTestPage.xaml.cs
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/Package.appxmanifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/Package.appxmanifest
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/Program.cs
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/Properties/Default.rd.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/Properties/Default.rd.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/System.Xaml/ChangeLog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/System.Xaml/ChangeLog
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/UnitTestApp.xaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/UnitTestApp.xaml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/UnitTestApp.xaml.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/UnitTestApp.xaml.cs
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/ArrayExtension2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/ArrayList.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/ArrayList.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/Array_Int32.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/Array_Int32.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/ChangeLog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/ChangeLog
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/DateTime.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/DateTime.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/DateTime2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/DateTime2.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/DateTime3.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/DateTime3.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/DateTime4.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/DateTime4.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/DateTime5.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/DateTime5.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/DateTime6.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/DateTime6.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/DefaultNamespaces.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/EventStore.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/EventStore.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/EventStore2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/EventStore2.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/EventStore3.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/EventStore3.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/EventStore4.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/EventStore4.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/EventStore5.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/EventStore5.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/Guid.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/Guid.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/Int32.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/Int32.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/ListWrapper.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/ListWrapper.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/ListWrapper2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/ListWrapper2.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/List_Array.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/List_Array.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/List_Int32.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/List_Int32.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/List_Int32_2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/List_Int32_2.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/List_Type.px.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/List_Type.px.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/List_Type.sx.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/List_Type.sx.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/List_Type.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/List_Type.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/NullExtension.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/Reference.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/Reference.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/StaticExtension.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/String.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/String.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/TimeSpan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/TimeSpan.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/Type.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/Type2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/Type2.xml
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/TypeConverterOnListMember.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/Test/System.Xaml.TestCases/XmlFiles/Uri.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/System.Xaml.TestCases/XmlFiles/Uri.xml
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/AssemblyInfo.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Assign.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Assign.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/BasicTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/BasicTests.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/DoWhile.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/DoWhile.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Add.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Add.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/And.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/And.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/AndAlso.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/AndAlso.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/As.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/As.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Cast.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Cast.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Divide.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Divide.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Equal.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Equal.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/LessThan.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/LessThan.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Multiply.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Multiply.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/New.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/New.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/NewArray.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/NewArray.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Not.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Not.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/NotEqual.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/NotEqual.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Or.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Or.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/OrElse.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/OrElse.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Expressions/Subtract.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Expressions/Subtract.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Flowchart/Execution.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Flowchart/Execution.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Flowchart/Fault.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Flowchart/Fault.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Flowchart/Join.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Flowchart/Join.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Flowchart/Loops.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Flowchart/Loops.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Flowchart/Switch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Flowchart/Switch.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/ForEach.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/ForEach.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/If.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/If.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/MethodInvokeTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/MethodInvokeTests.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/ParallelActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/ParallelActivity.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/ParallelForEach.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/ParallelForEach.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Pick/Cancellation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Pick/Cancellation.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Pick/FaultHandling.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Pick/FaultHandling.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Pick/Scenario.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Pick/Scenario.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Pick/Validation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Pick/Validation.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Rethrow.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Rethrow.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Sequence.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Sequence.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/SwitchTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/SwitchTests.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/Throw.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/Throw.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/TryCatch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/TryCatch.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/WhileActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/WhileActivity.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/WriteLineActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/WriteLineActivity.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Activities/xunit.runner.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Activities/xunit.runner.json
--------------------------------------------------------------------------------
/src/Test/TestCases.Runtime/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Runtime/AssemblyInfo.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Runtime/Common/ExceptionStrings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Runtime/Common/ExceptionStrings.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Runtime/Common/RuntimeHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Runtime/Common/RuntimeHelper.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Runtime/TestCases.Runtime.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Runtime/TestCases.Runtime.csproj
--------------------------------------------------------------------------------
/src/Test/TestCases.Runtime/WorkflowInstanceHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Runtime/WorkflowInstanceHelper.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Runtime/xunit.runner.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Runtime/xunit.runner.json
--------------------------------------------------------------------------------
/src/Test/TestCases.Workflows/HelloWorldConsole.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Workflows/HelloWorldConsole.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Workflows/WF4Samples/TestHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Workflows/WF4Samples/TestHelper.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Workflows/XamlTests.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Workflows/XamlTests.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Xaml/Common/Constants.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Xaml/Common/Constants.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Xaml/RoundTripXamlVisibleTypes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Xaml/RoundTripXamlVisibleTypes.cs
--------------------------------------------------------------------------------
/src/Test/TestCases.Xaml/TestCases.Xaml.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestCases.Xaml/TestCases.Xaml.csproj
--------------------------------------------------------------------------------
/src/Test/TestFileInstanceStore/AsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestFileInstanceStore/AsyncResult.cs
--------------------------------------------------------------------------------
/src/Test/TestFileInstanceStore/TypedAsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestFileInstanceStore/TypedAsyncResult.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/Expressions/TestAs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/Expressions/TestAs.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/Expressions/TestOr.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/Expressions/TestOr.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestActivity.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestArgumentValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestArgumentValue.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestAssign.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestAssign.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestAssignNG.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestAssignNG.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestCatch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestCatch.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestCompensate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestCompensate.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestConfirm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestConfirm.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestCustomActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestCustomActivity.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestDelay.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestDelay.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestDoWhile.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestDoWhile.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestForEach.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestForEach.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestHandleScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestHandleScope.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestIf.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestIf.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestIncrement.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestIncrement.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestInvokeAction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestInvokeAction.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestInvokeMethod.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestInvokeMethod.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestLoop.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestLoop.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestNoPersistScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestNoPersistScope.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestParallel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestParallel.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestPersist.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestPersist.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestPick.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestPick.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestPickBranch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestPickBranch.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestReadLine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestReadLine.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestResultScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestResultScope.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestRethrow.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestRethrow.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestRootActivity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestRootActivity.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestSequence.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestSequence.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestSwitch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestSwitch.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestThrow.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestThrow.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestTryCatch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestTryCatch.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestVariableValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestVariableValue.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestWhile.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestWhile.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/TestWriteLine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/TestWriteLine.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Activities/Tracing/Outcome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Activities/Tracing/Outcome.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Configurers/IConfigurer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Configurers/IConfigurer.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Configurers/TestSettings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Configurers/TestSettings.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/CustomActivities/Increment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/CustomActivities/Increment.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/CustomActivities/ResultScope.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/CustomActivities/ResultScope.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/CustomActivities/WriteLine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/CustomActivities/WriteLine.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Runtime/RemoteWorkflowRuntime.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Runtime/RemoteWorkflowRuntime.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Runtime/TestMethodRuntime.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Runtime/TestMethodRuntime.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Runtime/TestRuntime.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Runtime/TestRuntime.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Runtime/TestSymbolResolver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Runtime/TestSymbolResolver.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Runtime/TestWorkflowRuntime.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Runtime/TestWorkflowRuntime.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Runtime45/Core/IDeployable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Runtime45/Core/IDeployable.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Runtime45/Core/IRunnable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Runtime45/Core/IRunnable.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/TestObjects.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/TestObjects.csproj
--------------------------------------------------------------------------------
/src/Test/TestObjects/Tracking/TestProfileProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Tracking/TestProfileProvider.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Tracking/TrackingConstants.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Tracking/TrackingConstants.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Tracking/TrackingFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Tracking/TrackingFilter.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/AsyncResult.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/AsyncResult.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/CheckParameter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/CheckParameter.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/ErrorStrings.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/ErrorStrings.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/ExceptionHelpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/ExceptionHelpers.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/FileStore.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/FileStore.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/NamespaceHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/NamespaceHelper.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/Poco/PocoHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/Poco/PocoHelper.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/ReflectionHelpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/ReflectionHelpers.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/Sql/SqlInstance.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/Sql/SqlInstance.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/TestTraceManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/TestTraceManager.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Utilities/Validation/Common.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Utilities/Validation/Common.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Xaml/GraphCore/GraphNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Xaml/GraphCore/GraphNode.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Xaml/GraphCore/IGraphNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Xaml/GraphCore/IGraphNode.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/Xaml/ObjectGraph.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/Xaml/ObjectGraph.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XamlTestDriver/ObjectDumper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XamlTestDriver/ObjectDumper.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XamlTestDriver/XamlTestDriver.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XamlTestDriver/XamlTestDriver.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/DiffType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/DiffType.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/NodePosition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/NodePosition.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/PositionInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/PositionInfo.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/PropertyCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/PropertyCollection.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/ReaderPositionInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/ReaderPositionInfo.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiff.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiff.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffAttribute.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffCharacterData.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffCharacterData.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffDocument.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffDocument.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffElement.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffElement.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffEmptyElement.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffEmptyElement.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffNameTable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffNameTable.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffNavigator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffNavigator.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffNode.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffNodeType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffNodeType.cs
--------------------------------------------------------------------------------
/src/Test/TestObjects/XmlDiff/XmlDiffOption.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/Test/TestObjects/XmlDiff/XmlDiffOption.cs
--------------------------------------------------------------------------------
/src/UiPath.Workflow/Activities/ActivityBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/UiPath.Workflow/Activities/ActivityBuilder.cs
--------------------------------------------------------------------------------
/src/UiPath.Workflow/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/UiPath.Workflow/AssemblyInfo.cs
--------------------------------------------------------------------------------
/src/UiPath.Workflow/ScriptingAheadOfTimeCompiler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/UiPath.Workflow/ScriptingAheadOfTimeCompiler.cs
--------------------------------------------------------------------------------
/src/UiPath.Workflow/UiPath.Workflow.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/UiPath.Workflow/UiPath.Workflow.csproj
--------------------------------------------------------------------------------
/src/UiPath.Workflow/VbJustInTimeCompiler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/UiPath.Workflow/VbJustInTimeCompiler.cs
--------------------------------------------------------------------------------
/src/UiPath.Workflow/XamlIntegration/FuncFactory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/UiPath.Workflow/XamlIntegration/FuncFactory.cs
--------------------------------------------------------------------------------
/src/UiPath.Workflow/XamlIntegration/NamespaceTable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/UiPath.Workflow/XamlIntegration/NamespaceTable.cs
--------------------------------------------------------------------------------
/src/VisualBasic/35MSSharedLib1024.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/35MSSharedLib1024.snk
--------------------------------------------------------------------------------
/src/VisualBasic/Hosting/CommandLine/Vbi.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/Hosting/CommandLine/Vbi.vb
--------------------------------------------------------------------------------
/src/VisualBasic/PublicAPI.Shipped.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/PublicAPI.Shipped.txt
--------------------------------------------------------------------------------
/src/VisualBasic/PublicAPI.Unshipped.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/VisualBasic/VBScriptingResources.Designer.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/VBScriptingResources.Designer.vb
--------------------------------------------------------------------------------
/src/VisualBasic/VBScriptingResources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/VBScriptingResources.resx
--------------------------------------------------------------------------------
/src/VisualBasic/VisualBasicMemberFilter.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/VisualBasicMemberFilter.vb
--------------------------------------------------------------------------------
/src/VisualBasic/VisualBasicScript.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/VisualBasicScript.vb
--------------------------------------------------------------------------------
/src/VisualBasic/VisualBasicScriptCompiler.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/VisualBasicScriptCompiler.vb
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.cs.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.cs.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.de.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.de.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.es.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.es.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.fr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.fr.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.it.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.it.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.ja.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.ja.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.ko.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.ko.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.pl.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.pl.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.pt-BR.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.pt-BR.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.ru.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.ru.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.tr.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.tr.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.zh-Hans.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.zh-Hans.xlf
--------------------------------------------------------------------------------
/src/VisualBasic/xlf/VBScriptingResources.zh-Hant.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dmetzgar/corewf/HEAD/src/VisualBasic/xlf/VBScriptingResources.zh-Hant.xlf
--------------------------------------------------------------------------------