- Created organized .NET 8 solution with server-focused project structure - Added server projects: API, Core, Data, Shared, SignalR, and Admin projects in src/server/ - Added comprehensive server test project structure in tests/server/ - Configured project dependencies and references for server architecture - Installed required NuGet packages for Entity Framework, PostgreSQL, Redis, JWT, SignalR - Created server-focused solution filters for different development contexts - Organized projects into logical solution folders (src/server, tests/server) - Set up proper build dependencies and startup configuration for server components - Created initial folder structure within each server project - Prepared client directory structure for future Unity integration - Verified successful compilation of entire server solution
39 lines
994 B
JSON
39 lines
994 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/launchsettings.json",
|
|
"iisSettings": {
|
|
"windowsAuthentication": false,
|
|
"anonymousAuthentication": true,
|
|
"iisExpress": {
|
|
"applicationUrl": "http://localhost:32317",
|
|
"sslPort": 44374
|
|
}
|
|
},
|
|
"profiles": {
|
|
"http": {
|
|
"commandName": "Project",
|
|
"dotnetRunMessages": true,
|
|
"launchBrowser": true,
|
|
"applicationUrl": "http://localhost:5065",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
"https": {
|
|
"commandName": "Project",
|
|
"dotnetRunMessages": true,
|
|
"launchBrowser": true,
|
|
"applicationUrl": "https://localhost:7122;http://localhost:5065",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
"IIS Express": {
|
|
"commandName": "IISExpress",
|
|
"launchBrowser": true,
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
}
|
|
}
|
|
}
|