fix: fix bug with project renaming,ref: NOISSUE
Some checks failed
Rename the project from template / rename-project (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Has been skipped
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m20s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped

This commit is contained in:
Simon Diesenreiter 2024-12-02 10:53:15 +01:00
parent 41f275025b
commit 3078cb5b11
2 changed files with 27 additions and 2 deletions

View File

@ -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

25
Dotnet_Executable.sln Normal file
View File

@ -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