feat: add build script for Lampac .NET project

Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
This commit is contained in:
lampac-talks 2026-01-30 17:23:41 +03:00
parent e70b7f822c
commit 3abc707cc8
No known key found for this signature in database
GPG Key ID: D5CCC34206D7C935
4 changed files with 24 additions and 0 deletions

24
build.sh Executable file
View File

@ -0,0 +1,24 @@
#!/usr/bin/env bash
# Build script for Lampac .NET project
set -e
echo "Building Lampac project..."
# Verify .NET version
echo "Using .NET version: $(dotnet --version)"
# Restore dependencies
echo "Restoring NuGet packages..."
dotnet restore Lampac.sln
# Build the solution in Release mode
echo "Building solution..."
dotnet build Lampac.sln --configuration Release --no-restore
# Optional: Publish the main application
echo "Publishing Lampac application..."
dotnet publish Lampac/Lampac.csproj --configuration Release --output ./publish --no-build
echo "Build completed successfully!"
echo "Published application available in ./publish directory"

0
install.sh Normal file → Executable file
View File

0
install_home.sh Normal file → Executable file
View File

0
update.sh Normal file → Executable file
View File