Skip to content

Commit

Permalink
build: disable uploading the R# part
Browse files Browse the repository at this point in the history
  • Loading branch information
mu88 committed May 11, 2023
1 parent 775da66 commit 7751d63
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,15 @@ publishPlugin {
dependsOn buildPlugin
token = "${PublishToken}"

doLast {
exec {
executable "dotnet"
args "nuget","push","output/${DotnetPluginId}.${version}.nupkg","--api-key","${PublishToken}","--source","https://plugins.jetbrains.com"
workingDir rootDir
}
}
// The following block is responsible for uploading the R# part of the plugin.
// We don't need this yet, because the plugin is meant for Rider only. Therefore it is disabled.
// See here for more information: https://github.com/JetBrains/resharper-rider-plugin/issues/46
//
// doLast {
// exec {
// executable "dotnet"
// args "nuget","push","output/${DotnetPluginId}.${version}.nupkg","--api-key","${PublishToken}","--source","https://plugins.jetbrains.com"
// workingDir rootDir
// }
// }
}

0 comments on commit 7751d63

Please sign in to comment.