开发常用脚本 -- 自动下载nuget及引用的包,并编译项目的脚本
创建编写 build.sh 脚本文件,内容如下:
#!/usr/bin/env bash # # Generated by: https://github.com/swagger-api/swagger-codegen.git # frameworkVersion=net40 # sdk must match installed framworks under PREFIX/lib/mono/[value] sdk=4 # langversion refers to C# language features. see man mcs for details. langversion=${sdk} nuget_cmd=nuget # Match against our known SDK possibilities case "${sdk}" in 4) langversion=4 ;; 4.5*) langversion=5 ;; 4.6*) langversion=6 ;; 4.7*) langversion=7 # ignoring 7.1 for now. ;; *) langversion=6 ;; esac echo "[INFO] Target framework: ${frameworkVersion}" if ! type nuget &>/dev/null; then echo "[INFO] Download nuget and packages" wget -nc https://dist.nuget.org/win-x86-commandline/latest/nuget.exe; nuget_cmd="mono nuget.exe" fi mozroots --import --sync ${nuget_cmd} install src/Swagger/packages.config -o packages; echo "[INFO] Copy DLLs to the 'bin' folder" mkdir -p bin; cp packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.dll bin/Newtonsoft.Json.dll; cp packages/RestSharp.105.1.0/lib/net4/RestSharp.dll bin/RestSharp.dll; cp packages/JsonSubTypes.1.2.0/lib/net40/JsonSubTypes.dll bin/JsonSubTypes.dll echo "[INFO] Run 'mcs' to build bin/SwaggerTest.dll" mcs -langversion:${langversion} -sdk:${sdk} -r:bin/Newtonsoft.Json.dll,bin/JsonSubTypes.dll,\ bin/RestSharp.dll,\ System.ComponentModel.DataAnnotations.dll,\ System.Runtime.Serialization.dll \ -target:library \ -out:bin/SwaggerTest.dll \ -recurse:'src/Swagger/*.cs' \ -doc:bin/SwaggerTest.xml \ -platform:anycpu if [ $? -ne 0 ] then echo "[ERROR] Compilation failed with exit code $?" exit 1 else echo "[INFO] bin/SwaggerTest.dll was created successfully" fi
在提供一个bat的脚本,
创建编写 build.bat 脚本文件,内容如下:
:: Generated by: https://github.com/swagger-api/swagger-codegen.git :: @echo off SET CSCPATH=%SYSTEMROOT%\Microsoft.NET\Framework\v3.5 if not exist ".\nuget.exe" powershell -Command "(new-object System.Net.WebClient).DownloadFile('https://dist.nuget.org/win-x86-commandline/latest/nuget.exe', '.\nuget.exe')" .\nuget.exe install src\Swagger\packages.config -o packages if not exist ".\bin" mkdir bin copy packages\Newtonsoft.Json.10.0.3\lib\net40\Newtonsoft.Json.dll bin\Newtonsoft.Json.dll copy packages\JsonSubTypes.1.2.0\lib\net40\JsonSubTypes.dll bin\JsonSubTypes.dll copy packages\RestSharp.105.1.0\lib\net4\RestSharp.dll bin\RestSharp.dll %CSCPATH%\csc /reference:bin\Newtonsoft.Json.dll;bin\JsonSubTypes.dll;bin\RestSharp.dll;System.ComponentModel.DataAnnotations.dll /target:library /out:bin\SwaggerTest.dll /recurse:src\Swagger\*.cs /doc:bin\SwaggerTest.xml
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/14918254.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!