me
This commit is contained in:
BIN
RunNormally/.vs/RunNormally/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
RunNormally/.vs/RunNormally/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
BIN
RunNormally/.vs/RunNormally/DesignTimeBuild/desktop.ini
Normal file
BIN
RunNormally/.vs/RunNormally/DesignTimeBuild/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/.vs/RunNormally/desktop.ini
Normal file
BIN
RunNormally/.vs/RunNormally/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/.vs/RunNormally/v16/.suo
Normal file
BIN
RunNormally/.vs/RunNormally/v16/.suo
Normal file
Binary file not shown.
BIN
RunNormally/.vs/RunNormally/v16/desktop.ini
Normal file
BIN
RunNormally/.vs/RunNormally/v16/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/.vs/RunNormally/v17/.futdcache.v1
Normal file
BIN
RunNormally/.vs/RunNormally/v17/.futdcache.v1
Normal file
Binary file not shown.
BIN
RunNormally/.vs/RunNormally/v17/.suo
Normal file
BIN
RunNormally/.vs/RunNormally/v17/.suo
Normal file
Binary file not shown.
BIN
RunNormally/.vs/RunNormally/v17/desktop.ini
Normal file
BIN
RunNormally/.vs/RunNormally/v17/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/.vs/desktop.ini
Normal file
BIN
RunNormally/.vs/desktop.ini
Normal file
Binary file not shown.
25
RunNormally/RunNormally.sln
Normal file
25
RunNormally/RunNormally.sln
Normal 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}") = "RunNormally", "RunNormally\RunNormally.csproj", "{A49A88BD-617A-45CE-B40F-CE4ECDC7B482}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {F1E27C41-1F49-490D-9DBE-25E604B27E25}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
62
RunNormally/RunNormally/Program.cs
Normal file
62
RunNormally/RunNormally/Program.cs
Normal file
@@ -0,0 +1,62 @@
|
||||
using Newtonsoft.Json;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace Runas
|
||||
{
|
||||
class Program
|
||||
{
|
||||
public static dynamic jprograms = JsonConvert.DeserializeObject(RunNormally.Properties.Resources.progs);
|
||||
|
||||
public static bool DoRun(string program)
|
||||
{
|
||||
Process[] process = Process.GetProcessesByName(program);
|
||||
return (process.Length > 0);
|
||||
}
|
||||
public static void RunProcess(string programName)
|
||||
{
|
||||
|
||||
if (!(DoRun(programName)))
|
||||
{
|
||||
if (programName.Equals("AutoHotKey"))
|
||||
{
|
||||
Process.Start(jprograms[programName][0].Value, $"\u0022{jprograms[programName][1].Value.ToString()}\u0022");
|
||||
}
|
||||
|
||||
else if (jprograms[programName].Count > 1)
|
||||
{
|
||||
foreach (var prog in jprograms[programName])
|
||||
{
|
||||
|
||||
Process.Start(prog.Value);
|
||||
}
|
||||
}
|
||||
else if ((jprograms[programName].Count == 1) && (!(programName.Equals("RunAsMe"))))
|
||||
{
|
||||
Process.Start(jprograms[programName][0].Value);
|
||||
}
|
||||
else if (programName.Equals("RunAsMe"))
|
||||
{
|
||||
System.Diagnostics.Process file = new();
|
||||
file.StartInfo.FileName = jprograms[programName][0].Value;
|
||||
file.StartInfo.UseShellExecute = true;
|
||||
file.StartInfo.Verb = "runas";
|
||||
file.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Newtonsoft.Json.Linq.JArray r = new();
|
||||
string[] drivefs = System.IO.Directory.GetFiles("C:\\Program Files\\Google", "GoogleDriveFS.exe", System.IO.SearchOption.AllDirectories);
|
||||
r.Add(drivefs[^1]);
|
||||
jprograms.Add("GoogleDriveFS", r);
|
||||
foreach (var prog in jprograms)
|
||||
{
|
||||
string ProgProg = ((Newtonsoft.Json.Linq.JProperty)prog).Name;
|
||||
System.Threading.Thread thread = new(new System.Threading.ThreadStart(() => RunProcess(ProgProg)));
|
||||
thread.Start();
|
||||
//RunProcess(ProgProg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
76
RunNormally/RunNormally/Properties/Resources.Designer.cs
generated
Normal file
76
RunNormally/RunNormally/Properties/Resources.Designer.cs
generated
Normal file
@@ -0,0 +1,76 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace RunNormally.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources() {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RunNormally.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
set {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "QuickLook": ["C:\\Users\\סארט\\AppData\\Local\\Programs\\QuickLook\\QuickLook.exe"],
|
||||
/// "nimi places": ["D:\\nimi places.exe"],
|
||||
/// "RunAsMe": ["D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\bin\\Debug\\net5.0\\Runas.exe"]
|
||||
///}.
|
||||
/// </summary>
|
||||
internal static string progs {
|
||||
get {
|
||||
return ResourceManager.GetString("progs", resourceCulture);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
124
RunNormally/RunNormally/Properties/Resources.resx
Normal file
124
RunNormally/RunNormally/Properties/Resources.resx
Normal file
@@ -0,0 +1,124 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="progs" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\progs.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
|
||||
</data>
|
||||
</root>
|
BIN
RunNormally/RunNormally/Properties/desktop.ini
Normal file
BIN
RunNormally/RunNormally/Properties/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/Resources/desktop.ini
Normal file
BIN
RunNormally/RunNormally/Resources/desktop.ini
Normal file
Binary file not shown.
5
RunNormally/RunNormally/Resources/progs.json
Normal file
5
RunNormally/RunNormally/Resources/progs.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"QuickLook": [ "C:\\Users\\סארט\\AppData\\Local\\Programs\\QuickLook\\QuickLook.exe" ],
|
||||
"nimi places": [ "D:\\nimi places.exe" ],
|
||||
"RunAsMe": [ "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\bin\\Debug\\net5.0\\Runas.exe" ]
|
||||
}
|
29
RunNormally/RunNormally/RunNormally.csproj
Normal file
29
RunNormally/RunNormally/RunNormally.csproj
Normal file
@@ -0,0 +1,29 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<ApplicationIcon />
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\Resources.Designer.cs">
|
||||
<DesignTime>True</DesignTime>
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
BIN
RunNormally/RunNormally/bin/Debug/desktop.ini
Normal file
BIN
RunNormally/RunNormally/bin/Debug/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Debug/net5.0/Newtonsoft.Json.dll
Normal file
BIN
RunNormally/RunNormally/bin/Debug/net5.0/Newtonsoft.Json.dll
Normal file
Binary file not shown.
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"RunNormally/1.0.0": {
|
||||
"dependencies": {
|
||||
"Newtonsoft.Json": "13.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"RunNormally.dll": {}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.1.25517"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"RunNormally/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"
|
||||
}
|
||||
}
|
||||
}
|
BIN
RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.dll
Normal file
BIN
RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.dll
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.exe
Normal file
BIN
RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.exe
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.pdb
Normal file
BIN
RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.pdb
Normal file
Binary file not shown.
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
}
|
||||
}
|
||||
}
|
BIN
RunNormally/RunNormally/bin/Debug/net5.0/desktop.ini
Normal file
BIN
RunNormally/RunNormally/bin/Debug/net5.0/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Debug/net5.0/ref/RunNormally.dll
Normal file
BIN
RunNormally/RunNormally/bin/Debug/net5.0/ref/RunNormally.dll
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Debug/net5.0/ref/desktop.ini
Normal file
BIN
RunNormally/RunNormally/bin/Debug/net5.0/ref/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Release/desktop.ini
Normal file
BIN
RunNormally/RunNormally/bin/Release/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Release/net5.0/desktop.ini
Normal file
BIN
RunNormally/RunNormally/bin/Release/net5.0/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/Release/net5.0/ref/desktop.ini
Normal file
BIN
RunNormally/RunNormally/bin/Release/net5.0/ref/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/bin/desktop.ini
Normal file
BIN
RunNormally/RunNormally/bin/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/desktop.ini
Normal file
BIN
RunNormally/RunNormally/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Debug/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/Debug/desktop.ini
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -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("RunNormally")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("RunNormally")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("RunNormally")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@@ -0,0 +1 @@
|
||||
dbfaba4dc64c0ae420182894de67b5826e62a448
|
@@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = RunNormally
|
||||
build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
c2f02db10cf69175123f1a3416e5c651c22b510c
|
@@ -0,0 +1,39 @@
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.exe
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.deps.json
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.json
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.dev.json
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.dll
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\ref\RunNormally.dll
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.pdb
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\Newtonsoft.Json.dll
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.AssemblyReference.cache
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.Properties.Resources.resources
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.GenerateResource.cache
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfoInputs.cache
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfo.cs
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CoreCompileInputs.cache
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CopyComplete
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.dll
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\ref\RunNormally.dll
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.pdb
|
||||
C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.genruntimeconfig.cache
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.exe
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.deps.json
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.json
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.dev.json
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.dll
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\ref\RunNormally.dll
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.pdb
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\Newtonsoft.Json.dll
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.Properties.Resources.resources
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.GenerateResource.cache
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfoInputs.cache
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfo.cs
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CoreCompileInputs.cache
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.dll
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\ref\RunNormally.dll
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.pdb
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.genruntimeconfig.cache
|
||||
D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CopyComplete
|
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.dll
Normal file
BIN
RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
097a550015b5ae7ea7d9461296fe14aeeb539897
|
BIN
RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.pdb
Normal file
BIN
RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.pdb
Normal file
Binary file not shown.
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Debug/net5.0/TempPE/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/Debug/net5.0/TempPE/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Debug/net5.0/apphost.exe
Normal file
BIN
RunNormally/RunNormally/obj/Debug/net5.0/apphost.exe
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Debug/net5.0/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/Debug/net5.0/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Debug/net5.0/ref/RunNormally.dll
Normal file
BIN
RunNormally/RunNormally/obj/Debug/net5.0/ref/RunNormally.dll
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Debug/net5.0/ref/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/Debug/net5.0/ref/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Release/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/Release/desktop.ini
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -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("RunNormally")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("RunNormally")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("RunNormally")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@@ -0,0 +1 @@
|
||||
0be6c031f524a78582103089e0c30d31d4a6cc04
|
@@ -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.
BIN
RunNormally/RunNormally/obj/Release/net5.0/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/Release/net5.0/desktop.ini
Normal file
Binary file not shown.
BIN
RunNormally/RunNormally/obj/Release/net5.0/ref/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/Release/net5.0/ref/desktop.ini
Normal file
Binary file not shown.
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj",
|
||||
"projectName": "RunNormally",
|
||||
"projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj",
|
||||
"packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\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\\": {},
|
||||
"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,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.win-x64",
|
||||
"version": "[5.0.8, 5.0.8]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
19
RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.props
Normal file
19
RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.props
Normal 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)' == '' ">6.0.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>
|
@@ -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>
|
BIN
RunNormally/RunNormally/obj/desktop.ini
Normal file
BIN
RunNormally/RunNormally/obj/desktop.ini
Normal file
Binary file not shown.
124
RunNormally/RunNormally/obj/project.assets.json
Normal file
124
RunNormally/RunNormally/obj/project.assets.json
Normal file
@@ -0,0 +1,124 @@
|
||||
{
|
||||
"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": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj",
|
||||
"projectName": "RunNormally",
|
||||
"projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj",
|
||||
"packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\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\\": {},
|
||||
"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,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.win-x64",
|
||||
"version": "[5.0.8, 5.0.8]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
11
RunNormally/RunNormally/obj/project.nuget.cache
Normal file
11
RunNormally/RunNormally/obj/project.nuget.cache
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "2hR8RzqTHiAtQUmxM4F/X5/avtjT+wTfJcfIQZc2CCpZ3uVovRh9mjFzTKEppz/Kz4UddTwfpEfsKRrgi/a/tA==",
|
||||
"success": true,
|
||||
"projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\5.0.8\\microsoft.netcore.app.host.win-x64.5.0.8.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
BIN
RunNormally/desktop.ini
Normal file
BIN
RunNormally/desktop.ini
Normal file
Binary file not shown.
Reference in New Issue
Block a user