# Ducky.Sdk **Repository Path**: ducky7go/Ducky.Sdk ## Basic Information - **Project Name**: Ducky.Sdk - **Description**: No description available - **Primary Language**: C# - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-14 - **Last Updated**: 2025-11-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ducky.Sdk ## Local Packaging Use the helper script to build and pack the SDK into the local feed `./duckylocal` declared in `nuget.config`. Steps: 1. Ensure you have the .NET SDK installed. 2. Run the packaging script: ```bash ./scripts/packToLocal.sh --version 1.0.0 ``` Options: - `--version x.y.z` Override the version in the nuspec. - `--no-build` Skip building projects before packing (expects prior build artifacts). - `--skip-tests` Skip test execution. - `--configuration Debug|Release` Choose build configuration (default Debug). After packing, install the package from the local feed in another project: ```bash dotnet add package Ducky.Sdk --version 1.0.0 --source ./duckylocal ``` Update the version as needed if you packed a different one.