File tree Expand file tree Collapse file tree 4 files changed +36
-3
lines changed
Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Original file line number Diff line number Diff line change 1+ @ echo off
2+
3+ :: create nuget_pub
4+ if not exist nuget_pub (
5+ md nuget_pub
6+ )
7+
8+ :: clear nuget_pub
9+ for /R " nuget_pub" %%s in (*) do (
10+ del %%s
11+ )
12+
13+ :: Bing.Offices
14+ dotnet pack src/Bing.Offices.Abstractions -c Release -o nuget_pub
15+ dotnet pack src/Bing.Offices.Core -c Release -o nuget_pub
16+ dotnet pack src/Bing.Offices.Npoi -c Release -o nuget_pub
17+
18+ for /R " nuget_pub" %%s in (*symbols.nupkg) do (
19+ del %%s
20+ )
21+
22+ echo .
23+ echo .
24+
25+ set /p key = input key:
26+ set source = https://api.nuget.org/v3/index.json
27+
28+ for /R " nuget_pub" %%s in (*.nupkg) do (
29+ call dotnet nuget push %%s -k %key% -s %source%
30+ echo .
31+ )
32+
33+ pause
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Bing是一个.net core平台下的应用框架,旨在于提升小型团队的
2828 </ItemGroup >
2929
3030 <ItemGroup >
31- <PackageReference Include =" Bing.Utils" Version =" 1.2.0-preview-20200206 -1" />
31+ <PackageReference Include =" Bing.Utils" Version =" 1.2.0-preview-20200510 -1" />
3232 </ItemGroup >
3333
3434</Project >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Bing是一个.net core平台下的应用框架,旨在于提升小型团队的
77 </PropertyGroup >
88
99 <ItemGroup >
10- <PackageReference Include =" NPOI" Version =" 2.4 .1" />
10+ <PackageReference Include =" NPOI" Version =" 2.5 .1" />
1111 </ItemGroup >
1212
1313 <ItemGroup >
Original file line number Diff line number Diff line change 88 <VersionQuality >20200211-1</VersionQuality >
99 <VersionPrefix >$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix >
1010 <!-- <VersionSuffix></VersionSuffix>-->
11- <VersionSuffix >preview-$(VersionQuality)</VersionSuffix >
11+ <!-- < VersionSuffix>preview-$(VersionQuality)</VersionSuffix> -- >
1212 </PropertyGroup >
1313
1414 <PropertyGroup >
You can’t perform that action at this time.
0 commit comments