-
-
Notifications
You must be signed in to change notification settings - Fork 604
use global framework #1263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use global framework #1263
Conversation
PR Compliance Guide 🔍Below is a summary of compliance checks for this PR:
Compliance status legend🟢 - Fully Compliant🟡 - Partial Compliant 🔴 - Not Compliant ⚪ - Requires Further Human Verification 🏷️ - Compliance label |
|||||||||||||||||||||||
PR Code Suggestions ✨Explore these optional code suggestions:
|
||||||||||||||||
PR Type
Enhancement
Description
Replace hardcoded target framework with global variable
Add global properties for language version and package settings
Centralize build configuration across plugin projects
Diagram Walkthrough
File Walkthrough
BotSharp.Plugin.CodeDriver.csproj
Use global framework and build variablessrc/Plugins/BotSharp.Plugin.CodeDriver/BotSharp.Plugin.CodeDriver.csproj
TargetFrameworkfrom hardcodednet8.0to$(TargetFramework)variable
LangVersion,VersionPrefix,GeneratePackageOnBuild, andOutputPathproperties using global variablesBotSharp.Plugin.JavaScriptInterpreter.csproj
Use global framework and build variablessrc/Plugins/BotSharp.Plugin.JavaScriptInterpreter/BotSharp.Plugin.JavaScriptInterpreter.csproj
TargetFrameworkfrom hardcodednet8.0to$(TargetFramework)variable
LangVersion,VersionPrefix,GeneratePackageOnBuild, andOutputPathproperties using global variables