1e8e444376
- Added PlaylistsGroupViewModel to manage playlists and selection. - Introduced ProgramsGroupViewModel for handling program groups and subscriptions. - Created ProgramsListViewModel to manage individual program listings. - Developed SettingsViewModel for user settings including playlist management. - Implemented TVPlayerViewModel as the main view model coordinating screens and data. - Added PlayerView for video playback with LibVLC integration. - Created XAML views for PlaylistsGroup, ProgramsGroup, ProgramsList, and Settings. - Added sample M3U playlist for testing. - Documented WPF build instructions and project structure in WPF-BUILD.md. - Configured global.json for .NET SDK versioning.
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build-avalonia",
|
|
"command": "dotnet",
|
|
"type": "shell",
|
|
"args": [
|
|
"build",
|
|
"${workspaceFolder}/TV Player Avalonia/TV Player Avalonia.csproj"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "run-avalonia",
|
|
"command": "dotnet",
|
|
"type": "shell",
|
|
"args": [
|
|
"run",
|
|
"--project",
|
|
"${workspaceFolder}/TV Player Avalonia/TV Player Avalonia.csproj"
|
|
],
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"pattern": {
|
|
"regexp": "^.*$",
|
|
"file": 1,
|
|
"location": 2,
|
|
"message": 3
|
|
},
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": "^(.*?)$",
|
|
"endsPattern": "(Application started|terminated with exit code)"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "clean-avalonia",
|
|
"command": "dotnet",
|
|
"type": "shell",
|
|
"args": [
|
|
"clean",
|
|
"${workspaceFolder}/TV Player Avalonia/TV Player Avalonia.csproj"
|
|
],
|
|
"presentation": {
|
|
"reveal": "always"
|
|
}
|
|
}
|
|
]
|
|
}
|