forked from LiquidThinking/SwaggerAPIDocumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreatePackages.bat
More file actions
14 lines (11 loc) · 912 Bytes
/
CreatePackages.bat
File metadata and controls
14 lines (11 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
"%systemroot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" "APIDocumentation\SwaggerAPIDocumentation.csproj" /v:normal /t:Rebuild /p:Configuration=Mvc3
"%systemroot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" "APIDocumentation\SwaggerAPIDocumentation.csproj" /v:normal /t:Rebuild /p:Configuration=Mvc4
"%systemroot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" "APIDocumentation\SwaggerAPIDocumentation.csproj" /v:normal /t:Rebuild /p:Configuration=Mvc5
"%systemroot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" "APIDocumentation\SwaggerAPIDocumentation.csproj" /v:normal /t:Rebuild /p:Configuration=Mvc51
if ERRORLEVEL 1 goto eof
nuget pack "NuSpec Files\SwaggerApiDocumentation.Mvc3.nuspec"
nuget pack "NuSpec Files\SwaggerApiDocumentation.Mvc4.nuspec"
nuget pack "NuSpec Files\SwaggerApiDocumentation.Mvc5.nuspec"
nuget pack "NuSpec Files\SwaggerApiDocumentation.Mvc51.nuspec"
:eof