├── IRule.cs ├── Models ├── Enums.cs ├── FakeData.cs └── RequestModel.cs ├── Program.cs ├── Rule.cs ├── RuleSet.csproj ├── Rules ├── CheckPlatformRule.cs ├── CheckRefreshToken.cs ├── CheckTokenExpireRule.cs └── CheckTokenRule.cs ├── bin └── Debug │ └── net5.0 │ ├── RuleSet.deps.json │ ├── RuleSet.dll │ ├── RuleSet.exe │ ├── RuleSet.pdb │ ├── RuleSet.runtimeconfig.dev.json │ ├── RuleSet.runtimeconfig.json │ └── ref │ └── RuleSet.dll └── obj ├── Debug └── net5.0 │ ├── RuleSet.AssemblyInfo.cs │ ├── RuleSet.AssemblyInfoInputs.cache │ ├── RuleSet.GeneratedMSBuildEditorConfig.editorconfig │ ├── RuleSet.assets.cache │ ├── RuleSet.csproj.AssemblyReference.cache │ ├── RuleSet.csproj.BuildWithSkipAnalyzers │ ├── RuleSet.csproj.CoreCompileInputs.cache │ ├── RuleSet.csproj.FileListAbsolute.txt │ ├── RuleSet.dll │ ├── RuleSet.genruntimeconfig.cache │ ├── RuleSet.pdb │ ├── apphost.exe │ ├── ref │ └── RuleSet.dll │ └── refint │ └── RuleSet.dll ├── RuleSet.csproj.nuget.dgspec.json ├── RuleSet.csproj.nuget.g.props ├── RuleSet.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /IRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/IRule.cs -------------------------------------------------------------------------------- /Models/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Models/Enums.cs -------------------------------------------------------------------------------- /Models/FakeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Models/FakeData.cs -------------------------------------------------------------------------------- /Models/RequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Models/RequestModel.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Program.cs -------------------------------------------------------------------------------- /Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Rule.cs -------------------------------------------------------------------------------- /RuleSet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/RuleSet.csproj -------------------------------------------------------------------------------- /Rules/CheckPlatformRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Rules/CheckPlatformRule.cs -------------------------------------------------------------------------------- /Rules/CheckRefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Rules/CheckRefreshToken.cs -------------------------------------------------------------------------------- /Rules/CheckTokenExpireRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Rules/CheckTokenExpireRule.cs -------------------------------------------------------------------------------- /Rules/CheckTokenRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/Rules/CheckTokenRule.cs -------------------------------------------------------------------------------- /bin/Debug/net5.0/RuleSet.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/bin/Debug/net5.0/RuleSet.deps.json -------------------------------------------------------------------------------- /bin/Debug/net5.0/RuleSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/bin/Debug/net5.0/RuleSet.dll -------------------------------------------------------------------------------- /bin/Debug/net5.0/RuleSet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/bin/Debug/net5.0/RuleSet.exe -------------------------------------------------------------------------------- /bin/Debug/net5.0/RuleSet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/bin/Debug/net5.0/RuleSet.pdb -------------------------------------------------------------------------------- /bin/Debug/net5.0/RuleSet.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/bin/Debug/net5.0/RuleSet.runtimeconfig.dev.json -------------------------------------------------------------------------------- /bin/Debug/net5.0/RuleSet.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/bin/Debug/net5.0/RuleSet.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/net5.0/ref/RuleSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/bin/Debug/net5.0/ref/RuleSet.dll -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/RuleSet.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3ed75c79805c7d3a5789bc6f513964e24a1fd2f5 2 | -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/RuleSet.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/RuleSet.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/RuleSet.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1e94b1f0ab84bf84fcba25ef813712ac2fbf7d4c 2 | -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/RuleSet.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/RuleSet.dll -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | ac90ace1cd7558ebf82693318d82f4b3c79e965a 2 | -------------------------------------------------------------------------------- /obj/Debug/net5.0/RuleSet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/RuleSet.pdb -------------------------------------------------------------------------------- /obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /obj/Debug/net5.0/ref/RuleSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/ref/RuleSet.dll -------------------------------------------------------------------------------- /obj/Debug/net5.0/refint/RuleSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/Debug/net5.0/refint/RuleSet.dll -------------------------------------------------------------------------------- /obj/RuleSet.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/RuleSet.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/RuleSet.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/RuleSet.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/RuleSet.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/RuleSet.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/SequentialRules/HEAD/obj/project.nuget.cache --------------------------------------------------------------------------------