Skip to content

Commit

Permalink
Create NanaZip.RefreshPackageVersion project.
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Aug 13, 2024
1 parent 72d06ba commit dcbbec1
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
8 changes: 7 additions & 1 deletion NanaZip.MaintainerTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.35013.160
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NanaZip.ProjectAssetsGenerator", "NanaZip.ProjectAssetsGenerator\NanaZip.ProjectAssetsGenerator.csproj", "{DB3A6BCA-7528-47D3-A557-95F28567894A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NanaZip.ProjectAssetsGenerator", "NanaZip.ProjectAssetsGenerator\NanaZip.ProjectAssetsGenerator.csproj", "{DB3A6BCA-7528-47D3-A557-95F28567894A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NanaZip.RefreshPackageVersion", "NanaZip.RefreshPackageVersion\NanaZip.RefreshPackageVersion.csproj", "{55B17674-2F49-41D6-903F-454E0BDF8E9E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -15,6 +17,10 @@ Global
{DB3A6BCA-7528-47D3-A557-95F28567894A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DB3A6BCA-7528-47D3-A557-95F28567894A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DB3A6BCA-7528-47D3-A557-95F28567894A}.Release|Any CPU.Build.0 = Release|Any CPU
{55B17674-2F49-41D6-903F-454E0BDF8E9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{55B17674-2F49-41D6-903F-454E0BDF8E9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{55B17674-2F49-41D6-903F-454E0BDF8E9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{55B17674-2F49-41D6-903F-454E0BDF8E9E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
14 changes: 14 additions & 0 deletions NanaZip.RefreshPackageVersion/NanaZip.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 NanaZip.RefreshPackageVersion/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace NanaZip.RefreshPackageVersion
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine(
"NanaZip.RefreshPackageVersion task has been completed.");
Console.ReadKey();
}
}
}

0 comments on commit dcbbec1

Please sign in to comment.