
This pull request introduces a dynamic ProjectName parameter across our build process, enhancing flexibility and reducing hardcoding in our module and theme development workflow. The changes affect the project file, NuSpec file, command scripts.
5 lines
239 B
Bash
5 lines
239 B
Bash
TargetFramework=$1
|
|
ProjectName=$2
|
|
|
|
"..\..\[RootFolder]\oqtane.package\nuget.exe" pack %ProjectName%.nuspec -Properties targetframework=%TargetFramework%;projectname=%ProjectName%
|
|
cp -f "*.nupkg" "..\..\[RootFolder]\Oqtane.Server\Packages\" |