1 Star 0 Fork 105

wwwlinkdp / sharding-core

forked from 薛家明 / sharding-core 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nuget-publish.bat 760 Bytes
一键复制 编辑 原始数据 按行查看 历史
薛家明 提交于 2023-03-24 15:40 . 7.x.1.6
:start
::定义版本
set EFCORE7=7.7.1.6
set EFCORE6=7.6.1.6
set EFCORE5=7.5.1.6
set EFCORE3=7.3.1.6
set EFCORE2=7.2.1.6
::删除所有bin与obj下的文件
@echo off
echo input nuget api key
set /p apiKey=
IF "apiKey"=="" (
ECHO No NuGet API key provided &goto :start
)
set nowpath=%cd%
cd \
cd %nowpath%
::delete specify file(*.pdb,*.vshost.*)
for /r %nowpath% %%i in (*.pdb,*.vshost.*) do (del %%i && echo delete %%i)
::delete specify folder(obj,bin)
for /r %nowpath% %%i in (obj,bin) do (IF EXIST %%i (RD /s /q %%i && echo delete %%i))
echo clear complete
::构建
dotnet build -c Release
::publishing....
for /r %nowpath% %%i in (*.nupkg) do (dotnet nuget push %%i -k %apiKey% --source https://api.nuget.org/v3/index.json)
echo complete
pause
C#
1
https://gitee.com/wwwlinkdp/sharding-core.git
git@gitee.com:wwwlinkdp/sharding-core.git
wwwlinkdp
sharding-core
sharding-core
main

搜索帮助