Skip to content

Commit

Permalink
Create NanaGet.RefreshPackageVersion project.
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Jun 22, 2024
1 parent 43af7da commit 001fc30
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions NanaGet.MaintainerTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevelopmentChannelSwitcher"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NanaGet.ProjectAssetsGenerator", "NanaGet.ProjectAssetsGenerator\NanaGet.ProjectAssetsGenerator.csproj", "{B22CBFB2-2D15-4435-889B-F222E23C685B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NanaGet.RefreshPackageVersion", "NanaGet.RefreshPackageVersion\NanaGet.RefreshPackageVersion.csproj", "{0028ABC9-1078-4497-84E4-5B7178BF5644}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -21,6 +23,10 @@ Global
{B22CBFB2-2D15-4435-889B-F222E23C685B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B22CBFB2-2D15-4435-889B-F222E23C685B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B22CBFB2-2D15-4435-889B-F222E23C685B}.Release|Any CPU.Build.0 = Release|Any CPU
{0028ABC9-1078-4497-84E4-5B7178BF5644}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0028ABC9-1078-4497-84E4-5B7178BF5644}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0028ABC9-1078-4497-84E4-5B7178BF5644}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0028ABC9-1078-4497-84E4-5B7178BF5644}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
14 changes: 14 additions & 0 deletions NanaGet.RefreshPackageVersion/NanaGet.RefreshPackageVersion.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Mile.Project.Helpers" Version="1.0.451" />
</ItemGroup>

</Project>
12 changes: 12 additions & 0 deletions NanaGet.RefreshPackageVersion/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace NanaGet.RefreshPackageVersion
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine(
"NanaGet.RefreshPackageVersion task has been completed.");
Console.ReadKey();
}
}
}

0 comments on commit 001fc30

Please sign in to comment.