From 3078cb5b11747b4de8b06b8e88a0c8c65751584c Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Mon, 2 Dec 2024 10:53:15 +0100 Subject: [PATCH] fix: fix bug with project renaming,ref: NOISSUE --- .../conventional_commits/generate-version.sh | 4 +-- Dotnet_Executable.sln | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 Dotnet_Executable.sln diff --git a/.gitea/conventional_commits/generate-version.sh b/.gitea/conventional_commits/generate-version.sh index b4654db..8138467 100755 --- a/.gitea/conventional_commits/generate-version.sh +++ b/.gitea/conventional_commits/generate-version.sh @@ -86,8 +86,8 @@ start() { echo "New version: $new_version" gitchangelog | grep -v "[rR]elease:" > HISTORY.md - git add DotnetTestLib/VERSION HISTORY.md - echo $new_version > DotnetTestLib/VERSION + git add project_name/VERSION HISTORY.md + echo $new_version > project_name/VERSION git commit -m "release: version $new_version 🚀" echo "creating git tag : $new_version" git tag $new_version diff --git a/Dotnet_Executable.sln b/Dotnet_Executable.sln new file mode 100644 index 0000000..d837853 --- /dev/null +++ b/Dotnet_Executable.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.002.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "project_name", "project_name\project_name.csproj", "{10631217-F1DA-4589-AED7-6E7A777AA031}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {10631217-F1DA-4589-AED7-6E7A777AA031}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {10631217-F1DA-4589-AED7-6E7A777AA031}.Debug|Any CPU.Build.0 = Debug|Any CPU + {10631217-F1DA-4589-AED7-6E7A777AA031}.Release|Any CPU.ActiveCfg = Release|Any CPU + {10631217-F1DA-4589-AED7-6E7A777AA031}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {09B8986D-E092-40A5-863E-8859F48E6EC4} + EndGlobalSection +EndGlobal