Skip to content

Commit 63c1906

Browse files
committed
Remove deprecated files and projects to streamline the repository
- Deleted multiple unused files and projects across various components, including GPS services, chat services, and mobile applications, to enhance clarity and maintainability. - Cleaned up configuration files and test projects that are no longer relevant. Signed-off-by: sharpninja <[email protected]>
1 parent a31a89b commit 63c1906

File tree

298 files changed

+158
-451
lines changed

Some content is hidden

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

298 files changed

+158
-451
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ jobs:
8686
8787
- name: Restore dependencies
8888
timeout-minutes: 10
89-
run: dotnet restore FWH.Mobile\FWH.Mobile.Android\FWH.Mobile.Android.csproj
89+
run: dotnet restore src\FWH.Mobile\FWH.Mobile.Android\FWH.Mobile.Android.csproj
9090

9191
- name: Build Android app
9292
timeout-minutes: 20
93-
run: dotnet build FWH.Mobile\FWH.Mobile.Android\FWH.Mobile.Android.csproj --no-restore --configuration Release
93+
run: dotnet build src\FWH.Mobile\FWH.Mobile.Android\FWH.Mobile.Android.csproj --no-restore --configuration Release
9494

9595
build_api:
9696
name: Build Location API
@@ -110,15 +110,15 @@ jobs:
110110

111111
- name: Restore dependencies
112112
timeout-minutes: 10
113-
run: dotnet restore FWH.Location.Api/FWH.Location.Api.csproj
113+
run: dotnet restore src/FWH.Location.Api/FWH.Location.Api.csproj
114114

115115
- name: Build API
116116
timeout-minutes: 10
117-
run: dotnet build FWH.Location.Api/FWH.Location.Api.csproj --no-restore --configuration Release
117+
run: dotnet build src/FWH.Location.Api/FWH.Location.Api.csproj --no-restore --configuration Release
118118

119119
- name: Publish API
120120
timeout-minutes: 10
121-
run: dotnet publish FWH.Location.Api/FWH.Location.Api.csproj --no-build --configuration Release --output ./publish
121+
run: dotnet publish src/FWH.Location.Api/FWH.Location.Api.csproj --no-build --configuration Release --output ./publish
122122

123123
- name: Upload publish artifact
124124
uses: actions/upload-artifact@v4

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"jebbs.plantuml"
4+
]
5+
}

.vscode/launch.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
8+
"name": ".NET Core Launch (console)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/src/FWH.Mobile/FWH.Mobile.Desktop/bin/Debug/net9.0-windows10.0.19041.0/FWH.Mobile.Desktop.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/src/FWH.Mobile/FWH.Mobile.Desktop",
16+
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17+
"console": "internalConsole",
18+
"stopAtEntry": false
19+
},
20+
{
21+
"name": ".NET Core Attach",
22+
"type": "coreclr",
23+
"request": "attach"
24+
}
25+
]
26+
}

.vscode/tasks.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/FunWasHad.sln",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary;ForceNoAlign"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/FunWasHad.sln",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary;ForceNoAlign"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"--project",
36+
"${workspaceFolder}/FunWasHad.sln"
37+
],
38+
"problemMatcher": "$msCompile"
39+
}
40+
]
41+
}

0 commit comments

Comments
 (0)