Skip to content

Commit 8243a1f

Browse files
committed
fixing solution caches
1 parent 5b6a16a commit 8243a1f

20 files changed

+5403
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dist-ssr
2020
*.suo
2121
*.ntvs*
2222
*.njsproj
23-
*.sln
23+
2424
*.sw?
2525

2626
.vs/

ASPReactTypeScript.sln

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.9.34723.18
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{54A90642-561A-4BB1-A94E-469ADEE60C69}") = "tradingwebapp.client", "tradingwebapp.client\tradingwebapp.client.esproj", "{EC77A1C3-42C7-4A34-9B84-E4C4F19AD9B7}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TradingWebApp.Server", "TradingWebApp.Server\TradingWebApp.Server.csproj", "{E5199861-9AD2-4A7B-A2D0-026011E32C1B}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{EC77A1C3-42C7-4A34-9B84-E4C4F19AD9B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{EC77A1C3-42C7-4A34-9B84-E4C4F19AD9B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{EC77A1C3-42C7-4A34-9B84-E4C4F19AD9B7}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
19+
{EC77A1C3-42C7-4A34-9B84-E4C4F19AD9B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{EC77A1C3-42C7-4A34-9B84-E4C4F19AD9B7}.Release|Any CPU.Build.0 = Release|Any CPU
21+
{EC77A1C3-42C7-4A34-9B84-E4C4F19AD9B7}.Release|Any CPU.Deploy.0 = Release|Any CPU
22+
{E5199861-9AD2-4A7B-A2D0-026011E32C1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{E5199861-9AD2-4A7B-A2D0-026011E32C1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{E5199861-9AD2-4A7B-A2D0-026011E32C1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{E5199861-9AD2-4A7B-A2D0-026011E32C1B}.Release|Any CPU.Build.0 = Release|Any CPU
26+
EndGlobalSection
27+
GlobalSection(SolutionProperties) = preSolution
28+
HideSolutionNode = FALSE
29+
EndGlobalSection
30+
GlobalSection(ExtensibilityGlobals) = postSolution
31+
SolutionGuid = {F63643D5-415A-4B49-B61E-603B985529D6}
32+
EndGlobalSection
33+
EndGlobal
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"SpaProxyServer": {
3+
"ServerUrl": "https://localhost:5173",
4+
"RedirectUrl": "",
5+
"LaunchCommand": "npm run dev",
6+
"WorkingDirectory": "C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\TradingWebApp.Server\\..\\tradingwebapp.client",
7+
"MaxTimeoutInSeconds": "120",
8+
"KeepRunning": "false"
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
// Runtime Version:4.0.30319.42000
5+
//
6+
// Changes to this file may cause incorrect behavior and will be lost if
7+
// the code is regenerated.
8+
// </auto-generated>
9+
//------------------------------------------------------------------------------
10+
11+
using System;
12+
using System.Reflection;
13+
14+
[assembly: System.Reflection.AssemblyCompanyAttribute("TradingWebApp.Server")]
15+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5b6a16aa383110429378d22237a1ec23b695261b")]
18+
[assembly: System.Reflection.AssemblyProductAttribute("TradingWebApp.Server")]
19+
[assembly: System.Reflection.AssemblyTitleAttribute("TradingWebApp.Server")]
20+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21+
22+
// Generated by the MSBuild WriteCodeFragment class.
23+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10d1774bd2951cc21d66b622b5af6144590c4541318e0d1f0103d428520a3030
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3b2e1ad5949e5197fb9b693706abe431ba69c670631883b24976c82941b869cc
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"documents":{"C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\*":"https://raw.githubusercontent.com/vdnnguyen94/ASPReactTypeScript/5b6a16aa383110429378d22237a1ec23b695261b/*"}}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"SpaProxyServer": {
3+
"ServerUrl": "https://localhost:5173",
4+
"RedirectUrl": "",
5+
"LaunchCommand": "npm run dev",
6+
"WorkingDirectory": "C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\TradingWebApp.Server\\..\\tradingwebapp.client",
7+
"MaxTimeoutInSeconds": "120",
8+
"KeepRunning": "false"
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"Version": 1,
3+
"Hash": "8vZ4TRAM5J/BVMkU5xF3CvzTfgSlbQJs/FLdT0Bei+M=",
4+
"Source": "TradingWebApp.Server",
5+
"BasePath": "_content/TradingWebApp.Server",
6+
"Mode": "Default",
7+
"ManifestType": "Build",
8+
"ReferencedProjectsConfiguration": [
9+
{
10+
"Identity": "C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\tradingwebapp.client\\tradingwebapp.client.esproj",
11+
"Version": 2,
12+
"Source": "tradingwebapp.client",
13+
"GetPublishAssetsTargets": "GetCurrentProjectPublishStaticWebAssetItems",
14+
"AdditionalPublishProperties": "Configuration=Debug;Platform=AnyCPU",
15+
"AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained",
16+
"GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems",
17+
"AdditionalBuildProperties": "Configuration=Debug;Platform=AnyCPU",
18+
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained"
19+
}
20+
],
21+
"DiscoveryPatterns": [],
22+
"Assets": []
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\TradingWebApp.Server\\TradingWebApp.Server.csproj": {}
5+
},
6+
"projects": {
7+
"C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\TradingWebApp.Server\\TradingWebApp.Server.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\TradingWebApp.Server\\TradingWebApp.Server.csproj",
11+
"projectName": "TradingWebApp.Server",
12+
"projectPath": "C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\TradingWebApp.Server\\TradingWebApp.Server.csproj",
13+
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
14+
"outputPath": "C:\\Users\\Admin\\source\\repos\\ASPReactTypeScript\\TradingWebApp.Server\\obj\\",
15+
"projectStyle": "PackageReference",
16+
"fallbackFolders": [
17+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18+
],
19+
"configFilePaths": [
20+
"C:\\Users\\Admin\\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"
23+
],
24+
"originalTargetFrameworks": [
25+
"net8.0"
26+
],
27+
"sources": {
28+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
29+
"https://api.nuget.org/v3/index.json": {}
30+
},
31+
"frameworks": {
32+
"net8.0": {
33+
"targetAlias": "net8.0",
34+
"projectReferences": {}
35+
}
36+
},
37+
"warningProperties": {
38+
"warnAsError": [
39+
"NU1605"
40+
]
41+
},
42+
"restoreAuditProperties": {
43+
"enableAudit": "true",
44+
"auditLevel": "low",
45+
"auditMode": "direct"
46+
}
47+
},
48+
"frameworks": {
49+
"net8.0": {
50+
"targetAlias": "net8.0",
51+
"dependencies": {
52+
"Microsoft.AspNet.WebApi.Cors": {
53+
"target": "Package",
54+
"version": "[5.3.0, )"
55+
},
56+
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
57+
"target": "Package",
58+
"version": "[8.0.2, )"
59+
},
60+
"Microsoft.AspNetCore.SpaProxy": {
61+
"target": "Package",
62+
"version": "[8.*-*, )"
63+
},
64+
"Microsoft.EntityFrameworkCore": {
65+
"target": "Package",
66+
"version": "[8.0.2, )"
67+
},
68+
"Microsoft.EntityFrameworkCore.Design": {
69+
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
70+
"suppressParent": "All",
71+
"target": "Package",
72+
"version": "[8.0.2, )"
73+
},
74+
"Microsoft.EntityFrameworkCore.SqlServer": {
75+
"target": "Package",
76+
"version": "[8.0.2, )"
77+
},
78+
"Microsoft.EntityFrameworkCore.Tools": {
79+
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
80+
"suppressParent": "All",
81+
"target": "Package",
82+
"version": "[8.0.2, )"
83+
},
84+
"Swashbuckle.AspNetCore": {
85+
"target": "Package",
86+
"version": "[6.4.0, )"
87+
}
88+
},
89+
"imports": [
90+
"net461",
91+
"net462",
92+
"net47",
93+
"net471",
94+
"net472",
95+
"net48",
96+
"net481"
97+
],
98+
"assetTargetFallback": true,
99+
"warn": true,
100+
"frameworkReferences": {
101+
"Microsoft.AspNetCore.App": {
102+
"privateAssets": "none"
103+
},
104+
"Microsoft.NETCore.App": {
105+
"privateAssets": "all"
106+
}
107+
},
108+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
109+
}
110+
}
111+
}
112+
}
113+
}

0 commit comments

Comments
 (0)