-
Notifications
You must be signed in to change notification settings - Fork 0
Installation Guide
Adhika P. edited this page Jan 20, 2025
·
1 revision
- .NET SDK 8.0
Install ConfigFern as a global .NET CLI tool:
dotnet tool install --global ConfigFernUpdate to the latest version:
dotnet tool update --global ConfigFernUninstall if needed:
dotnet tool uninstall --global ConfigFern- Clone the repository
- Build the project:
# Restore dependencies
dotnet restore
# Generate a NuGet package
dotnet pack -c Release
# Create a local tool manifest (if not already exists)
dotnet new tool-manifest
# Install from the generated package
dotnet tool install --local ConfigFern --add-source ./bin/ReleaseAfter installation, run the tool using either:
# Using dotnet tool
dotnet configfern [command]
# Or via the local tool path
dotnet tool run configfern [command]If you encounter issues during installation:
- Verify you have the correct .NET SDK version installed
- Ensure you're in the project root directory
- Check that all dependencies are properly restored
- Try running
dotnet restoreto resolve dependency issues