Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cbfe068195 | |||
| b5439a62d6 | |||
| c4b56c4305 | |||
| 545e5815c5 | |||
| ff36539de3 | |||
| ada7b657d5 | |||
| 989d92698b | |||
| f840f8fa56 | |||
| 47e0f31b34 | |||
| 971d01ff33 | |||
| 4fd4c51f8b | |||
| cf2ae008ef | |||
| 73bf305ba3 | |||
| 1dbd2b44c5 | |||
| 6cf9198957 | |||
| b6b5a410eb | |||
| dd2f95fc32 | |||
| 2337fddd47 | |||
| 313bb4872a | |||
| a91c8fd616 | |||
| b7ff38224c | |||
| 9309287f10 | |||
| 08d3302077 | |||
| 0d043d07a7 | |||
| 76a163f1d3 | |||
| fd0fe4c05a | |||
| edebb250ab | |||
| a95558689b | |||
| 25449f5ce6 | |||
| f57a91a6fd |
42
.gitea/workflows/MainRelease.yaml
Normal file
42
.gitea/workflows/MainRelease.yaml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
name: Build and Release Project
|
||||||
|
run-name: Building and Releasing Main Branch 🚀
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'r**'
|
||||||
|
- '!p**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
dotnet: [ '8.0.405' ]
|
||||||
|
publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ]
|
||||||
|
name: Publish with Dotnet ${{ matrix.dotnet }} and Profile ${{ matrix.publishprofile }}
|
||||||
|
steps:
|
||||||
|
- name: Clone Project
|
||||||
|
uses: actions/checkout@master
|
||||||
|
with:
|
||||||
|
ref: main
|
||||||
|
- name: Setup dotnet
|
||||||
|
uses: actions/setup-dotnet@v1
|
||||||
|
with:
|
||||||
|
dotnet-version: ${{ matrix.dotnet }}
|
||||||
|
- name: Build / Publish Project
|
||||||
|
run: dotnet publish GiteaTest.sln -p:PublishProfile=${{ matrix.publishprofile }}
|
||||||
|
- name: Pack Linux Release
|
||||||
|
if: ${{ matrix.publishprofile == 'PublishLinuxX64' }}
|
||||||
|
run: tar -cvzf ${{ matrix.publishprofile }}.tar.gz -C GiteaTest/publish .
|
||||||
|
- name: Pack Windows Release
|
||||||
|
if: ${{ matrix.publishprofile == 'PublishWinX64' }}
|
||||||
|
run: cd GiteaTest/publish/ && zip ../../${{ matrix.publishprofile }}.zip *
|
||||||
|
- name: Release Files
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
name: Yee
|
||||||
|
body: Body
|
||||||
|
prerelease: false
|
||||||
|
md5sum: true
|
||||||
|
files: |-
|
||||||
|
${{ matrix.publishprofile }}.*
|
||||||
47
.gitea/workflows/PreRelease.yaml
Normal file
47
.gitea/workflows/PreRelease.yaml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
name: Build and Release Prerelease
|
||||||
|
run-name: Building and Releasing Prerelease Branch 🚀
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'p**'
|
||||||
|
- '!r**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
dotnet: [ '8.0.405' ]
|
||||||
|
publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ]
|
||||||
|
name: Publish with Dotnet ${{ matrix.dotnet }} and Profile ${{ matrix.publishprofile }}
|
||||||
|
steps:
|
||||||
|
- name: Clone Project
|
||||||
|
uses: actions/checkout@master
|
||||||
|
with:
|
||||||
|
ref: prerelease
|
||||||
|
#&& echo "RELEASE_MESSAGE=${ git tag -l --format='%(contents:subject)' 'RELEASE_VERSION' }" >> $GITEA_ENV
|
||||||
|
- name: Test
|
||||||
|
run: echo "RELEASE_VERSION=${GITEA_REF#refs/*/}" >> $GITEA_ENV
|
||||||
|
- name: Test2
|
||||||
|
run: git tag -l --format='%(contents:subject)' $RELEASE_VERSION
|
||||||
|
- name: Setup dotnet
|
||||||
|
uses: actions/setup-dotnet@v1
|
||||||
|
with:
|
||||||
|
dotnet-version: ${{ matrix.dotnet }}
|
||||||
|
- name: Build / Publish Project
|
||||||
|
run: dotnet publish GiteaTest.sln -p:PublishProfile=${{ matrix.publishprofile }}
|
||||||
|
- name: Pack Linux Release
|
||||||
|
if: ${{ matrix.publishprofile == 'PublishLinuxX64' }}
|
||||||
|
run: tar -cvzf ${{ matrix.publishprofile }}.tar.gz -C GiteaTest/publish .
|
||||||
|
- name: Pack Windows Release
|
||||||
|
if: ${{ matrix.publishprofile == 'PublishWinX64' }}
|
||||||
|
run: cd GiteaTest/publish/ && zip ../../${{ matrix.publishprofile }}.zip *
|
||||||
|
- name: Release Files
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
name: Release $RELEASE_VERSION
|
||||||
|
body: Body
|
||||||
|
prerelease: true
|
||||||
|
md5sum: true
|
||||||
|
files: |-
|
||||||
|
${{ matrix.publishprofile }}.*
|
||||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
################################################################################
|
||||||
|
# Diese .gitignore-Datei wurde von Microsoft(R) Visual Studio automatisch erstellt.
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
/.vs
|
||||||
BIN
.vs/GiteaTest/v17/.suo
Normal file
BIN
.vs/GiteaTest/v17/.suo
Normal file
Binary file not shown.
74
.vs/GiteaTest/v17/DocumentLayout.json
Normal file
74
.vs/GiteaTest/v17/DocumentLayout.json
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"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,
|
||||||
|
"VerticalTabListWidth": 256,
|
||||||
|
"DocumentGroups": [
|
||||||
|
{
|
||||||
|
"DockedWidth": 200,
|
||||||
|
"SelectedChildIndex": 6,
|
||||||
|
"Children": [
|
||||||
|
{
|
||||||
|
"$type": "Bookmark",
|
||||||
|
"Name": "ST:0:0:{b1e99781-ab81-11d0-b683-00aa00a3ee26}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$type": "Bookmark",
|
||||||
|
"Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$type": "Bookmark",
|
||||||
|
"Name": "ST:129:0:{1fc202d4-d401-403c-9834-5b218574bb67}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$type": "Bookmark",
|
||||||
|
"Name": "ST:128:0:{116d2292-e37d-41cd-a077-ebacac4c8cc4}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$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": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
22
GiteaTest.sln
Normal file
22
GiteaTest.sln
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.12.35521.163 d17.12
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GiteaTest", "GiteaTest\GiteaTest.csproj", "{A963F4C5-129A-4C95-84D6-FE7F05589023}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{A963F4C5-129A-4C95-84D6-FE7F05589023}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{A963F4C5-129A-4C95-84D6-FE7F05589023}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{A963F4C5-129A-4C95-84D6-FE7F05589023}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{A963F4C5-129A-4C95-84D6-FE7F05589023}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
10
GiteaTest/GiteaTest.csproj
Normal file
10
GiteaTest/GiteaTest.csproj
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
6
GiteaTest/GiteaTest.csproj.user
Normal file
6
GiteaTest/GiteaTest.csproj.user
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<_LastSelectedProfileId>D:\Benutzer\germa\Dokumente\Visual Studio 2022\Projects\GiteaTest\Test\GiteaTest\Properties\PublishProfiles\PublishLinuxX64.pubxml</_LastSelectedProfileId>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
10
GiteaTest/Program.cs
Normal file
10
GiteaTest/Program.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
namespace GiteaTest
|
||||||
|
{
|
||||||
|
internal class Program
|
||||||
|
{
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Hello, World!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
18
GiteaTest/Properties/PublishProfiles/PublishLinuxX64.pubxml
Normal file
18
GiteaTest/Properties/PublishProfiles/PublishLinuxX64.pubxml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project>
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Any CPU</Platform>
|
||||||
|
<PublishDir>publish\</PublishDir>
|
||||||
|
<PublishProtocol>FileSystem</PublishProtocol>
|
||||||
|
<_TargetId>Folder</_TargetId>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
||||||
|
<SelfContained>true</SelfContained>
|
||||||
|
<PublishSingleFile>false</PublishSingleFile>
|
||||||
|
<PublishTrimmed>false</PublishTrimmed>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project>
|
||||||
|
</Project>
|
||||||
19
GiteaTest/Properties/PublishProfiles/PublishWinX64.pubxml
Normal file
19
GiteaTest/Properties/PublishProfiles/PublishWinX64.pubxml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project>
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Any CPU</Platform>
|
||||||
|
<PublishDir>publish\</PublishDir>
|
||||||
|
<PublishProtocol>FileSystem</PublishProtocol>
|
||||||
|
<_TargetId>Folder</_TargetId>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
|
<SelfContained>true</SelfContained>
|
||||||
|
<PublishSingleFile>false</PublishSingleFile>
|
||||||
|
<PublishReadyToRun>false</PublishReadyToRun>
|
||||||
|
<PublishTrimmed>false</PublishTrimmed>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||||
23
GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfo.cs
Normal file
23
GiteaTest/obj/Debug/net8.0/GiteaTest.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
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+a95558689be40fb39e08000e88e96c28bad355bc")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("GiteaTest")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("GiteaTest")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
62128658d962225edcf76acbaf5cdb82a898e83fd84e3395de01b86b49a0a6bd
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net8.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
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\Test\GiteaTest\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
8
GiteaTest/obj/Debug/net8.0/GiteaTest.GlobalUsings.g.cs
Normal file
8
GiteaTest/obj/Debug/net8.0/GiteaTest.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.IO;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Net.Http;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
BIN
GiteaTest/obj/Debug/net8.0/GiteaTest.assets.cache
Normal file
BIN
GiteaTest/obj/Debug/net8.0/GiteaTest.assets.cache
Normal file
Binary file not shown.
77
GiteaTest/obj/GiteaTest.csproj.nuget.dgspec.json
Normal file
77
GiteaTest/obj/GiteaTest.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"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\\Test\\GiteaTest\\GiteaTest.csproj",
|
||||||
|
"projectName": "GiteaTest",
|
||||||
|
"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\\Test\\GiteaTest\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Users\\germa\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\germa\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Users\\germa\\AppData\\Roaming\\NuGet\\config\\Godot.Offline.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "all"
|
||||||
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
18
GiteaTest/obj/GiteaTest.csproj.nuget.g.props
Normal file
18
GiteaTest/obj/GiteaTest.csproj.nuget.g.props
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\germa\.nuget\packages\;C:\Users\germa\AppData\Roaming\Godot\mono\GodotNuGetFallbackFolder;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\germa\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Users\germa\AppData\Roaming\Godot\mono\GodotNuGetFallbackFolder\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
2
GiteaTest/obj/GiteaTest.csproj.nuget.g.targets
Normal file
2
GiteaTest/obj/GiteaTest.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||||
85
GiteaTest/obj/project.assets.json
Normal file
85
GiteaTest/obj/project.assets.json
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net8.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net8.0": []
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\germa\\.nuget\\packages\\": {},
|
||||||
|
"C:\\Users\\germa\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
|
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"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\\Test\\GiteaTest\\GiteaTest.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\germa\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Users\\germa\\AppData\\Roaming\\Godot\\mono\\GodotNuGetFallbackFolder",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\germa\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Users\\germa\\AppData\\Roaming\\NuGet\\config\\Godot.Offline.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "all"
|
||||||
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
GiteaTest/obj/project.nuget.cache
Normal file
8
GiteaTest/obj/project.nuget.cache
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "Asttb0jpdwQ=",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "D:\\Benutzer\\germa\\Dokumente\\Visual Studio 2022\\Projects\\GiteaTest\\Test\\GiteaTest\\GiteaTest.csproj",
|
||||||
|
"expectedPackageFiles": [],
|
||||||
|
"logs": []
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user