Skip to content

Commit a667582

Browse files
committedOct 19, 2023
Nothing->Everything
0 parents  commit a667582

28 files changed

+303
-0
lines changed
 

‎Program.cs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System.Net.Http.Headers;
2+
using System.Reflection;
3+
4+
using HttpClient client = new();
5+
client.DefaultRequestHeaders.Accept.Clear();
6+
client.DefaultRequestHeaders.Accept.Add(
7+
new MediaTypeWithQualityHeaderValue("application/vnd.github.v3+json"));
8+
client.DefaultRequestHeaders.Add("User-Agent", ".NET Foundation Repository Reporter");
9+
10+
await ProcessRepositoriesAsync(client);
11+
12+
static async Task ProcessRepositoriesAsync(HttpClient client)
13+
{
14+
var json = await client.GetStringAsync(
15+
"https://api.github.com/orgs/dotnet/repos");
16+
17+
Console.Write(json);
18+
}
19+
20+
21+
Console.WriteLine("Program finished!");

‎ProxerXmlExport.csproj

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net7.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
</PropertyGroup>
9+
10+
</Project>

‎ProxerXmlExport.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.5.002.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProxerXmlExport", "ProxerXmlExport.csproj", "{6172EABF-BD09-4335-BCE3-72F2BD289DBF}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{6172EABF-BD09-4335-BCE3-72F2BD289DBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{6172EABF-BD09-4335-BCE3-72F2BD289DBF}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{6172EABF-BD09-4335-BCE3-72F2BD289DBF}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{6172EABF-BD09-4335-BCE3-72F2BD289DBF}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {D087DB2E-BF76-4620-A342-DD8845C64F15}
24+
EndGlobalSection
25+
EndGlobal
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v7.0",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v7.0": {
9+
"ProxerXmlExport/1.0.0": {
10+
"runtime": {
11+
"ProxerXmlExport.dll": {}
12+
}
13+
}
14+
}
15+
},
16+
"libraries": {
17+
"ProxerXmlExport/1.0.0": {
18+
"type": "project",
19+
"serviceable": false,
20+
"sha512": ""
21+
}
22+
}
23+
}

‎bin/Debug/net7.0/ProxerXmlExport.dll

8 KB
Binary file not shown.

‎bin/Debug/net7.0/ProxerXmlExport.exe

151 KB
Binary file not shown.

‎bin/Debug/net7.0/ProxerXmlExport.pdb

10.9 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net7.0",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "7.0.0"
7+
}
8+
}
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// <autogenerated />
2+
using System;
3+
using System.Reflection;
4+
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
using System;
11+
using System.Reflection;
12+
13+
[assembly: System.Reflection.AssemblyCompanyAttribute("ProxerXmlExport")]
14+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
15+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
17+
[assembly: System.Reflection.AssemblyProductAttribute("ProxerXmlExport")]
18+
[assembly: System.Reflection.AssemblyTitleAttribute("ProxerXmlExport")]
19+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
20+
21+
// Generated by the MSBuild WriteCodeFragment class.
22+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0f402da99abcfc23af078d67b85fc567a748da48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
is_global = true
2+
build_property.TargetFramework = net7.0
3+
build_property.TargetPlatformMinVersion =
4+
build_property.UsingMicrosoftNETSdkWeb =
5+
build_property.ProjectTypeGuids =
6+
build_property.InvariantGlobalization =
7+
build_property.PlatformNeutralAssembly =
8+
build_property.EnforceExtendedAnalyzerRules =
9+
build_property._SupportedPlatformList = Linux,macOS,Windows
10+
build_property.RootNamespace = ProxerXmlExport
11+
build_property.ProjectDir = C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// <auto-generated/>
2+
global using global::System;
3+
global using global::System.Collections.Generic;
4+
global using global::System.IO;
5+
global using global::System.Linq;
6+
global using global::System.Net.Http;
7+
global using global::System.Threading;
8+
global using global::System.Threading.Tasks;
152 Bytes
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1266c3e19caaab9153790a88af28821bf8eb3398
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\bin\Debug\net7.0\ProxerXmlExport.exe
2+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\bin\Debug\net7.0\ProxerXmlExport.deps.json
3+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\bin\Debug\net7.0\ProxerXmlExport.runtimeconfig.json
4+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\bin\Debug\net7.0\ProxerXmlExport.dll
5+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\bin\Debug\net7.0\ProxerXmlExport.pdb
6+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.csproj.AssemblyReference.cache
7+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.GeneratedMSBuildEditorConfig.editorconfig
8+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.AssemblyInfoInputs.cache
9+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.AssemblyInfo.cs
10+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.csproj.CoreCompileInputs.cache
11+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.dll
12+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\refint\ProxerXmlExport.dll
13+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.pdb
14+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ProxerXmlExport.genruntimeconfig.cache
15+
C:\Users\Timur\Downloads\Wichtig\Programming\Cs\ProxerXmlExport\obj\Debug\net7.0\ref\ProxerXmlExport.dll

‎obj/Debug/net7.0/ProxerXmlExport.dll

8 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8bbec500a3ec380476c3a5d75b52588fb9c0135f

‎obj/Debug/net7.0/ProxerXmlExport.pdb

10.9 KB
Binary file not shown.

‎obj/Debug/net7.0/apphost.exe

151 KB
Binary file not shown.
6.5 KB
Binary file not shown.
6.5 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\ProxerXmlExport.csproj": {}
5+
},
6+
"projects": {
7+
"C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\ProxerXmlExport.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\ProxerXmlExport.csproj",
11+
"projectName": "ProxerXmlExport",
12+
"projectPath": "C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\ProxerXmlExport.csproj",
13+
"packagesPath": "C:\\Users\\Timur\\.nuget\\packages\\",
14+
"outputPath": "C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\obj\\",
15+
"projectStyle": "PackageReference",
16+
"configFilePaths": [
17+
"C:\\Users\\Timur\\AppData\\Roaming\\NuGet\\NuGet.Config"
18+
],
19+
"originalTargetFrameworks": [
20+
"net7.0"
21+
],
22+
"sources": {
23+
"https://api.nuget.org/v3/index.json": {}
24+
},
25+
"frameworks": {
26+
"net7.0": {
27+
"targetAlias": "net7.0",
28+
"projectReferences": {}
29+
}
30+
},
31+
"warningProperties": {
32+
"warnAsError": [
33+
"NU1605"
34+
]
35+
}
36+
},
37+
"frameworks": {
38+
"net7.0": {
39+
"targetAlias": "net7.0",
40+
"imports": [
41+
"net461",
42+
"net462",
43+
"net47",
44+
"net471",
45+
"net472",
46+
"net48",
47+
"net481"
48+
],
49+
"assetTargetFallback": true,
50+
"warn": true,
51+
"frameworkReferences": {
52+
"Microsoft.NETCore.App": {
53+
"privateAssets": "all"
54+
}
55+
},
56+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json"
57+
}
58+
}
59+
}
60+
}
61+
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Timur\.nuget\packages\</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.6.0</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="C:\Users\Timur\.nuget\packages\" />
14+
</ItemGroup>
15+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

‎obj/project.assets.json

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"version": 3,
3+
"targets": {
4+
"net7.0": {}
5+
},
6+
"libraries": {},
7+
"projectFileDependencyGroups": {
8+
"net7.0": []
9+
},
10+
"packageFolders": {
11+
"C:\\Users\\Timur\\.nuget\\packages\\": {}
12+
},
13+
"project": {
14+
"version": "1.0.0",
15+
"restore": {
16+
"projectUniqueName": "C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\ProxerXmlExport.csproj",
17+
"projectName": "ProxerXmlExport",
18+
"projectPath": "C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\ProxerXmlExport.csproj",
19+
"packagesPath": "C:\\Users\\Timur\\.nuget\\packages\\",
20+
"outputPath": "C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\obj\\",
21+
"projectStyle": "PackageReference",
22+
"configFilePaths": [
23+
"C:\\Users\\Timur\\AppData\\Roaming\\NuGet\\NuGet.Config"
24+
],
25+
"originalTargetFrameworks": [
26+
"net7.0"
27+
],
28+
"sources": {
29+
"https://api.nuget.org/v3/index.json": {}
30+
},
31+
"frameworks": {
32+
"net7.0": {
33+
"targetAlias": "net7.0",
34+
"projectReferences": {}
35+
}
36+
},
37+
"warningProperties": {
38+
"warnAsError": [
39+
"NU1605"
40+
]
41+
}
42+
},
43+
"frameworks": {
44+
"net7.0": {
45+
"targetAlias": "net7.0",
46+
"imports": [
47+
"net461",
48+
"net462",
49+
"net47",
50+
"net471",
51+
"net472",
52+
"net48",
53+
"net481"
54+
],
55+
"assetTargetFallback": true,
56+
"warn": true,
57+
"frameworkReferences": {
58+
"Microsoft.NETCore.App": {
59+
"privateAssets": "all"
60+
}
61+
},
62+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json"
63+
}
64+
}
65+
}
66+
}

‎obj/project.nuget.cache

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"version": 2,
3+
"dgSpecHash": "OLl9yUtxj2LI4agQpyzD4gZrvvGo4I5ei98rSwOgKNqq/7zhjCV5NFJCAlQabzMoGzqDKNY5lOoxr3mEI4QH8g==",
4+
"success": true,
5+
"projectFilePath": "C:\\Users\\Timur\\Downloads\\Wichtig\\Programming\\Cs\\ProxerXmlExport\\ProxerXmlExport.csproj",
6+
"expectedPackageFiles": [],
7+
"logs": []
8+
}

0 commit comments

Comments
 (0)
Please sign in to comment.