Skip to content

Commit 8243a1f

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

20 files changed

+5403
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
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

Lines changed: 33 additions & 0 deletions
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
56 KB
Binary file not shown.
136 KB
Binary file not shown.
33.1 KB
Binary file not shown.
Lines changed: 10 additions & 0 deletions
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+
}
Lines changed: 23 additions & 0 deletions
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+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10d1774bd2951cc21d66b622b5af6144590c4541318e0d1f0103d428520a3030
56 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3b2e1ad5949e5197fb9b693706abe431ba69c670631883b24976c82941b869cc

0 commit comments

Comments
 (0)