forked from jwt-dotnet/jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJWT.sln
117 lines (117 loc) · 7.88 KB
/
JWT.sln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{513CE2B5-E0D6-43BC-998A-A02CB2875479}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitignore = .gitignore
Directory.Build.props = Directory.Build.props
JWT.sln.DotSettings = JWT.sln.DotSettings
JwtStrongNameKey.snk = JwtStrongNameKey.snk
LICENSE.md = LICENSE.md
NuGet.config = NuGet.config
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".pipelines", ".pipelines", "{BC7D1169-0261-419F-84F2-6312910AD508}"
ProjectSection(SolutionItems) = preProject
.pipelines\build.yml = .pipelines\build.yml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT", "src\JWT\JWT.csproj", "{2F79EB8D-5B33-4EA6-AC1A-89B107F043D2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.Common", "tests\JWT.Tests.Common\JWT.Tests.Common.csproj", "{5D0282D5-9CC4-4D42-A3F0-E18270F92184}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.NetCore3", "tests\JWT.Tests.NetCore3\JWT.Tests.NetCore3.csproj", "{559F1CBB-DB9C-4149-BEAC-417DA1BBB162}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.Net35", "tests\JWT.Tests.Net35\JWT.Tests.Net35.csproj", "{30D3D291-2C79-4CDD-94D3-C834A4995149}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.Net40", "tests\JWT.Tests.Net40\JWT.Tests.Net40.csproj", "{53CA6EF4-9C1E-4BDB-9829-CCD5C581DC00}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.Net46", "tests\JWT.Tests.Net46\JWT.Tests.Net46.csproj", "{78D9FDC0-9CFB-447B-B373-D43EB8122D10}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Tests.Net60", "tests\JWT.Tests.Net60\JWT.Tests.Net60.csproj", "{241D7C36-5693-4115-800E-8F080DD1FB5B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extensions", "Extensions", "{E7F3756F-ABDA-436D-8C42-FADAF79012ED}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Extensions.AspNetCore", "src\JWT.Extensions.AspNetCore\JWT.Extensions.AspNetCore.csproj", "{3AC25D69-9863-45ED-A767-2809C46CB5A1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Extensions.AspNetCore.Tests", "tests\JWT.Extensions.AspNetCore.Tests\JWT.Extensions.AspNetCore.Tests.csproj", "{319388E9-1529-46B2-A230-2B978BAC4649}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Extensions.DependencyInjection", "src\JWT.Extensions.DependencyInjection\JWT.Extensions.DependencyInjection.csproj", "{5805A1D3-60B7-4F73-BA9F-F49B0BBFBB94}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JWT.Extensions.DependencyInjection.Tests", "tests\JWT.Extensions.DependencyInjection.Tests\JWT.Extensions.DependencyInjection.Tests.csproj", "{73167BAB-1F21-4DE9-83E0-5E0686AB7245}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{44284230-53D0-4589-AFE8-52F003F6CB05}"
ProjectSection(SolutionItems) = preProject
tests\Directory.Build.props = tests\Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2F79EB8D-5B33-4EA6-AC1A-89B107F043D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2F79EB8D-5B33-4EA6-AC1A-89B107F043D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2F79EB8D-5B33-4EA6-AC1A-89B107F043D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2F79EB8D-5B33-4EA6-AC1A-89B107F043D2}.Release|Any CPU.Build.0 = Release|Any CPU
{5D0282D5-9CC4-4D42-A3F0-E18270F92184}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D0282D5-9CC4-4D42-A3F0-E18270F92184}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D0282D5-9CC4-4D42-A3F0-E18270F92184}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D0282D5-9CC4-4D42-A3F0-E18270F92184}.Release|Any CPU.Build.0 = Release|Any CPU
{559F1CBB-DB9C-4149-BEAC-417DA1BBB162}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{559F1CBB-DB9C-4149-BEAC-417DA1BBB162}.Debug|Any CPU.Build.0 = Debug|Any CPU
{559F1CBB-DB9C-4149-BEAC-417DA1BBB162}.Release|Any CPU.ActiveCfg = Release|Any CPU
{559F1CBB-DB9C-4149-BEAC-417DA1BBB162}.Release|Any CPU.Build.0 = Release|Any CPU
{30D3D291-2C79-4CDD-94D3-C834A4995149}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{30D3D291-2C79-4CDD-94D3-C834A4995149}.Debug|Any CPU.Build.0 = Debug|Any CPU
{30D3D291-2C79-4CDD-94D3-C834A4995149}.Release|Any CPU.ActiveCfg = Release|Any CPU
{30D3D291-2C79-4CDD-94D3-C834A4995149}.Release|Any CPU.Build.0 = Release|Any CPU
{53CA6EF4-9C1E-4BDB-9829-CCD5C581DC00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{53CA6EF4-9C1E-4BDB-9829-CCD5C581DC00}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53CA6EF4-9C1E-4BDB-9829-CCD5C581DC00}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53CA6EF4-9C1E-4BDB-9829-CCD5C581DC00}.Release|Any CPU.Build.0 = Release|Any CPU
{78D9FDC0-9CFB-447B-B373-D43EB8122D10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{78D9FDC0-9CFB-447B-B373-D43EB8122D10}.Debug|Any CPU.Build.0 = Debug|Any CPU
{78D9FDC0-9CFB-447B-B373-D43EB8122D10}.Release|Any CPU.ActiveCfg = Release|Any CPU
{78D9FDC0-9CFB-447B-B373-D43EB8122D10}.Release|Any CPU.Build.0 = Release|Any CPU
{241D7C36-5693-4115-800E-8F080DD1FB5B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{241D7C36-5693-4115-800E-8F080DD1FB5B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{241D7C36-5693-4115-800E-8F080DD1FB5B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{241D7C36-5693-4115-800E-8F080DD1FB5B}.Release|Any CPU.Build.0 = Release|Any CPU
{3AC25D69-9863-45ED-A767-2809C46CB5A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3AC25D69-9863-45ED-A767-2809C46CB5A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3AC25D69-9863-45ED-A767-2809C46CB5A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3AC25D69-9863-45ED-A767-2809C46CB5A1}.Release|Any CPU.Build.0 = Release|Any CPU
{319388E9-1529-46B2-A230-2B978BAC4649}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{319388E9-1529-46B2-A230-2B978BAC4649}.Debug|Any CPU.Build.0 = Debug|Any CPU
{319388E9-1529-46B2-A230-2B978BAC4649}.Release|Any CPU.ActiveCfg = Release|Any CPU
{319388E9-1529-46B2-A230-2B978BAC4649}.Release|Any CPU.Build.0 = Release|Any CPU
{5805A1D3-60B7-4F73-BA9F-F49B0BBFBB94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5805A1D3-60B7-4F73-BA9F-F49B0BBFBB94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5805A1D3-60B7-4F73-BA9F-F49B0BBFBB94}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5805A1D3-60B7-4F73-BA9F-F49B0BBFBB94}.Release|Any CPU.Build.0 = Release|Any CPU
{73167BAB-1F21-4DE9-83E0-5E0686AB7245}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{73167BAB-1F21-4DE9-83E0-5E0686AB7245}.Debug|Any CPU.Build.0 = Debug|Any CPU
{73167BAB-1F21-4DE9-83E0-5E0686AB7245}.Release|Any CPU.ActiveCfg = Release|Any CPU
{73167BAB-1F21-4DE9-83E0-5E0686AB7245}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{BC7D1169-0261-419F-84F2-6312910AD508} = {513CE2B5-E0D6-43BC-998A-A02CB2875479}
{3AC25D69-9863-45ED-A767-2809C46CB5A1} = {E7F3756F-ABDA-436D-8C42-FADAF79012ED}
{319388E9-1529-46B2-A230-2B978BAC4649} = {E7F3756F-ABDA-436D-8C42-FADAF79012ED}
{5805A1D3-60B7-4F73-BA9F-F49B0BBFBB94} = {E7F3756F-ABDA-436D-8C42-FADAF79012ED}
{73167BAB-1F21-4DE9-83E0-5E0686AB7245} = {E7F3756F-ABDA-436D-8C42-FADAF79012ED}
{44284230-53D0-4589-AFE8-52F003F6CB05} = {513CE2B5-E0D6-43BC-998A-A02CB2875479}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E1410453-72A1-44D5-AE80-32835754BEDA}
EndGlobalSection
EndGlobal