diff --git a/.gitea/workflows/buildproject.yaml b/.gitea/workflows/buildproject.yaml index 07399a5..a7a972e 100644 --- a/.gitea/workflows/buildproject.yaml +++ b/.gitea/workflows/buildproject.yaml @@ -1,5 +1,5 @@ name: Build and Release Project -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +run-name: Building and Releasing Main Branch 🚀 on: [push] jobs: @@ -17,12 +17,20 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: ${{ matrix.dotnet }} - - name: Build/Publish Project + - name: Build / Publish Project run: dotnet publish GiteaTest.sln -p:PublishProfile=${{ matrix.publishprofile }} - - name: Pack Release + - name: Pack Linux Release + if: ${{ matrix.publishprofile == 'PublishLinuxX64' }} run: tar -cvzf ${{ matrix.publishprofile }}.tar.gz -C GiteaTest/publish . - - name: Release ${{ matrix.publishprofile }}.tar.gz + - name: Pack Windows Release + if: ${{ matrix.publishprofile == 'PublishWinX64' }} + run: zip ${{ matrix.publishprofile }}.zip GiteaTest/publish/* + - name: Release Files uses: akkuman/gitea-release-action@v1 with: + name: Yee + body: Test + prerelease: false + md5sum: true files: |- - ${{ matrix.publishprofile }}.tar.gz + ${{ matrix.publishprofile }}.* diff --git a/.vs/GiteaTest/v17/.suo b/.vs/GiteaTest/v17/.suo index e5a7dda..4b1e68e 100644 Binary files a/.vs/GiteaTest/v17/.suo and b/.vs/GiteaTest/v17/.suo differ diff --git a/.vs/GiteaTest/v17/DocumentLayout.json b/.vs/GiteaTest/v17/DocumentLayout.json index 2751743..28bd6f2 100644 --- a/.vs/GiteaTest/v17/DocumentLayout.json +++ b/.vs/GiteaTest/v17/DocumentLayout.json @@ -1,7 +1,16 @@ { "Version": 1, - "WorkspaceRootPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\", - "Documents": [], + "WorkspaceRootPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\", + "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{A963F4C5-129A-4C95-84D6-FE7F05589023}|GiteaTest\\GiteaTest.csproj|d:\\benutzer\\germa\\dokumente\\visual studio 2022\\projects\\giteatest\\test\\giteatest\\properties\\publishprofiles\\publishlinuxx64.pubxml||{FA3CD31E-987B-443A-9B81-186104E8DAC1}", + "RelativeMoniker": "D:0:0:{A963F4C5-129A-4C95-84D6-FE7F05589023}|GiteaTest\\GiteaTest.csproj|solutionrelative:giteatest\\properties\\publishprofiles\\publishlinuxx64.pubxml||{FA3CD31E-987B-443A-9B81-186104E8DAC1}" + }, + { + "AbsoluteMoniker": "D:0:0:{A963F4C5-129A-4C95-84D6-FE7F05589023}|GiteaTest\\GiteaTest.csproj|d:\\benutzer\\germa\\dokumente\\visual studio 2022\\projects\\giteatest\\test\\giteatest\\properties\\publishprofiles\\publishwinx64.pubxml||{FA3CD31E-987B-443A-9B81-186104E8DAC1}", + "RelativeMoniker": "D:0:0:{A963F4C5-129A-4C95-84D6-FE7F05589023}|GiteaTest\\GiteaTest.csproj|solutionrelative:giteatest\\properties\\publishprofiles\\publishwinx64.pubxml||{FA3CD31E-987B-443A-9B81-186104E8DAC1}" + } + ], "DocumentGroupContainers": [ { "Orientation": 0, @@ -9,7 +18,7 @@ "DocumentGroups": [ { "DockedWidth": 200, - "SelectedChildIndex": -1, + "SelectedChildIndex": 6, "Children": [ { "$type": "Bookmark", @@ -30,6 +39,32 @@ { "$type": "Bookmark", "Name": "ST:128:0:{1fc202d4-d401-403c-9834-5b218574bb67}" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "PublishWinX64.pubxml", + "DocumentMoniker": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\Properties\\PublishProfiles\\PublishWinX64.pubxml", + "RelativeDocumentMoniker": "GiteaTest\\Properties\\PublishProfiles\\PublishWinX64.pubxml", + "ToolTip": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\Properties\\PublishProfiles\\PublishWinX64.pubxml", + "RelativeToolTip": "GiteaTest\\Properties\\PublishProfiles\\PublishWinX64.pubxml", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAgAAAAXAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003576|", + "WhenOpened": "2025-01-18T17:02:28.637Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 0, + "Title": "PublishLinuxX64.pubxml", + "DocumentMoniker": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\Properties\\PublishProfiles\\PublishLinuxX64.pubxml", + "RelativeDocumentMoniker": "GiteaTest\\Properties\\PublishProfiles\\PublishLinuxX64.pubxml", + "ToolTip": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\Properties\\PublishProfiles\\PublishLinuxX64.pubxml", + "RelativeToolTip": "GiteaTest\\Properties\\PublishProfiles\\PublishLinuxX64.pubxml", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAgAAAAYAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003576|", + "WhenOpened": "2025-01-18T17:02:20.386Z", + "EditorCaption": "" } ] } diff --git a/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfo.cs b/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfo.cs index 4d3807c..fab46d5 100644 --- a/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfo.cs +++ b/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("GiteaTest")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+bdbc1737b396a3b2f20b98a9a3dc7e9742b85b01")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a95558689be40fb39e08000e88e96c28bad355bc")] [assembly: System.Reflection.AssemblyProductAttribute("GiteaTest")] [assembly: System.Reflection.AssemblyTitleAttribute("GiteaTest")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfoInputs.cache b/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfoInputs.cache index d611312..5c76902 100644 --- a/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfoInputs.cache +++ b/GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfoInputs.cache @@ -1 +1 @@ -855a452387d28473354f9127c6963afcba48a96bc5d58cb6a9fcda952ac51990 +62128658d962225edcf76acbaf5cdb82a898e83fd84e3395de01b86b49a0a6bd diff --git a/GiteaTest/obj/Debug/net8.0/GiteaTest.GeneratedMSBuildEditorConfig.editorconfig b/GiteaTest/obj/Debug/net8.0/GiteaTest.GeneratedMSBuildEditorConfig.editorconfig index f16a136..e08eeac 100644 --- a/GiteaTest/obj/Debug/net8.0/GiteaTest.GeneratedMSBuildEditorConfig.editorconfig +++ b/GiteaTest/obj/Debug/net8.0/GiteaTest.GeneratedMSBuildEditorConfig.editorconfig @@ -8,7 +8,7 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = GiteaTest -build_property.ProjectDir = D:\Benutzer\germa\Dokumente\Visual Studio 2022\Projects\GiteaTest\GiteaTest\ +build_property.ProjectDir = D:\Benutzer\germa\Dokumente\Visual Studio 2022\Projects\GiteaTest\Test\GiteaTest\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.EffectiveAnalysisLevelStyle = 8.0 diff --git a/GiteaTest/obj/Debug/net8.0/GiteaTest.assets.cache b/GiteaTest/obj/Debug/net8.0/GiteaTest.assets.cache index 9ec49a5..b7791ae 100644 Binary files a/GiteaTest/obj/Debug/net8.0/GiteaTest.assets.cache and b/GiteaTest/obj/Debug/net8.0/GiteaTest.assets.cache differ diff --git a/GiteaTest/obj/GiteaTest.csproj.nuget.dgspec.json b/GiteaTest/obj/GiteaTest.csproj.nuget.dgspec.json index 5a6c433..26a2a30 100644 --- a/GiteaTest/obj/GiteaTest.csproj.nuget.dgspec.json +++ b/GiteaTest/obj/GiteaTest.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\GiteaTest.csproj": {} + "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj": {} }, "projects": { - "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\GiteaTest.csproj": { + "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\GiteaTest.csproj", + "projectUniqueName": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj", "projectName": "GiteaTest", - "projectPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\GiteaTest.csproj", + "projectPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj", "packagesPath": "C:\\Users\\germa\\.nuget\\packages\\", - "outputPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\obj\\", + "outputPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Users\\germa\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder", diff --git a/GiteaTest/obj/project.assets.json b/GiteaTest/obj/project.assets.json index 4736409..b47ccd2 100644 --- a/GiteaTest/obj/project.assets.json +++ b/GiteaTest/obj/project.assets.json @@ -16,11 +16,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\GiteaTest.csproj", + "projectUniqueName": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj", "projectName": "GiteaTest", - "projectPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\GiteaTest.csproj", + "projectPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj", "packagesPath": "C:\\Users\\germa\\.nuget\\packages\\", - "outputPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\obj\\", + "outputPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Users\\germa\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder", diff --git a/GiteaTest/obj/project.nuget.cache b/GiteaTest/obj/project.nuget.cache index b5ad573..3b45522 100644 --- a/GiteaTest/obj/project.nuget.cache +++ b/GiteaTest/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "ytfexTyfeMI=", + "dgSpecHash": "Asttb0jpdwQ=", "success": true, - "projectFilePath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\GiteaTest\\GiteaTest.csproj", + "projectFilePath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj", "expectedPackageFiles": [], "logs": [] } \ No newline at end of file