├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── LICENSE.txt ├── OrleanSpaces.sln ├── OrleanSpaces.sln.startup.json ├── OrleansLogo.png ├── bench └── OrleanSpaces.Benchmarks │ ├── OrleanSpaces.Benchmarks.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ └── Tuples │ ├── SpaceTemplateBenchmarks.cs │ ├── SpaceTupleBenchmarks.cs │ └── Specialized │ ├── BoolTupleBenchmarks.cs │ ├── ByteTupleBenchmarks.cs │ ├── CharTupleBenchmarks.cs │ ├── DateTimeOffsetTupleBenchmarks.cs │ ├── DateTimeTupleBenchmarks.cs │ ├── DecimalTupleBenchmarks.cs │ ├── DoubleTupleBenchmarks.cs │ ├── FloatTupleBenchmarks.cs │ ├── GuidTupleBenchmarks.cs │ ├── HugeTupleBenchmarks.cs │ ├── IntTupleBenchmarks.cs │ ├── LongTupleBenchmarks.cs │ ├── ShortTupleBenchmarks.cs │ └── TimeSpanTupleBenchmarks.cs ├── docs ├── OrleanSpaces.Analyzers │ ├── Images │ │ ├── OSA001 │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ ├── OSA002 │ │ │ ├── 1.png │ │ │ └── 2.png │ │ ├── OSA003 │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── OSA004 │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── README.md │ └── Rules │ │ ├── OSA001.md │ │ ├── OSA002.md │ │ ├── OSA003.md │ │ └── OSA004.md ├── OrleanSpaces │ └── README.md └── README.md ├── samples ├── 01_TupleSyntax │ ├── Program.cs │ └── TupleSyntax.csproj ├── 02_HelloWorld │ ├── HelloWorld.csproj │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json ├── 03_Concurrent │ ├── Concurrent.csproj │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json ├── 04_DelayedExec │ ├── Evaluator │ │ ├── Evaluator.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── appsettings.json │ ├── Peeker │ │ ├── Peeker.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ └── Poper │ │ ├── Poper.csproj │ │ ├── Program.cs │ │ └── appsettings.json ├── 05_Observer │ ├── Observers │ │ ├── Archiver.cs │ │ ├── Auditor.cs │ │ ├── Completer.cs │ │ └── Ponger.cs │ ├── PingPong.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── 06_AsyncEnumerator │ ├── AsyncEnumerator.csproj │ ├── Program.cs │ └── appsettings.json ├── 07_ClientServer │ ├── Client │ │ ├── Client.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ └── Server │ │ ├── Program.cs │ │ ├── Server.csproj │ │ └── appsettings.json ├── 08_PasswordSearch │ ├── Master.cs │ ├── PasswordSearch.csproj │ ├── Program.cs │ ├── Slave.cs │ ├── appsettings.json │ └── data.json ├── 09_CacheReplication │ ├── Silo1 │ │ ├── Program.cs │ │ ├── Silo1.csproj │ │ └── appsettings.json │ ├── Silo2 │ │ ├── Program.cs │ │ ├── Silo2.csproj │ │ └── appsettings.json │ └── SiloShared │ │ ├── LocalCacheGrain.cs │ │ ├── Program.cs │ │ └── SiloShared.csproj ├── Sandbox │ ├── Program.cs │ └── Sandbox.csproj └── SpaceHost │ ├── Configs.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ └── SpaceHost.csproj ├── src ├── OrleanSpaces.Analyzers │ ├── Constants.cs │ ├── Extensions.cs │ ├── OSA001 │ │ └── InternalUseOnlyAttributeAnalyzer.cs │ ├── OSA002 │ │ ├── TemplateCacheOverInitAnalyzer.cs │ │ └── TemplateCacheOverInitFixer.cs │ ├── OSA003 │ │ ├── NotSupportedFieldTypeAnalyzer.cs │ │ └── NotSupportedFieldTypeFixer.cs │ ├── OSA004 │ │ ├── PreferSpecializedOverGenericAnalyzer.cs │ │ └── PreferSpecializedOverGenericFixer.cs │ ├── OrleanSpaces.Analyzers.csproj │ ├── Usings.cs │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 └── OrleanSpaces │ ├── Agents │ ├── BaseAgent.cs │ ├── BoolAgent.cs │ ├── ByteAgent.cs │ ├── CharAgent.cs │ ├── DateTimeAgent.cs │ ├── DateTimeOffsetAgent.cs │ ├── DecimalAgent.cs │ ├── DoubleAgent.cs │ ├── FloatAgent.cs │ ├── GuidAgent.cs │ ├── HugeAgent.cs │ ├── IntAgent.cs │ ├── LongAgent.cs │ ├── SByteAgent.cs │ ├── ShortAgent.cs │ ├── SpaceAgent.cs │ ├── TimeSpanAgent.cs │ ├── UHugeAgent.cs │ ├── UIntAgent.cs │ ├── ULongAgent.cs │ └── UShortAgent.cs │ ├── Channels │ ├── CallbackChannel.cs │ ├── ContinuationChannel.cs │ ├── EvaluationChannel.cs │ └── ObserverChannel.cs │ ├── Constants.cs │ ├── Extensions.cs │ ├── Grains │ ├── Directors │ │ ├── BaseDirector.cs │ │ ├── BoolDirector.cs │ │ ├── ByteDirector.cs │ │ ├── CharDirector.cs │ │ ├── DateTimeDirector.cs │ │ ├── DateTimeOffsetDirector.cs │ │ ├── DecimalDirector.cs │ │ ├── DoubleDirector.cs │ │ ├── FloatDirector.cs │ │ ├── GuidDirector.cs │ │ ├── HugeDirector.cs │ │ ├── IntDirector.cs │ │ ├── LongDirector.cs │ │ ├── SByteDirector.cs │ │ ├── ShortDirector.cs │ │ ├── SpaceDirector.cs │ │ ├── TimeSpanDirector.cs │ │ ├── UHugeDirector.cs │ │ ├── UIntDirector.cs │ │ ├── ULongDirector.cs │ │ └── UShortDirector.cs │ └── Stores │ │ ├── BaseStore.cs │ │ ├── BoolStore.cs │ │ ├── ByteStore.cs │ │ ├── CharStore.cs │ │ ├── DateTimeOffsetStore.cs │ │ ├── DateTimeStore.cs │ │ ├── DecimalStore.cs │ │ ├── DoubleStore.cs │ │ ├── FloatStore.cs │ │ ├── GuidStore.cs │ │ ├── HugeStore.cs │ │ ├── IntStore.cs │ │ ├── LongStore.cs │ │ ├── SByteStore.cs │ │ ├── ShortStore.cs │ │ ├── SpaceStore.cs │ │ ├── TimeSpanStore.cs │ │ ├── UHugeStore.cs │ │ ├── UIntStore.cs │ │ ├── ULongStore.cs │ │ └── UShortStore.cs │ ├── Helpers │ ├── Helpers.cs │ ├── TemplateHelpers.cs │ ├── ThrowHelpers.cs │ └── TupleHelpers.cs │ ├── ISpaceAgent.cs │ ├── ISpaceObserver.cs │ ├── ISpaceRouter.cs │ ├── IStoreDirector.cs │ ├── ITupleStore.cs │ ├── InternalUseOnlyAttribute.cs │ ├── OrleanSpaces.csproj │ ├── Processors │ ├── CallbackProcessor.cs │ ├── ContinuationProcessor.cs │ ├── EvaluationProcessor.cs │ ├── ObserverProcessor.cs │ └── Spaces │ │ ├── BaseProcessor.cs │ │ ├── BoolProcessor.cs │ │ ├── ByteProcessor.cs │ │ ├── CharProcessor.cs │ │ ├── DateTimeOffsetProcessor.cs │ │ ├── DateTimeProcessor.cs │ │ ├── DecimalProcessor.cs │ │ ├── DoubleProcessor.cs │ │ ├── FloatProcessor.cs │ │ ├── GuidProcessor.cs │ │ ├── HugeProcessor.cs │ │ ├── IntProcessor.cs │ │ ├── LongProcessor.cs │ │ ├── SByteProcessor.cs │ │ ├── ShortProcessor.cs │ │ ├── SpaceProcessor.cs │ │ ├── TimeSpanProcessor.cs │ │ ├── UHugeProcessor.cs │ │ ├── UIntProcessor.cs │ │ ├── ULongProcessor.cs │ │ └── UShortProcessor.cs │ ├── Registries │ ├── CallbackRegistry.cs │ └── ObserverRegistry.cs │ ├── SpaceOptions.cs │ ├── StoreContent.cs │ ├── StoreTuple.cs │ ├── TupleAction.cs │ └── Tuples │ ├── IBufferConsumer.cs │ ├── ISpaceTemplate.cs │ ├── ISpaceTuple.cs │ ├── NumericMarshaller.cs │ ├── SpaceTuple.cs │ └── Specialized │ ├── BoolTuple.cs │ ├── ByteTuple.cs │ ├── CharTuple.cs │ ├── DateTimeOffsetTuple.cs │ ├── DateTimeTuple.cs │ ├── DecimalTuple.cs │ ├── DoubleTuple.cs │ ├── FloatTuple.cs │ ├── GuidTuple.cs │ ├── HugeTuple.cs │ ├── IntTuple.cs │ ├── LongTuple.cs │ ├── SByteTuple.cs │ ├── ShortTuple.cs │ ├── TimeSpanTuple.cs │ ├── UHugeTuple.cs │ ├── UIntTuple.cs │ ├── ULongTuple.cs │ └── UShortTuple.cs └── tests ├── OrleanSpaces.Analyzers.Tests ├── AnalyzerFixture.cs ├── ConstantsTests.cs ├── FixerFixture.cs ├── Namespace.cs ├── OSA001 │ └── InternalUseOnlyAttributeAnalyzerTests.cs ├── OSA002 │ ├── TemplateCacheOverInitAnalyzerTests.cs │ └── TemplateCacheOverInitFixerTests.cs ├── OSA003 │ ├── NotSupportedTypeAnalyzerTests.cs │ └── NotSupportedTypeFixerTests.cs ├── OSA004 │ ├── PreferSpecializedOverGenericAnalyzerTests.cs │ └── PreferSpecializedOverGenericFixerTests.cs ├── OrleanSpaces.Analyzers.Tests.csproj └── Usings.cs └── OrleanSpaces.Tests ├── Agents ├── IntAgentTests.cs └── SpaceAgentTests.cs ├── AssemblyInfo.cs ├── Channels ├── CallbackChannelTests.cs ├── ContinuationChannelTests.cs ├── EvaluationChannelTests.cs └── ObserverChannelTests.cs ├── ClusterFixture.cs ├── ConstantTests.cs ├── Directors ├── IntDirectorTests.cs └── SpaceDirectorTests.cs ├── ExtensionTests.cs ├── HelperTests.cs ├── ObserverTests.cs ├── OrleanSpaces.Tests.csproj ├── Processors ├── CallbackProcessorTests.cs ├── ContinuationProcessorTests.cs ├── EvaluationProcessorTests.cs ├── ObserverProcessorTests.cs └── Spaces │ ├── IntProcessorTests.cs │ └── SpaceProcessorTests.cs ├── Properties └── launchSettings.json ├── Registries ├── CallbackRegistryTests.cs └── ObserverRegistryTests.cs ├── TestData.cs ├── Tuples ├── BoolTupleTests.cs ├── ByteTupleTests.cs ├── CharTupleTests.cs ├── DateTimeOffsetTupleTests.cs ├── DateTimeTupleTests.cs ├── DecimalTupleTests.cs ├── DoubleTupleTests.cs ├── FloatTupleTests.cs ├── GuidTupleTests.cs ├── HugeTupleTests.cs ├── IntTupleTests.cs ├── LongTupleTests.cs ├── SByteTupleTests.cs ├── ShortTupleTests.cs ├── SpaceTupleTests.cs ├── TimeSpanTupleTests.cs ├── UHugeTupleTests.cs ├── UIntTupleTests.cs ├── ULongTupleTests.cs └── UShortTupleTests.cs └── Usings.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OrleanSpaces.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/OrleanSpaces.sln -------------------------------------------------------------------------------- /OrleanSpaces.sln.startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/OrleanSpaces.sln.startup.json -------------------------------------------------------------------------------- /OrleansLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/OrleansLogo.png -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/OrleanSpaces.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/OrleanSpaces.Benchmarks.csproj -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Program.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Properties/launchSettings.json -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/SpaceTemplateBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/SpaceTemplateBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/SpaceTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/SpaceTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/BoolTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/BoolTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/ByteTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/ByteTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/CharTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/CharTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DateTimeOffsetTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DateTimeOffsetTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DateTimeTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DateTimeTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DecimalTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DecimalTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DoubleTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/DoubleTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/FloatTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/FloatTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/GuidTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/GuidTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/HugeTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/HugeTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/IntTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/IntTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/LongTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/LongTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/ShortTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/ShortTupleBenchmarks.cs -------------------------------------------------------------------------------- /bench/OrleanSpaces.Benchmarks/Tuples/Specialized/TimeSpanTupleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/bench/OrleanSpaces.Benchmarks/Tuples/Specialized/TimeSpanTupleBenchmarks.cs -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA001/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA001/1.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA001/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA001/2.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA001/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA001/3.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA001/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA001/4.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA002/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA002/1.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA002/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA002/2.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA003/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA003/1.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA003/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA003/2.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA004/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA004/1.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Images/OSA004/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Images/OSA004/2.png -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/README.md -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Rules/OSA001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Rules/OSA001.md -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Rules/OSA002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Rules/OSA002.md -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Rules/OSA003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Rules/OSA003.md -------------------------------------------------------------------------------- /docs/OrleanSpaces.Analyzers/Rules/OSA004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces.Analyzers/Rules/OSA004.md -------------------------------------------------------------------------------- /docs/OrleanSpaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/OrleanSpaces/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/docs/README.md -------------------------------------------------------------------------------- /samples/01_TupleSyntax/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/01_TupleSyntax/Program.cs -------------------------------------------------------------------------------- /samples/01_TupleSyntax/TupleSyntax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/01_TupleSyntax/TupleSyntax.csproj -------------------------------------------------------------------------------- /samples/02_HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/02_HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /samples/02_HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/02_HelloWorld/Program.cs -------------------------------------------------------------------------------- /samples/02_HelloWorld/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/02_HelloWorld/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/03_Concurrent/Concurrent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/03_Concurrent/Concurrent.csproj -------------------------------------------------------------------------------- /samples/03_Concurrent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/03_Concurrent/Program.cs -------------------------------------------------------------------------------- /samples/03_Concurrent/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/03_Concurrent/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/04_DelayedExec/Evaluator/Evaluator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Evaluator/Evaluator.csproj -------------------------------------------------------------------------------- /samples/04_DelayedExec/Evaluator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Evaluator/Program.cs -------------------------------------------------------------------------------- /samples/04_DelayedExec/Evaluator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Evaluator/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/04_DelayedExec/Evaluator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Evaluator/appsettings.json -------------------------------------------------------------------------------- /samples/04_DelayedExec/Peeker/Peeker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Peeker/Peeker.csproj -------------------------------------------------------------------------------- /samples/04_DelayedExec/Peeker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Peeker/Program.cs -------------------------------------------------------------------------------- /samples/04_DelayedExec/Peeker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Peeker/appsettings.json -------------------------------------------------------------------------------- /samples/04_DelayedExec/Poper/Poper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Poper/Poper.csproj -------------------------------------------------------------------------------- /samples/04_DelayedExec/Poper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Poper/Program.cs -------------------------------------------------------------------------------- /samples/04_DelayedExec/Poper/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/04_DelayedExec/Poper/appsettings.json -------------------------------------------------------------------------------- /samples/05_Observer/Observers/Archiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/Observers/Archiver.cs -------------------------------------------------------------------------------- /samples/05_Observer/Observers/Auditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/Observers/Auditor.cs -------------------------------------------------------------------------------- /samples/05_Observer/Observers/Completer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/Observers/Completer.cs -------------------------------------------------------------------------------- /samples/05_Observer/Observers/Ponger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/Observers/Ponger.cs -------------------------------------------------------------------------------- /samples/05_Observer/PingPong.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/PingPong.csproj -------------------------------------------------------------------------------- /samples/05_Observer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/Program.cs -------------------------------------------------------------------------------- /samples/05_Observer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/05_Observer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/05_Observer/appsettings.json -------------------------------------------------------------------------------- /samples/06_AsyncEnumerator/AsyncEnumerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/06_AsyncEnumerator/AsyncEnumerator.csproj -------------------------------------------------------------------------------- /samples/06_AsyncEnumerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/06_AsyncEnumerator/Program.cs -------------------------------------------------------------------------------- /samples/06_AsyncEnumerator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/06_AsyncEnumerator/appsettings.json -------------------------------------------------------------------------------- /samples/07_ClientServer/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/07_ClientServer/Client/Client.csproj -------------------------------------------------------------------------------- /samples/07_ClientServer/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/07_ClientServer/Client/Program.cs -------------------------------------------------------------------------------- /samples/07_ClientServer/Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/07_ClientServer/Client/appsettings.json -------------------------------------------------------------------------------- /samples/07_ClientServer/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/07_ClientServer/Server/Program.cs -------------------------------------------------------------------------------- /samples/07_ClientServer/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/07_ClientServer/Server/Server.csproj -------------------------------------------------------------------------------- /samples/07_ClientServer/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/07_ClientServer/Server/appsettings.json -------------------------------------------------------------------------------- /samples/08_PasswordSearch/Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/08_PasswordSearch/Master.cs -------------------------------------------------------------------------------- /samples/08_PasswordSearch/PasswordSearch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/08_PasswordSearch/PasswordSearch.csproj -------------------------------------------------------------------------------- /samples/08_PasswordSearch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/08_PasswordSearch/Program.cs -------------------------------------------------------------------------------- /samples/08_PasswordSearch/Slave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/08_PasswordSearch/Slave.cs -------------------------------------------------------------------------------- /samples/08_PasswordSearch/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/08_PasswordSearch/appsettings.json -------------------------------------------------------------------------------- /samples/08_PasswordSearch/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/08_PasswordSearch/data.json -------------------------------------------------------------------------------- /samples/09_CacheReplication/Silo1/Program.cs: -------------------------------------------------------------------------------- 1 | await SiloShared.Program.RunLoop(1); -------------------------------------------------------------------------------- /samples/09_CacheReplication/Silo1/Silo1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/09_CacheReplication/Silo1/Silo1.csproj -------------------------------------------------------------------------------- /samples/09_CacheReplication/Silo1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/09_CacheReplication/Silo1/appsettings.json -------------------------------------------------------------------------------- /samples/09_CacheReplication/Silo2/Program.cs: -------------------------------------------------------------------------------- 1 | await SiloShared.Program.RunLoop(2); -------------------------------------------------------------------------------- /samples/09_CacheReplication/Silo2/Silo2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/09_CacheReplication/Silo2/Silo2.csproj -------------------------------------------------------------------------------- /samples/09_CacheReplication/Silo2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/09_CacheReplication/Silo2/appsettings.json -------------------------------------------------------------------------------- /samples/09_CacheReplication/SiloShared/LocalCacheGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/09_CacheReplication/SiloShared/LocalCacheGrain.cs -------------------------------------------------------------------------------- /samples/09_CacheReplication/SiloShared/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/09_CacheReplication/SiloShared/Program.cs -------------------------------------------------------------------------------- /samples/09_CacheReplication/SiloShared/SiloShared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/09_CacheReplication/SiloShared/SiloShared.csproj -------------------------------------------------------------------------------- /samples/Sandbox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/Sandbox/Program.cs -------------------------------------------------------------------------------- /samples/Sandbox/Sandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/Sandbox/Sandbox.csproj -------------------------------------------------------------------------------- /samples/SpaceHost/Configs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/SpaceHost/Configs.cs -------------------------------------------------------------------------------- /samples/SpaceHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/SpaceHost/Program.cs -------------------------------------------------------------------------------- /samples/SpaceHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/SpaceHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/SpaceHost/SpaceHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/samples/SpaceHost/SpaceHost.csproj -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/Constants.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/Extensions.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OSA001/InternalUseOnlyAttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OSA001/InternalUseOnlyAttributeAnalyzer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OSA002/TemplateCacheOverInitAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OSA002/TemplateCacheOverInitAnalyzer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OSA002/TemplateCacheOverInitFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OSA002/TemplateCacheOverInitFixer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OSA003/NotSupportedFieldTypeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OSA003/NotSupportedFieldTypeAnalyzer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OSA003/NotSupportedFieldTypeFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OSA003/NotSupportedFieldTypeFixer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OSA004/PreferSpecializedOverGenericAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OSA004/PreferSpecializedOverGenericAnalyzer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OSA004/PreferSpecializedOverGenericFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OSA004/PreferSpecializedOverGenericFixer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/OrleanSpaces.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/OrleanSpaces.Analyzers.csproj -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/Usings.cs -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/tools/install.ps1 -------------------------------------------------------------------------------- /src/OrleanSpaces.Analyzers/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces.Analyzers/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/BaseAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/BaseAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/BoolAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/BoolAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/ByteAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/ByteAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/CharAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/CharAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/DateTimeAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/DateTimeAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/DateTimeOffsetAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/DateTimeOffsetAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/DecimalAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/DecimalAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/DoubleAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/DoubleAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/FloatAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/FloatAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/GuidAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/GuidAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/HugeAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/HugeAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/IntAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/IntAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/LongAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/LongAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/SByteAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/SByteAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/ShortAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/ShortAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/SpaceAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/SpaceAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/TimeSpanAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/TimeSpanAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/UHugeAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/UHugeAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/UIntAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/UIntAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/ULongAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/ULongAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Agents/UShortAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Agents/UShortAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Channels/CallbackChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Channels/CallbackChannel.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Channels/ContinuationChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Channels/ContinuationChannel.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Channels/EvaluationChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Channels/EvaluationChannel.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Channels/ObserverChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Channels/ObserverChannel.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Constants.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Extensions.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/BaseDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/BaseDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/BoolDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/BoolDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/ByteDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/ByteDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/CharDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/CharDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/DateTimeDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/DateTimeDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/DateTimeOffsetDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/DateTimeOffsetDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/DecimalDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/DecimalDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/DoubleDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/DoubleDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/FloatDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/FloatDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/GuidDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/GuidDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/HugeDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/HugeDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/IntDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/IntDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/LongDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/LongDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/SByteDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/SByteDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/ShortDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/ShortDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/SpaceDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/SpaceDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/TimeSpanDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/TimeSpanDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/UHugeDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/UHugeDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/UIntDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/UIntDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/ULongDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/ULongDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Directors/UShortDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Directors/UShortDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/BaseStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/BaseStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/BoolStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/BoolStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/ByteStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/ByteStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/CharStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/CharStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/DateTimeOffsetStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/DateTimeOffsetStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/DateTimeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/DateTimeStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/DecimalStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/DecimalStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/DoubleStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/DoubleStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/FloatStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/FloatStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/GuidStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/GuidStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/HugeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/HugeStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/IntStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/IntStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/LongStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/LongStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/SByteStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/SByteStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/ShortStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/ShortStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/SpaceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/SpaceStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/TimeSpanStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/TimeSpanStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/UHugeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/UHugeStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/UIntStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/UIntStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/ULongStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/ULongStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Grains/Stores/UShortStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Grains/Stores/UShortStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Helpers/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Helpers/Helpers.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Helpers/TemplateHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Helpers/TemplateHelpers.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Helpers/ThrowHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Helpers/ThrowHelpers.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Helpers/TupleHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Helpers/TupleHelpers.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/ISpaceAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/ISpaceAgent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/ISpaceObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/ISpaceObserver.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/ISpaceRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/ISpaceRouter.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/IStoreDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/IStoreDirector.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/ITupleStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/ITupleStore.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/InternalUseOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/InternalUseOnlyAttribute.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/OrleanSpaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/OrleanSpaces.csproj -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/CallbackProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/CallbackProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/ContinuationProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/ContinuationProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/EvaluationProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/EvaluationProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/ObserverProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/ObserverProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/BaseProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/BaseProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/BoolProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/BoolProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/ByteProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/ByteProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/CharProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/CharProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/DateTimeOffsetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/DateTimeOffsetProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/DateTimeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/DateTimeProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/DecimalProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/DecimalProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/DoubleProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/DoubleProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/FloatProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/FloatProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/GuidProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/GuidProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/HugeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/HugeProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/IntProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/IntProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/LongProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/LongProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/SByteProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/SByteProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/ShortProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/ShortProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/SpaceProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/SpaceProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/TimeSpanProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/TimeSpanProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/UHugeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/UHugeProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/UIntProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/UIntProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/ULongProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/ULongProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Processors/Spaces/UShortProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Processors/Spaces/UShortProcessor.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Registries/CallbackRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Registries/CallbackRegistry.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Registries/ObserverRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Registries/ObserverRegistry.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/SpaceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/SpaceOptions.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/StoreContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/StoreContent.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/StoreTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/StoreTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/TupleAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/TupleAction.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/IBufferConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/IBufferConsumer.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/ISpaceTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/ISpaceTemplate.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/ISpaceTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/ISpaceTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/NumericMarshaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/NumericMarshaller.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/SpaceTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/SpaceTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/BoolTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/BoolTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/ByteTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/ByteTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/CharTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/CharTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/DateTimeOffsetTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/DateTimeOffsetTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/DateTimeTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/DateTimeTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/DecimalTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/DecimalTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/DoubleTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/DoubleTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/FloatTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/FloatTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/GuidTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/GuidTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/HugeTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/HugeTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/IntTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/IntTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/LongTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/LongTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/SByteTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/SByteTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/ShortTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/ShortTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/TimeSpanTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/TimeSpanTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/UHugeTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/UHugeTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/UIntTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/UIntTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/ULongTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/ULongTuple.cs -------------------------------------------------------------------------------- /src/OrleanSpaces/Tuples/Specialized/UShortTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/src/OrleanSpaces/Tuples/Specialized/UShortTuple.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/AnalyzerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/AnalyzerFixture.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/ConstantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/ConstantsTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/FixerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/FixerFixture.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/Namespace.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OSA001/InternalUseOnlyAttributeAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OSA001/InternalUseOnlyAttributeAnalyzerTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OSA002/TemplateCacheOverInitAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OSA002/TemplateCacheOverInitAnalyzerTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OSA002/TemplateCacheOverInitFixerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OSA002/TemplateCacheOverInitFixerTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OSA003/NotSupportedTypeAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OSA003/NotSupportedTypeAnalyzerTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OSA003/NotSupportedTypeFixerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OSA003/NotSupportedTypeFixerTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OSA004/PreferSpecializedOverGenericAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OSA004/PreferSpecializedOverGenericAnalyzerTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OSA004/PreferSpecializedOverGenericFixerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OSA004/PreferSpecializedOverGenericFixerTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/OrleanSpaces.Analyzers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/OrleanSpaces.Analyzers.Tests.csproj -------------------------------------------------------------------------------- /tests/OrleanSpaces.Analyzers.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Analyzers.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Agents/IntAgentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Agents/IntAgentTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Agents/SpaceAgentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Agents/SpaceAgentTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Channels/CallbackChannelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Channels/CallbackChannelTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Channels/ContinuationChannelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Channels/ContinuationChannelTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Channels/EvaluationChannelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Channels/EvaluationChannelTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Channels/ObserverChannelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Channels/ObserverChannelTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/ClusterFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/ClusterFixture.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/ConstantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/ConstantTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Directors/IntDirectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Directors/IntDirectorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Directors/SpaceDirectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Directors/SpaceDirectorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/ExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/ExtensionTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/HelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/HelperTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/ObserverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/ObserverTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/OrleanSpaces.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/OrleanSpaces.Tests.csproj -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Processors/CallbackProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Processors/CallbackProcessorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Processors/ContinuationProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Processors/ContinuationProcessorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Processors/EvaluationProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Processors/EvaluationProcessorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Processors/ObserverProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Processors/ObserverProcessorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Processors/Spaces/IntProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Processors/Spaces/IntProcessorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Processors/Spaces/SpaceProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Processors/Spaces/SpaceProcessorTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Registries/CallbackRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Registries/CallbackRegistryTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Registries/ObserverRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Registries/ObserverRegistryTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/TestData.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/BoolTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/BoolTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/ByteTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/ByteTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/CharTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/CharTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/DateTimeOffsetTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/DateTimeOffsetTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/DateTimeTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/DateTimeTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/DecimalTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/DecimalTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/DoubleTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/DoubleTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/FloatTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/FloatTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/GuidTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/GuidTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/HugeTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/HugeTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/IntTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/IntTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/LongTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/LongTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/SByteTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/SByteTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/ShortTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/ShortTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/SpaceTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/SpaceTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/TimeSpanTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/TimeSpanTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/UHugeTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/UHugeTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/UIntTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/UIntTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/ULongTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/ULongTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Tuples/UShortTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledjon-behluli/OrleanSpaces/HEAD/tests/OrleanSpaces.Tests/Tuples/UShortTupleTests.cs -------------------------------------------------------------------------------- /tests/OrleanSpaces.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; --------------------------------------------------------------------------------