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.

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}") = "Neutral Folder", "Neutral Folder\Neutral Folder.csproj", "{5939CD9E-1488-4EA7-BB66-8B505F97C889}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5939CD9E-1488-4EA7-BB66-8B505F97C889}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5939CD9E-1488-4EA7-BB66-8B505F97C889}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5939CD9E-1488-4EA7-BB66-8B505F97C889}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5939CD9E-1488-4EA7-BB66-8B505F97C889}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3453FBC1-9C39-4C8E-81A6-B9D3C9AA3621}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,45 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<RootNamespace>Neutral_Folder</RootNamespace>
<ApplicationIcon />
<StartupObject />
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<COMReference Include="TaskScheduler">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>0</VersionMinor>
<VersionMajor>1</VersionMajor>
<Guid>e34cb9f1-c7f7-424c-be29-027dcc09363a</Guid>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>true</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
<PackageReference Include="System.Security.AccessControl" Version="5.0.0" />
</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>

View File

@@ -0,0 +1,28 @@
{
"nf": {
"path": "D:\\nf",
"days": "1357",
"datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ",
"dontdelete": "dontdelete"
},
"Neutral Folder": {
"path": "D:\\Neutral Folder",
"days": "1357",
"datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ",
"dontdelete": "dontdelete"
},
"Slow Neutral Folder": {
"path": "D:\\WaitForIt",
"days": "5",
"datafile": "[.ShellClassInfo]`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=34",
"dontdelete": "dontdelete"
},
"Force Neutral Folder": {
"path": "D:\\DeleteWhenNeeded",
"datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר רק שיתבקש`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=38`r`n ",
"delete": "deleteme"
}
}

View File

@@ -0,0 +1,131 @@
using System;
namespace Neutral_Folder
{
class Program
{
//public static string J = System.IO.File.ReadAllText("Neutral Folder.json");
public static dynamic json = Newtonsoft.Json.JsonConvert.DeserializeObject(Neutral_Folder.Properties.Resources.NeutralFolders);
static void DeleteFolder(string name)
{
string path = json[name]["path"];
System.IO.DirectoryInfo directory = new(path);
try
{
System.IO.FileStream fileStream = null;
directory.Delete(true);
}
catch
{
RemoveIni(path);
}
directory.Create();
directory.Attributes = System.IO.FileAttributes.ReadOnly;
SetFolderData(name);
}
static void RemoveIni(string path)
{
try
{
foreach (var file in System.IO.Directory.GetFiles(path))
{
System.IO.File.SetAttributes(file, System.IO.FileAttributes.Normal);
System.IO.File.Delete(file);
}
foreach (var folder in System.IO.Directory.GetDirectories(path))
{
System.Security.AccessControl.DirectorySecurity directorySecurity = new(folder, System.Security.AccessControl.AccessControlSections.All);
System.Security.Principal.NTAccount nTAccount = new("Administrators");
System.Security.AccessControl.FileSystemAccessRule fileSystemAccessRule = new(nTAccount, System.Security.AccessControl.FileSystemRights.FullControl, System.Security.AccessControl.AccessControlType.Allow);
directorySecurity.SetAccessRule(fileSystemAccessRule);
System.IO.Directory.Delete(folder, true);
}
}
catch
{
}
}
static void SetFolderData(string name)
{
string path = json[name]["path"];
string desktopini = $"{path}\\desktop.ini";
string[] dataToWrite = json[name]["datafile"].Value.Split(@"`r`n");
try
{
System.IO.File.WriteAllLines(desktopini, dataToWrite);
System.IO.File.SetAttributes(desktopini, System.IO.FileAttributes.ReadOnly | System.IO.FileAttributes.Hidden);
}
catch
{
System.IO.File.SetAttributes(desktopini, System.IO.FileAttributes.Normal);
System.IO.File.Delete(desktopini);
System.IO.File.WriteAllLines(desktopini, dataToWrite);
System.IO.File.SetAttributes(desktopini, System.IO.FileAttributes.ReadOnly | System.IO.FileAttributes.Hidden);
}
}
static bool DeleteToday(string name)
{
string filedelete = $"{json[name]["path"]}\\{json[name]["dontdelete"]}";
string deleteday = (1 + ((int)DateTime.Today.DayOfWeek)).ToString();
System.Text.RegularExpressions.Regex isDayIn = new(deleteday);
return (!(System.IO.File.Exists(filedelete)) && (isDayIn.IsMatch(json[name]["days"].Value)));
}
static bool DeleteToday(string name, int day)
{
foreach (var i in json[name]["days"])
{
if (day == i)
{
return true;
}
}
return false;
}
static void DeleteThisFolder(string name)
{
if (name.Equals("Force Neutral Folder"))
{
if (System.IO.File.Exists(json[name]["delete"].Value))
{
DeleteFolder(name);
}
else if (!(System.IO.File.Exists(json[name].Value)))
{
DeleteFolder(name);
}
else if ((System.IO.File.Exists(json[name].Value)))
{
System.IO.File.Delete(json[name].Value);
}
}
else if (DeleteToday(name))
{
DeleteFolder(name);
}
}
public static void GetScheduledTask(string name)
{
System.Type.GetTypeFromCLSID(Guid.Parse("e34cb9f1-c7f7-424c-be29-027dcc09363a"));
}
static void Main(string[] args)
{
foreach (var k in json)
{
string key = ((Newtonsoft.Json.Linq.JProperty)k).Name;
System.Threading.Thread t = new(new System.Threading.ThreadStart(() => DeleteThisFolder(key)));
t.Start();
}
//ConsoleGetScheduledTask("");
}
}
}

View File

@@ -0,0 +1,83 @@
//------------------------------------------------------------------------------
// <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 Neutral_Folder.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", "17.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("Neutral_Folder.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 {
/// &quot;nf&quot;: {
/// &quot;path&quot;: &quot;D:\\nf&quot;,
/// &quot;days&quot;: &quot;1357&quot;,
/// &quot;datafile&quot;: &quot;[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n &quot;,
/// &quot;dontdelete&quot;: &quot;dontdelete&quot;
///
/// },
/// &quot;Neutral Folder&quot;: {
/// &quot;path&quot;: &quot;D:\\Neutral Folder&quot;,
/// &quot;days&quot;: &quot;1357&quot;,
/// &quot;datafile&quot;: &quot;[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\ [rest of string was truncated]&quot;;.
/// </summary>
internal static string NeutralFolders {
get {
return ResourceManager.GetString("NeutralFolders", resourceCulture);
}
}
}
}

View 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="NeutralFolders" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\resources\neutralfolders.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data>
</root>

Binary file not shown.

View File

@@ -0,0 +1,28 @@
{
"nf": {
"path": "D:\\nf",
"days": "1357",
"datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ",
"dontdelete": "dontdelete"
},
"Neutral Folder": {
"path": "D:\\Neutral Folder",
"days": "1357",
"datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ",
"dontdelete": "dontdelete"
},
"Slow Neutral Folder": {
"path": "D:\\WaitForIt",
"days": "5",
"datafile": "[.ShellClassInfo]`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=34",
"dontdelete": "dontdelete"
},
"Force Neutral Folder": {
"path": "D:\\DeleteWhenNeeded",
"datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר רק שיתבקש`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=38`r`n ",
"delete": "deleteme"
}
}

Binary file not shown.

View File

@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on
and is designed to work with. Uncomment the appropriate elements
and Windows will automatically select the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config.
Makes the application long-path aware. See https://docs.microsoft.com/windows/win32/fileio/maximum-file-path-limitation -->
<!--
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
</windowsSettings>
</application>
-->
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
<!--
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
-->
</assembly>

Binary file not shown.

View File

@@ -0,0 +1,85 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"Neutral Folder/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.1",
"System.IO.FileSystem.AccessControl": "5.0.0",
"System.Security.AccessControl": "5.0.0"
},
"runtime": {
"Neutral Folder.dll": {}
}
},
"Microsoft.NETCore.Platforms/5.0.0": {},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.IO.FileSystem.AccessControl/5.0.0": {
"dependencies": {
"System.Security.AccessControl": "5.0.0",
"System.Security.Principal.Windows": "5.0.0"
}
},
"System.Security.AccessControl/5.0.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "5.0.0",
"System.Security.Principal.Windows": "5.0.0"
}
},
"System.Security.Principal.Windows/5.0.0": {}
}
},
"libraries": {
"Neutral Folder/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
"path": "microsoft.netcore.platforms/5.0.0",
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.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"
},
"System.IO.FileSystem.AccessControl/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
"path": "system.io.filesystem.accesscontrol/5.0.0",
"hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
},
"System.Security.AccessControl/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
"path": "system.security.accesscontrol/5.0.0",
"hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
},
"System.Security.Principal.Windows/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
"path": "system.security.principal.windows/5.0.0",
"hashPath": "system.security.principal.windows.5.0.0.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"
}
}
}

View File

@@ -0,0 +1,85 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"Neutral Folder/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.1",
"System.IO.FileSystem.AccessControl": "5.0.0",
"System.Security.AccessControl": "5.0.0"
},
"runtime": {
"Neutral Folder.dll": {}
}
},
"Microsoft.NETCore.Platforms/5.0.0": {},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.1.25517"
}
}
},
"System.IO.FileSystem.AccessControl/5.0.0": {
"dependencies": {
"System.Security.AccessControl": "5.0.0",
"System.Security.Principal.Windows": "5.0.0"
}
},
"System.Security.AccessControl/5.0.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "5.0.0",
"System.Security.Principal.Windows": "5.0.0"
}
},
"System.Security.Principal.Windows/5.0.0": {}
}
},
"libraries": {
"Neutral Folder/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
"path": "microsoft.netcore.platforms/5.0.0",
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.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"
},
"System.IO.FileSystem.AccessControl/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
"path": "system.io.filesystem.accesscontrol/5.0.0",
"hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
},
"System.Security.AccessControl/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
"path": "system.security.accesscontrol/5.0.0",
"hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
},
"System.Security.Principal.Windows/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
"path": "system.security.principal.windows/5.0.0",
"hashPath": "system.security.principal.windows.5.0.0.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.

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,25 @@
//------------------------------------------------------------------------------
// <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("Neutral Folder")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Neutral Folder")]
[assembly: System.Reflection.AssemblyTitleAttribute("Neutral Folder")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
7b34a12d31f614215c6226438db74b09b5e9a405

View File

@@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net5.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Neutral_Folder
build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\

View File

@@ -0,0 +1 @@
2b0585c2bff005ce22425c52744b6904acdf52fe

View File

@@ -0,0 +1,22 @@
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.exe
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.deps.json
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.runtimeconfig.json
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.runtimeconfig.dev.json
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\ref\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.pdb
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Newtonsoft.Json.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.AssemblyReference.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Interop.TaskScheduler.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.ResolveComReference.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral_Folder.Properties.Resources.resources
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.GenerateResource.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.AssemblyInfoInputs.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.AssemblyInfo.cs
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.CoreCompileInputs.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.CopyComplete
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\ref\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.pdb
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.genruntimeconfig.cache

View File

@@ -0,0 +1 @@
cc0d55f98955bebd8e84f8cee09f05297e6a2b70

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("Neutral Folder")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Neutral Folder")]
[assembly: System.Reflection.AssemblyTitleAttribute("Neutral Folder")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
71f58ab0a7f1fb43d7587528ecb0f4afc2545ace

View File

@@ -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 = Neutral_Folder
build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\

View File

@@ -0,0 +1 @@
22cfe07f6a6e134ddde594b6dfb8b78273883db2

View File

@@ -0,0 +1,53 @@
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.exe
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.deps.json
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.json
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.dev.json
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\ref\Neutral Folder.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.pdb
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Newtonsoft.Json.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.AssemblyReference.cache
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfoInputs.cache
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfo.cs
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.CoreCompileInputs.cache
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.CopyComplete
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\ref\Neutral Folder.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.pdb
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.genruntimeconfig.cache
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\System.Diagnostics.EventLog.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Microsoft.Win32.TaskScheduler.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\de\Microsoft.Win32.TaskScheduler.resources.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\es\Microsoft.Win32.TaskScheduler.resources.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\fr\Microsoft.Win32.TaskScheduler.resources.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\it\Microsoft.Win32.TaskScheduler.resources.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\pl\Microsoft.Win32.TaskScheduler.resources.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\ru\Microsoft.Win32.TaskScheduler.resources.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\zh-CN\Microsoft.Win32.TaskScheduler.resources.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Interop.TaskScheduler.dll
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.ResolveComReference.cache
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral_Folder.Properties.Resources.resources
C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.GenerateResource.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\ref\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.pdb
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.exe
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.deps.json
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.json
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.dev.json
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\ref\Neutral Folder.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.pdb
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Newtonsoft.Json.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Interop.TaskScheduler.dll
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.ResolveComReference.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral_Folder.Properties.Resources.resources
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.GenerateResource.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfoInputs.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfo.cs
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.CoreCompileInputs.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.genruntimeconfig.cache
D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.AssemblyReference.cache

Some files were not shown because too many files have changed in this diff Show More