Skip to content

Commit bd66c01

Browse files
author
FinGY
committed
schema with List instead of DB and DBContext
1 parent 4e48e77 commit bd66c01

22 files changed

+94
-69
lines changed

Controllers/UserController.cs

+30-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ namespace BAuth.Controllers
77
[Route("api/[controller]")]
88
public class UserController : Controller
99
{
10-
[HttpGet]
11-
public async Task<ActionResult<List<User>>> GetAll()
12-
{
13-
var users = new List<User>()
10+
public static List<User> users = new List<User>()
1411
{
1512
new User
1613
{
@@ -24,7 +21,36 @@ public async Task<ActionResult<List<User>>> GetAll()
2421
}
2522

2623
};
24+
25+
[HttpGet]
26+
public async Task<ActionResult<List<User>>> GetAll()
27+
{
28+
return Ok(users);
29+
}
30+
31+
[HttpGet ("{name}")]
32+
public async Task<ActionResult<List<User>>>GetUser( string name)
33+
{
34+
var user = users.Find(user=>user.Name == name);
35+
if (user == null)
36+
{
37+
return BadRequest("User not found");
38+
}
39+
return Ok(user);
40+
}
41+
42+
[HttpPost]
43+
public async Task<ActionResult<List<User>>>AddUser(User user)
44+
{
45+
users.Add(user);
2746
return Ok(users);
2847
}
48+
[HttpDelete ("{name}")]
49+
public async Task<ActionResult<List<User>>>DeleteUSer(string name)
50+
{
51+
var user = users.Find(user=>user.Name == name);
52+
users.Remove(user);
53+
return Ok(users);
54+
}
2955
}
3056
}

bin/Debug/net6.0/BAuth.dll

2.5 KB
Binary file not shown.

bin/Debug/net6.0/BAuth.exe

0 Bytes
Binary file not shown.

bin/Debug/net6.0/BAuth.pdb

516 Bytes
Binary file not shown.

obj/BAuth.csproj.nuget.dgspec.json

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,25 @@
11
{
22
"format": 1,
33
"restore": {
4-
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\BAuth.csproj": {}
4+
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\BAuth.csproj": {}
55
},
66
"projects": {
7-
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\BAuth.csproj": {
7+
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\BAuth.csproj": {
88
"version": "1.0.0",
99
"restore": {
10-
"projectUniqueName": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\BAuth.csproj",
10+
"projectUniqueName": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\BAuth.csproj",
1111
"projectName": "BAuth",
12-
"projectPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\BAuth.csproj",
12+
"projectPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\BAuth.csproj",
1313
"packagesPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\.nuget\\packages\\",
14-
"outputPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\obj\\",
14+
"outputPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\obj\\",
1515
"projectStyle": "PackageReference",
16-
"fallbackFolders": [
17-
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18-
],
1916
"configFilePaths": [
20-
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\AppData\\Roaming\\NuGet\\NuGet.Config",
21-
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
22-
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
17+
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\AppData\\Roaming\\NuGet\\NuGet.Config"
2318
],
2419
"originalTargetFrameworks": [
2520
"net6.0"
2621
],
2722
"sources": {
28-
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
2923
"https://api.nuget.org/v3/index.json": {}
3024
},
3125
"frameworks": {
@@ -55,8 +49,7 @@
5549
"net47",
5650
"net471",
5751
"net472",
58-
"net48",
59-
"net481"
52+
"net48"
6053
],
6154
"assetTargetFallback": true,
6255
"warn": true,
@@ -68,7 +61,7 @@
6861
"privateAssets": "all"
6962
}
7063
},
71-
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
64+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"
7265
}
7366
}
7467
}

obj/BAuth.csproj.nuget.g.props

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
66
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
77
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8-
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Dorde Andic.DESKTOP-HBA2V06\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Dorde Andic.DESKTOP-HBA2V06\.nuget\packages\</NuGetPackageFolders>
99
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10-
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
1111
</PropertyGroup>
1212
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
1313
<SourceRoot Include="C:\Users\Dorde Andic.DESKTOP-HBA2V06\.nuget\packages\" />
14-
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
1514
</ItemGroup>
1615
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
1716
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" />

obj/Debug/net6.0/BAuth.AssemblyInfo.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//------------------------------------------------------------------------------
22
// <auto-generated>
33
// This code was generated by a tool.
4-
// Runtime Version:4.0.30319.42000
54
//
65
// Changes to this file may cause incorrect behavior and will be lost if
76
// the code is regenerated.

obj/Debug/net6.0/BAuth.GeneratedMSBuildEditorConfig.editorconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ build_property.PlatformNeutralAssembly =
88
build_property._SupportedPlatformList = Linux,macOS,Windows
99
build_property.RootNamespace = BAuth
1010
build_property.RootNamespace = BAuth
11-
build_property.ProjectDir = C:\Users\Dorde Andic.DESKTOP-HBA2V06\source\repos\BAuth\
11+
build_property.ProjectDir = C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\
1212
build_property.RazorLangVersion = 6.0
1313
build_property.SupportLocalizedComponentNames =
1414
build_property.GenerateRazorMetadataSourceChecksumAttributes =
15-
build_property.MSBuildProjectDirectory = C:\Users\Dorde Andic.DESKTOP-HBA2V06\source\repos\BAuth
15+
build_property.MSBuildProjectDirectory = C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7
1616
build_property._RazorSourceGeneratorDebug =

obj/Debug/net6.0/BAuth.MvcApplicationPartsAssemblyInfo.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//------------------------------------------------------------------------------
22
// <auto-generated>
33
// This code was generated by a tool.
4-
// Runtime Version:4.0.30319.42000
54
//
65
// Changes to this file may cause incorrect behavior and will be lost if
76
// the code is regenerated.

obj/Debug/net6.0/BAuth.assets.cache

-76 Bytes
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
efa3e002bde2582d9351b9bb6e559fe4bd895ee3
1+
29ff1a54e9d85f3592690170b627b5f3b11059d6

obj/Debug/net6.0/BAuth.csproj.FileListAbsolute.txt

+27
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,30 @@ C:\Users\Dorde Andic.DESKTOP-HBA2V06\source\repos\BAuth\obj\Debug\net6.0\refint\
2525
C:\Users\Dorde Andic.DESKTOP-HBA2V06\source\repos\BAuth\obj\Debug\net6.0\BAuth.pdb
2626
C:\Users\Dorde Andic.DESKTOP-HBA2V06\source\repos\BAuth\obj\Debug\net6.0\BAuth.genruntimeconfig.cache
2727
C:\Users\Dorde Andic.DESKTOP-HBA2V06\source\repos\BAuth\obj\Debug\net6.0\ref\BAuth.dll
28+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\appsettings.Development.json
29+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\appsettings.json
30+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\BAuth.exe
31+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\BAuth.deps.json
32+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\BAuth.runtimeconfig.json
33+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\BAuth.dll
34+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\BAuth.pdb
35+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\Microsoft.OpenApi.dll
36+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll
37+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll
38+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll
39+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.csproj.AssemblyReference.cache
40+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.GeneratedMSBuildEditorConfig.editorconfig
41+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.AssemblyInfoInputs.cache
42+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.AssemblyInfo.cs
43+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.csproj.CoreCompileInputs.cache
44+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.MvcApplicationPartsAssemblyInfo.cs
45+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.MvcApplicationPartsAssemblyInfo.cache
46+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\staticwebassets.build.json
47+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\staticwebassets.development.json
48+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\scopedcss\bundle\BAuth.styles.css
49+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.csproj.CopyComplete
50+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.dll
51+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\refint\BAuth.dll
52+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.pdb
53+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\BAuth.genruntimeconfig.cache
54+
C:\Users\Dorde Andic.DESKTOP-HBA2V06\Desktop\c-app-api-bauthc-d089367ddcd7\obj\Debug\net6.0\ref\BAuth.dll

obj/Debug/net6.0/BAuth.dll

2.5 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c7535ed1c2c664420d0e0d83dd44e2c3bc23e638
1+
e035817601f6f77890b09b401197e10b90971c27

obj/Debug/net6.0/BAuth.pdb

516 Bytes
Binary file not shown.

obj/Debug/net6.0/apphost.exe

0 Bytes
Binary file not shown.

obj/Debug/net6.0/ref/BAuth.dll

1 KB
Binary file not shown.

obj/Debug/net6.0/refint/BAuth.dll

1 KB
Binary file not shown.

obj/project.assets.json

+15-39
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,10 @@
1616
"Microsoft.OpenApi/1.2.3": {
1717
"type": "package",
1818
"compile": {
19-
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
20-
"related": ".pdb;.xml"
21-
}
19+
"lib/netstandard2.0/Microsoft.OpenApi.dll": {}
2220
},
2321
"runtime": {
24-
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
25-
"related": ".pdb;.xml"
26-
}
22+
"lib/netstandard2.0/Microsoft.OpenApi.dll": {}
2723
}
2824
},
2925
"Swashbuckle.AspNetCore/6.2.3": {
@@ -44,14 +40,10 @@
4440
"Microsoft.OpenApi": "1.2.3"
4541
},
4642
"compile": {
47-
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
48-
"related": ".pdb;.xml"
49-
}
43+
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
5044
},
5145
"runtime": {
52-
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
53-
"related": ".pdb;.xml"
54-
}
46+
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
5547
},
5648
"frameworkReferences": [
5749
"Microsoft.AspNetCore.App"
@@ -63,27 +55,19 @@
6355
"Swashbuckle.AspNetCore.Swagger": "6.2.3"
6456
},
6557
"compile": {
66-
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
67-
"related": ".pdb;.xml"
68-
}
58+
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
6959
},
7060
"runtime": {
71-
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
72-
"related": ".pdb;.xml"
73-
}
61+
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
7462
}
7563
},
7664
"Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {
7765
"type": "package",
7866
"compile": {
79-
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
80-
"related": ".pdb;.xml"
81-
}
67+
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
8268
},
8369
"runtime": {
84-
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
85-
"related": ".pdb;.xml"
86-
}
70+
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
8771
},
8872
"frameworkReferences": [
8973
"Microsoft.AspNetCore.App"
@@ -224,31 +208,24 @@
224208
]
225209
},
226210
"packageFolders": {
227-
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\.nuget\\packages\\": {},
228-
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
211+
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\.nuget\\packages\\": {}
229212
},
230213
"project": {
231214
"version": "1.0.0",
232215
"restore": {
233-
"projectUniqueName": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\BAuth.csproj",
216+
"projectUniqueName": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\BAuth.csproj",
234217
"projectName": "BAuth",
235-
"projectPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\BAuth.csproj",
218+
"projectPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\BAuth.csproj",
236219
"packagesPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\.nuget\\packages\\",
237-
"outputPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\obj\\",
220+
"outputPath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\obj\\",
238221
"projectStyle": "PackageReference",
239-
"fallbackFolders": [
240-
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
241-
],
242222
"configFilePaths": [
243-
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\AppData\\Roaming\\NuGet\\NuGet.Config",
244-
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
245-
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
223+
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\AppData\\Roaming\\NuGet\\NuGet.Config"
246224
],
247225
"originalTargetFrameworks": [
248226
"net6.0"
249227
],
250228
"sources": {
251-
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
252229
"https://api.nuget.org/v3/index.json": {}
253230
},
254231
"frameworks": {
@@ -278,8 +255,7 @@
278255
"net47",
279256
"net471",
280257
"net472",
281-
"net48",
282-
"net481"
258+
"net48"
283259
],
284260
"assetTargetFallback": true,
285261
"warn": true,
@@ -291,7 +267,7 @@
291267
"privateAssets": "all"
292268
}
293269
},
294-
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
270+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"
295271
}
296272
}
297273
}

obj/project.nuget.cache

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"version": 2,
3-
"dgSpecHash": "XwC2w6k3Ix6awcCN6cZJi0Z5bdkyWnGQ/jdLfAbdN3ZdvmX1ZclOO3/97iL1ho2asr9K1faV00Ial0JIyrs/tA==",
3+
"dgSpecHash": "ZGhsDKorMtfaPh+TuqohyWIkXrSANHJnZX/y0X9trb44Do16JpUHZn4rlRJa0mjGFJeXE3KYkGiF6/DNSDVB4g==",
44
"success": true,
5-
"projectFilePath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\source\\repos\\BAuth\\BAuth.csproj",
5+
"projectFilePath": "C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\Desktop\\c-app-api-bauthc-d089367ddcd7\\BAuth.csproj",
66
"expectedPackageFiles": [
77
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
88
"C:\\Users\\Dorde Andic.DESKTOP-HBA2V06\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",

obj/staticwebassets.pack.sentinel

+6
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@
44
2.0
55
2.0
66
2.0
7+
2.0
8+
2.0
9+
2.0
10+
2.0
11+
2.0
12+
2.0

0 commit comments

Comments
 (0)