diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 04fe3fccd4..768cdc56ef 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,9 @@ jobs: for filename in *.nupkg; do dotnet nuget push "${filename}" \ --source https://www.myget.org/F/neo/api/v3/index.json \ - --api-key "${{ secrets.MYGET_TOKEN }}"; + --api-key "${{ secrets.MYGET_TOKEN }}" \ + --disable-buffering \ + --no-service-endpoint; done; shell: bash diff --git a/global.json b/global.json new file mode 100644 index 0000000000..943dd9e463 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "7.0.404", + "rollForward": "latestFeature", + "allowPrerelease": false + } +} diff --git a/src/Neo.ConsoleService/Neo.ConsoleService.csproj b/src/Neo.ConsoleService/Neo.ConsoleService.csproj index c5ef250052..173e3be4e0 100644 --- a/src/Neo.ConsoleService/Neo.ConsoleService.csproj +++ b/src/Neo.ConsoleService/Neo.ConsoleService.csproj @@ -1,7 +1,7 @@ - 1.2.0 + Neo.ConsoleService