File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # NOTE:
4+ # Until we'll set the version as an argument make sure to change the version in the 'nuget push' lines to matach the version in binaries.
5+
6+ WORK_DIR=` pwd`
7+
8+ pushd ./src/LanguageServer/Impl
9+ dotnet pack --configuration Release
10+ dotnet nuget push $WORK_DIR /output/bin/Release/Microsoft.Python.LanguageServer.1.0.2.nupkg --source " github" --skip-duplicate --no-symbols true
11+ popd
12+
13+ pushd ./src/Analysis/Ast/Impl
14+ dotnet pack --configuration Release
15+ dotnet nuget push $WORK_DIR /output/bin/Release/Microsoft.Python.Analysis.1.0.2.nupkg --source " github" --skip-duplicate --no-symbols true
16+ popd
17+
18+ pushd ./src/Analysis/Core/Impl
19+ dotnet pack --configuration Release
20+ dotnet nuget push $WORK_DIR /output/bin/Release/Microsoft.Python.Analysis.Core.1.0.2.nupkg --source " github" --skip-duplicate --no-symbols true
21+ popd
22+
23+ pushd ./src/Parsing/Impl
24+ dotnet pack --configuration Release
25+ dotnet nuget push $WORK_DIR /output/bin/Release/Microsoft.Python.Parsing.1.0.2.nupkg --source " github" --skip-duplicate --no-symbols true
26+ popd
27+
28+ pushd ./src/Core/Impl
29+ dotnet pack --configuration Release
30+ dotnet nuget push $WORK_DIR /output/bin/Release/Microsoft.Python.Core.1.0.2.nupkg --source " github" --skip-duplicate --no-symbols true
31+ popd
32+
You can’t perform that action at this time.
0 commit comments