Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/scripts/Generate-Bindings-DotNet.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
.PARAMETER GeneratorName
Name of the generator (used for display and executable name)
.PARAMETER TargetFramework
Target framework for the generator (default: net10.0)
Target framework for the generator (default: net8.0)
.PARAMETER RuntimeIdentifier
Runtime identifier for the generator (e.g., win-x64)
.EXAMPLE
Expand All @@ -27,7 +27,7 @@ param (
[string]$BuildConfiguration = "Release", # Build configuration (Release/Debug)
[string]$GeneratorProject = "", # Path to the generator .csproj file
[string]$GeneratorName = "", # Generator name (used for display and executable name)
[string]$TargetFramework = "net10.0", # Target framework for the generator (default: net10.0)
[string]$TargetFramework = "net8.0", # Target framework for the generator (default: net8.0)
[string]$RuntimeIdentifier = "win-x64", # Runtime identifier for the generator (e.g., win-x64)
[switch]$TestMode # Load only functions for testing, do not execute main logic
)
Expand Down