This commit is contained in:
2021-09-24 00:58:15 +03:00
parent 50a68be7c6
commit 1817142a33
1153 changed files with 30981 additions and 334 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31424.327
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DownloadMyScript", "DownloadMyScript\DownloadMyScript.csproj", "{537DD54D-4FF8-4366-9B1A-7FC7E16A521D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B64C8F5A-CCB1-4C2B-9F7B-3485ED0C2CE1}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,22 @@
using System;
using Newtonsoft.Json;
namespace DownloadMyScript
{
class Program
{
static void Main(string[] args)
{
System.Net.WebRequest data_element = System.Net.WebRequest.Create("https://api.github.com/gists/cd81e5005e7c7be3f71af94ab635d647");
data_element.Method = "GET";
data_element.ContentType = "application/json";
data_element.Credentials = "foo";
System.Net.WebResponse res = data_element.GetResponse();
System.IO.Stream stream = res.GetResponseStream();
string data_content = stream.ToString();
dynamic data = JsonConvert.DeserializeObject(data_content);
data_element = System.Net.WebRequest.Create(data["files"]["myscript 2.0.exe"]["raw_url"].Value);
//byte[] binaryWriter = data_element.Method;
//System.IO.File.WriteAllBytes("D:\\Neutral Folder\\File.exe",binaryWriter);
}
}
}

View File

@@ -0,0 +1,41 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"DownloadMyScript/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
"DownloadMyScript.dll": {}
}
},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
}
}
},
"libraries": {
"DownloadMyScript/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"path": "newtonsoft.json/13.0.1",
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\סארט\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
]
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net5.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "5.0.0"
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DownloadMyScript")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DownloadMyScript")]
[assembly: System.Reflection.AssemblyTitleAttribute("DownloadMyScript")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
c9a85597ea4a5f5982dbe6b8d0b176aba8111283

View File

@@ -0,0 +1,8 @@
is_global = true
build_property.TargetFramework = net5.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.PublishSingleFile =
build_property.IncludeAllContentForSelfExtract =
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows

View File

@@ -0,0 +1 @@
df04e92bc1f90889acee3127c09f40d862e05d52

View File

@@ -0,0 +1,18 @@
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.exe
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.deps.json
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.runtimeconfig.json
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.runtimeconfig.dev.json
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.dll
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\ref\DownloadMyScript.dll
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.pdb
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\Newtonsoft.Json.dll
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.csproj.AssemblyReference.cache
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.AssemblyInfoInputs.cache
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.AssemblyInfo.cs
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.csproj.CoreCompileInputs.cache
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.csproj.CopyComplete
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.dll
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\ref\DownloadMyScript.dll
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.pdb
C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.genruntimeconfig.cache

View File

@@ -0,0 +1 @@
fa85a2a72e640131834e709d9635d29afc128acb

View File

@@ -0,0 +1,73 @@
{
"format": 1,
"restore": {
"C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj": {}
},
"projects": {
"C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj",
"projectName": "DownloadMyScript",
"projectPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj",
"packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
"outputPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Users\\סארט\\source\\repos\\NetWork": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,19 @@
<?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\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\סארט\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DownloadMyScript")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DownloadMyScript")]
[assembly: System.Reflection.AssemblyTitleAttribute("DownloadMyScript")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
d8e6aaabf3d916a2d32ed3310e891e34c40f3e94

View File

@@ -0,0 +1,8 @@
is_global = true
build_property.TargetFramework = net5.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.PublishSingleFile =
build_property.IncludeAllContentForSelfExtract =
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows

Binary file not shown.

View File

@@ -0,0 +1,119 @@
{
"version": 3,
"targets": {
"net5.0": {
"Newtonsoft.Json/13.0.1": {
"type": "package",
"compile": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
}
}
}
},
"libraries": {
"Newtonsoft.Json/13.0.1": {
"sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"type": "package",
"path": "newtonsoft.json/13.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.md",
"lib/net20/Newtonsoft.Json.dll",
"lib/net20/Newtonsoft.Json.xml",
"lib/net35/Newtonsoft.Json.dll",
"lib/net35/Newtonsoft.Json.xml",
"lib/net40/Newtonsoft.Json.dll",
"lib/net40/Newtonsoft.Json.xml",
"lib/net45/Newtonsoft.Json.dll",
"lib/net45/Newtonsoft.Json.xml",
"lib/netstandard1.0/Newtonsoft.Json.dll",
"lib/netstandard1.0/Newtonsoft.Json.xml",
"lib/netstandard1.3/Newtonsoft.Json.dll",
"lib/netstandard1.3/Newtonsoft.Json.xml",
"lib/netstandard2.0/Newtonsoft.Json.dll",
"lib/netstandard2.0/Newtonsoft.Json.xml",
"newtonsoft.json.13.0.1.nupkg.sha512",
"newtonsoft.json.nuspec",
"packageIcon.png"
]
}
},
"projectFileDependencyGroups": {
"net5.0": [
"Newtonsoft.Json >= 13.0.1"
]
},
"packageFolders": {
"C:\\Users\\סארט\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj",
"projectName": "DownloadMyScript",
"projectPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj",
"packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
"outputPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Users\\סארט\\source\\repos\\NetWork": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"dependencies": {
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,10 @@
{
"version": 2,
"dgSpecHash": "PMTPDRGEm/HXTWcqwujTQlNlZX64Y/wdOapXAjVmGX1fbuhW2fnjCMmFUBhO073GZUuxxR8dTOJpcCGwIjg1IA==",
"success": true,
"projectFilePath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj",
"expectedPackageFiles": [
"C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512"
],
"logs": []
}

Binary file not shown.