Skip to content

Commit

Permalink
use "NuGet.CommandLine" version="6.8.0" instead of 6.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chcg committed Dec 17, 2023
1 parent 11ce05f commit 7401937
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions builder/builder/Nuspec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private static void CreateNuspec(
nuspec.CreateDocument().Save(nuspecFile);
Process.Start(
new ProcessStartInfo(
@"..\..\..\packages\NuGet.CommandLine.6.6.1\tools\nuget.exe",
@"..\..\..\packages\NuGet.CommandLine.6.8.0\tools\nuget.exe",
"pack " + nuspecFile)
{
UseShellExecute = false,
Expand All @@ -96,7 +96,7 @@ private static void CreateNuspec(
{
/* var p = Process.Start(
new ProcessStartInfo(
@"..\..\..\packages\NuGet.CommandLine.6.6.1\tools\nuget.exe",
@"..\..\..\packages\NuGet.CommandLine.6.8.0\tools\nuget.exe",
$"push {nupkgFile} -Source https://api.nuget.org/v3/index.json -ApiKey {ApiKey.Value}")
{
UseShellExecute = false,
Expand Down
2 changes: 1 addition & 1 deletion builder/builder/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Framework.G1" version="1.0.13.0" targetFramework="net45" userInstalled="true" />
<package id="NuGet.CommandLine" version="6.6.1" targetFramework="net48" userInstalled="true" developmentDependency="true" />
<package id="NuGet.CommandLine" version="6.8.0" targetFramework="net48" userInstalled="true" developmentDependency="true" />
</packages>
2 changes: 1 addition & 1 deletion builder/builderTest/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Framework.G1" version="1.0.13.0" targetFramework="net451" />
<package id="NuGet.CommandLine" version="6.6.1" targetFramework="net48" developmentDependency="true" />
<package id="NuGet.CommandLine" version="6.8.0" targetFramework="net48" developmentDependency="true" />
</packages>

0 comments on commit 7401937

Please sign in to comment.