Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
bring back classic vsix template as VS marketplace thinks vsix with n…
Browse files Browse the repository at this point in the history
…uget packages is a tool, not a template package
  • Loading branch information
volkanceylan committed Jan 10, 2023
1 parent 0a1d8cd commit 4fbb0a5
Show file tree
Hide file tree
Showing 31 changed files with 2,773 additions and 79 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ bin/
obj/
node_modules/
packages/
ProjectTemplates/
TestResults/
**/wwwroot/esm/
*.bak
Expand Down
10 changes: 8 additions & 2 deletions build-serene.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,15 @@ goto run_build
echo *** RUNNING BUILD ***
dotnet run --project build\build-serene.csproj --no-dependencies
if %ERRORLEVEL% GEQ 1 GOTO :error
goto build_template_package
goto build_nuget_package

:build_template_package
:build_nuget_package
echo *** BUILDING NUGET PACKAGE ***
dotnet pack --no-dependencies vsix\Serene.Templates\Serene.Templates.csproj
if %ERRORLEVEL% GEQ 1 GOTO :error
goto build_vsix_package

:build_vsix_package
echo *** BUILDING VSIX PACKAGE ***
"%VSINSTALLDIR%\MSBuild\Current\Bin\MSBuild.exe" "vsix\Serene.VSIX.sln" -verbosity:m
if %ERRORLEVEL% GEQ 1 GOTO :error
Expand Down
Loading

0 comments on commit 4fbb0a5

Please sign in to comment.