Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit db02786

Browse files
undo gitignore
1 parent 3d5d347 commit db02786

File tree

45 files changed

+10848
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+10848
-3
lines changed

‎.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,3 @@ dist
112112
/server/WebApplication2/.vs/WebApplication2/v16
113113
/server/WebApplication2/WebApplication2/.config
114114
server/Server/.vs/Server/DesignTimeBuild/.dtbcache.v2
115-
116-
bin
117-
obj

‎server/AuthGrpcService/bin/Debug/net5.0/AuthGrpcService.deps.json

Lines changed: 4177 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"runtimeOptions": {
3+
"additionalProbingPaths": [
4+
"C:\\Users\\Foyzul Karim\\.dotnet\\store\\|arch|\\|tfm|",
5+
"C:\\Users\\Foyzul Karim\\.nuget\\packages",
6+
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
7+
]
8+
}
9+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net5.0",
4+
"framework": {
5+
"name": "Microsoft.AspNetCore.App",
6+
"version": "5.0.0"
7+
},
8+
"configProperties": {
9+
"System.GC.Server": true,
10+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
11+
}
12+
}
13+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Debug",
5+
"System": "Information",
6+
"Grpc": "Information",
7+
"Microsoft": "Information"
8+
}
9+
}
10+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"Logging": {
3+
"LogLevel": {
4+
"Default": "Trace",
5+
"Microsoft": "Trace",
6+
"Microsoft.Hosting.Lifetime": "Trace"
7+
}
8+
},
9+
"AllowedHosts": "*",
10+
"Kestrel": {
11+
"EndpointDefaults": {
12+
"Protocols": "Http2"
13+
}
14+
},
15+
"Redis": {
16+
"Host": "localhost",
17+
"Port": "6379"
18+
}
19+
}
Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"C:\\github\\my\\react-redux-jwt-auth\\server\\AuthGrpcService\\AuthGrpcService.csproj": {}
5+
},
6+
"projects": {
7+
"C:\\github\\my\\react-redux-jwt-auth\\server\\AuthGrpcService\\AuthGrpcService.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "C:\\github\\my\\react-redux-jwt-auth\\server\\AuthGrpcService\\AuthGrpcService.csproj",
11+
"projectName": "AuthGrpcService",
12+
"projectPath": "C:\\github\\my\\react-redux-jwt-auth\\server\\AuthGrpcService\\AuthGrpcService.csproj",
13+
"packagesPath": "C:\\Users\\Foyzul Karim\\.nuget\\packages\\",
14+
"outputPath": "C:\\github\\my\\react-redux-jwt-auth\\server\\AuthGrpcService\\obj\\",
15+
"projectStyle": "PackageReference",
16+
"fallbackFolders": [
17+
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
18+
],
19+
"configFilePaths": [
20+
"C:\\Users\\Foyzul Karim\\AppData\\Roaming\\NuGet\\NuGet.Config",
21+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
22+
],
23+
"originalTargetFrameworks": [
24+
"net5.0"
25+
],
26+
"sources": {
27+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
28+
"https://api.nuget.org/v3/index.json": {}
29+
},
30+
"frameworks": {
31+
"net5.0": {
32+
"targetAlias": "net5.0",
33+
"projectReferences": {
34+
"C:\\github\\my\\react-redux-jwt-auth\\server\\RedisLibrary\\AuthLibrary.csproj": {
35+
"projectPath": "C:\\github\\my\\react-redux-jwt-auth\\server\\RedisLibrary\\AuthLibrary.csproj"
36+
}
37+
}
38+
}
39+
},
40+
"warningProperties": {
41+
"warnAsError": [
42+
"NU1605"
43+
]
44+
}
45+
},
46+
"frameworks": {
47+
"net5.0": {
48+
"targetAlias": "net5.0",
49+
"dependencies": {
50+
"Grpc.AspNetCore": {
51+
"target": "Package",
52+
"version": "[2.33.1, )"
53+
},
54+
"Microsoft.AspNetCore.Authentication.JwtBearer": {
55+
"target": "Package",
56+
"version": "[5.0.0, )"
57+
},
58+
"StackExchange.Redis": {
59+
"target": "Package",
60+
"version": "[2.2.3, )"
61+
}
62+
},
63+
"imports": [
64+
"net461",
65+
"net462",
66+
"net47",
67+
"net471",
68+
"net472",
69+
"net48"
70+
],
71+
"assetTargetFallback": true,
72+
"warn": true,
73+
"frameworkReferences": {
74+
"Microsoft.AspNetCore.App": {
75+
"privateAssets": "none"
76+
},
77+
"Microsoft.NETCore.App": {
78+
"privateAssets": "all"
79+
}
80+
},
81+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.100\\RuntimeIdentifierGraph.json"
82+
}
83+
}
84+
},
85+
"C:\\github\\my\\react-redux-jwt-auth\\server\\RedisLibrary\\AuthLibrary.csproj": {
86+
"version": "1.0.0",
87+
"restore": {
88+
"projectUniqueName": "C:\\github\\my\\react-redux-jwt-auth\\server\\RedisLibrary\\AuthLibrary.csproj",
89+
"projectName": "AuthLibrary",
90+
"projectPath": "C:\\github\\my\\react-redux-jwt-auth\\server\\RedisLibrary\\AuthLibrary.csproj",
91+
"packagesPath": "C:\\Users\\Foyzul Karim\\.nuget\\packages\\",
92+
"outputPath": "C:\\github\\my\\react-redux-jwt-auth\\server\\RedisLibrary\\obj\\",
93+
"projectStyle": "PackageReference",
94+
"fallbackFolders": [
95+
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
96+
],
97+
"configFilePaths": [
98+
"C:\\Users\\Foyzul Karim\\AppData\\Roaming\\NuGet\\NuGet.Config",
99+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
100+
],
101+
"originalTargetFrameworks": [
102+
"net5.0"
103+
],
104+
"sources": {
105+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
106+
"https://api.nuget.org/v3/index.json": {}
107+
},
108+
"frameworks": {
109+
"net5.0": {
110+
"targetAlias": "net5.0",
111+
"projectReferences": {}
112+
}
113+
},
114+
"warningProperties": {
115+
"warnAsError": [
116+
"NU1605"
117+
]
118+
}
119+
},
120+
"frameworks": {
121+
"net5.0": {
122+
"targetAlias": "net5.0",
123+
"dependencies": {
124+
"Microsoft.AspNetCore.Authentication.JwtBearer": {
125+
"target": "Package",
126+
"version": "[5.0.0, )"
127+
},
128+
"Microsoft.Extensions.Configuration": {
129+
"target": "Package",
130+
"version": "[5.0.0, )"
131+
},
132+
"Microsoft.IdentityModel.Tokens": {
133+
"target": "Package",
134+
"version": "[6.8.0, )"
135+
},
136+
"Newtonsoft.Json": {
137+
"target": "Package",
138+
"version": "[12.0.3, )"
139+
},
140+
"StackExchange.Redis": {
141+
"target": "Package",
142+
"version": "[2.2.3, )"
143+
}
144+
},
145+
"imports": [
146+
"net461",
147+
"net462",
148+
"net47",
149+
"net471",
150+
"net472",
151+
"net48"
152+
],
153+
"assetTargetFallback": true,
154+
"warn": true,
155+
"frameworkReferences": {
156+
"Microsoft.AspNetCore.App": {
157+
"privateAssets": "none"
158+
},
159+
"Microsoft.NETCore.App": {
160+
"privateAssets": "all"
161+
}
162+
},
163+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.100\\RuntimeIdentifierGraph.json"
164+
}
165+
}
166+
}
167+
}
168+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Foyzul Karim\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.8.0</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" />
14+
</ItemGroup>
15+
<PropertyGroup>
16+
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
17+
</PropertyGroup>
18+
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
19+
<Import Project="$(NuGetPackageRoot)grpc.tools2円.33.1\build\Grpc.Tools.props" Condition="Exists('$(NuGetPackageRoot)grpc.tools2円.33.1\build\Grpc.Tools.props')" />
20+
</ImportGroup>
21+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
22+
<PkgGrpc_Tools Condition=" '$(PkgGrpc_Tools)' == '' ">C:\Users\Foyzul Karim\.nuget\packages\grpc.tools2円.33.1</PkgGrpc_Tools>
23+
</PropertyGroup>
24+
</Project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
5+
</PropertyGroup>
6+
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
7+
<Import Project="$(NuGetPackageRoot)grpc.tools2円.33.1\build\Grpc.Tools.targets" Condition="Exists('$(NuGetPackageRoot)grpc.tools2円.33.1\build\Grpc.Tools.targets')" />
8+
</ImportGroup>
9+
</Project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// <autogenerated />
2+
using System;
3+
using System.Reflection;
4+
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /