Skip to content

Commit

Permalink
Upgrade Git batch updating utility
Browse files Browse the repository at this point in the history
  • Loading branch information
acidicMercury8 committed May 13, 2024
1 parent e95570e commit 1ed2cdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
</Project>
4 changes: 1 addition & 3 deletions repository-utilities/src/GitBatchUpdate/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private static void Main(string[] args) {
var process = new Process {
StartInfo = new ProcessStartInfo {
FileName = "git.exe",
Arguments = "fetch -v --progress --prune --tags \"origin\"",
Arguments = "fetch --prune --tags",
WorkingDirectory = directory,
},
};
Expand All @@ -35,7 +35,5 @@ private static void Main(string[] args) {
}

Console.WriteLine("All actions completed!\n");
Console.WriteLine("Press any key to continue...");
Console.ReadKey(true);
}
}

0 comments on commit 1ed2cdb

Please sign in to comment.