You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a multi-configuration project structure with conditional target frameworks:
Main project file that imports a common targets file
Common targets file that conditionally imports version-specific targets based on configuration
Version-specific targets files with different target frameworks (net48 vs net8.0-windows)
Open the project in VS Code with C# Dev Kit or C# extension enabled
Observe the error in Output panel: "The 'ResolvePackageAssets' task was not given a value for the required parameter 'TargetFramework'"
Expected Behavior
The language server should load the project successfully and provide IntelliSense based on the selected build configuration.
Actual Behavior
The language server fails to load the project with the error:
Error while loading c:\Users\...\RevitExtension3.csproj: The "ResolvePackageAssets" task was not given a value for the required parameter "TargetFramework".
Workarounds Attempted
Added Directory.Build.props with default TargetFramework value - only works for .NET Framework but not .NET Core targets
Modified targets files to be more explicit about target framework selection
Command-line builds work correctly (dotnet build -c "Debug 2025") but the language server still fails
Issue Type: Bug
Steps to Reproduce:
Create a multi-configuration project structure with conditional target frameworks:
Open the project in VS Code with C# Dev Kit or C# extension enabled
Observe the error in Output panel: "The 'ResolvePackageAssets' task was not given a value for the required parameter 'TargetFramework'"
Expected Behavior
The language server should load the project successfully and provide IntelliSense based on the selected build configuration.
Actual Behavior
The language server fails to load the project with the error:
Workarounds Attempted
dotnet build -c "Debug 2025"
) but the language server still failsRelevant Files
Extension Bisect Results
Issue is specific to the C# language server/C# Dev Kit when dealing with conditionally defined target frameworks.
Additional Information
Repo with test files
https://github.com/kristoffer-tungland/RevitExtension3
The text was updated successfully, but these errors were encountered: