File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ ProjectSection(SolutionItems) = preProject
1010 .gitignore = .gitignore
1111 Jenkinsfile = Jenkinsfile
1212 version .txt = version .txt
13+ NuGet .Config = NuGet .Config
1314EndProject Section
1415EndProject
1516Global
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ pipeline {
1010 }
1111 steps {
1212 sh ' git clean -fdx'
13- sh ' dotnet restore -s https://api.bintray.com/nuget/fint/nuget '
13+ sh ' dotnet restore'
1414 sh ' dotnet build -c Release'
1515 sh ' dotnet pack -c Release'
1616 stash includes : ' **/Release/*.nupkg' , name : ' libs'
Original file line number Diff line number Diff line change 1+ <configuration>
2+ <packageSources>
3+ <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
4+ <add key="Bintray" value="https://api.bintray.com/nuget/fint/nuget" />
5+ </packageSources>
6+ </configuration>
You can’t perform that action at this time.
0 commit comments