Desktop Client for the CollabSync application
- C# 100%
|
|
||
|---|---|---|
| CollabSyncDesktop | login & signup | |
| .gitattributes | Add .gitattributes, .gitignore, README.md, and LICENSE.txt. | |
| .gitignore | Update .gitignore | |
| CollabSyncDesktop.sln | move to codeberg | |
| LICENSE.txt | move to codeberg | |
| README.md | move to codeberg | |
CollabSyncDesktop
Desktop Client for the CollabSync application
Build & Test
Prerequisites
- .NET 10 SDK installed
Build & Run Tests (targets: test builds)
From the repository root:
- Restore dependencies:
dotnet restore
- Build projects:
dotnet build
Where build artifacts are placed
- Default build output path:
- bin/{Configuration}/net10.0/
- Example:
./src/MyApp/bin/Debug/net10.0/
How to run after build
- For test projects, test assemblies (.dll) live in the test project's
bin/.../net10.0/folder. Usedotnet testto execute them. - To run an application project after build:
- Framework-dependent:
dotnet ./CollabSyncDesktop/bin/Debug/net8.0/CollabSyncDesktop.dll - Or use:
dotnet run --project CollabSyncDesktop/ - Self-contained publish (produces platform-specific executable in
publish/):dotnet publish -c Release -r win-x64 --self-contained true -o ./publish/win-x64 # executable will be in ./publish/win-x64/
- Framework-dependent:
Quick checklist for contributors
- Install .NET 10 SDK and verify
dotnet --version - Run
dotnet restore - Run
dotnet test