Fs scan done
This commit is contained in:
20
ZDelta/Data/AstNode.cs
Normal file
20
ZDelta/Data/AstNode.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace ZDelta.Data;
|
||||
|
||||
public record AstNode(string type, string data)
|
||||
{
|
||||
private AstNode[] children = new AstNode[0];
|
||||
public void addChild(AstNode child)
|
||||
{
|
||||
children = children.Append(child).ToArray();
|
||||
}
|
||||
|
||||
public void setChildren(AstNode[] newChildren)
|
||||
{
|
||||
children = newChildren;
|
||||
}
|
||||
|
||||
public AstNode[] getChildren()
|
||||
{
|
||||
return children;
|
||||
}
|
||||
};
|
||||
30
ZDelta/Data/FsNode.cs
Normal file
30
ZDelta/Data/FsNode.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
namespace ZDelta.Data;
|
||||
|
||||
public record FsNode(String name, bool isDir, String contents)
|
||||
{
|
||||
private FsNode[] children=new FsNode[0];
|
||||
public void addNode(FsNode node)
|
||||
{
|
||||
children=children.Append(node).ToArray();
|
||||
}
|
||||
|
||||
public FsNode[] getChildren()
|
||||
{
|
||||
return children;
|
||||
}
|
||||
|
||||
public String getContents()
|
||||
{
|
||||
return contents;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
public bool isDirectory()
|
||||
{
|
||||
return isDir;
|
||||
}
|
||||
};
|
||||
3
ZDelta/Data/Zil/ZilFile.cs
Normal file
3
ZDelta/Data/Zil/ZilFile.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace ZDelta.Data.Zil;
|
||||
|
||||
public record ZilFile(string namespaceID, string text);
|
||||
3
ZDelta/Data/Zil/ZilNode.cs
Normal file
3
ZDelta/Data/Zil/ZilNode.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace ZDelta.Data.Zil;
|
||||
|
||||
public record ZilNode(string namespaceID, AstNode[] nodes, string[] data);
|
||||
@@ -1,9 +1,17 @@
|
||||
namespace ZDelta.Toolchain;
|
||||
using ZDelta.Data.Zil;
|
||||
using ZDelta.Data;
|
||||
|
||||
namespace ZDelta.Toolchain;
|
||||
|
||||
public class Compiler
|
||||
{
|
||||
public static data.ZilNode compile(string code)
|
||||
public static ZilFile[] compile(AstNode astNode)
|
||||
{
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private ZilFile makeZilFile(AstNode astNode)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -2,8 +2,15 @@
|
||||
|
||||
public class Lexer
|
||||
{
|
||||
public static data.AstNode Lex(string code)
|
||||
public static Data.AstNode Lex(Data.FsNode node)
|
||||
{
|
||||
|
||||
var path = node.getName();
|
||||
var ast = new Data.AstNode("file", path);
|
||||
var content = node.getContents();
|
||||
while (true)
|
||||
{
|
||||
break;
|
||||
}
|
||||
return ast;
|
||||
}
|
||||
}
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
public class Linker
|
||||
{
|
||||
public static string Link(data.AssemblyNode[] assemblies)
|
||||
public static string Link(Data.Zil.ZilFile[] assemblies)
|
||||
{
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,7 @@
|
||||
namespace ZDelta;
|
||||
using ZDelta.Data;
|
||||
using ZDelta.Toolchain;
|
||||
|
||||
namespace ZDelta;
|
||||
|
||||
class ZDelta
|
||||
{
|
||||
@@ -10,7 +13,7 @@ class ZDelta
|
||||
Console.WriteLine("operations:");
|
||||
Console.WriteLine(" ZDelta (-h --help)");
|
||||
Console.WriteLine(" ZDelta (-v --version)");
|
||||
Console.WriteLine(" ZDelta (-c --compile) <path>");
|
||||
Console.WriteLine(" ZDelta (-c --compile)");
|
||||
}
|
||||
else if (args[0] == "-v" || args[0] == "--version")
|
||||
{
|
||||
@@ -22,11 +25,6 @@ class ZDelta
|
||||
{
|
||||
Console.WriteLine("Must specify compile path.");
|
||||
}
|
||||
if (!args[1].EndsWith(".z"))
|
||||
{
|
||||
Console.WriteLine("Must be \".z\" file.");
|
||||
return;
|
||||
}
|
||||
Compile(args);
|
||||
}
|
||||
else
|
||||
@@ -37,6 +35,45 @@ class ZDelta
|
||||
|
||||
static void Compile(string[] args)
|
||||
{
|
||||
var fs=getDir(".");
|
||||
var astList=getAsAstTree(fs);
|
||||
var ast = new AstNode("topRoot", "").setChildren(astList);
|
||||
Compiler.compile(ast);
|
||||
|
||||
}
|
||||
|
||||
static FsNode getDir(String dir)
|
||||
{
|
||||
var files = Directory.GetFiles(dir);
|
||||
var directories = Directory.GetDirectories(dir);
|
||||
var node = new FsNode(dir, true, "");
|
||||
foreach (var file in files)
|
||||
{
|
||||
node.addNode(new FsNode(file, false, File.ReadAllText(file)));
|
||||
}
|
||||
|
||||
foreach (var directory in directories)
|
||||
{
|
||||
node.addNode(getDir(directory));
|
||||
}
|
||||
|
||||
return node;
|
||||
}
|
||||
|
||||
static AstNode[] getAsAstTree(FsNode fs)
|
||||
{
|
||||
var ast = new AstNode[0];
|
||||
foreach (var node in fs.getChildren())
|
||||
{
|
||||
if (node.isDirectory())
|
||||
{
|
||||
ast=ast.Append(new AstNode("dir", "").setChildren(getAsAstTree(node))).ToArray();
|
||||
}
|
||||
else
|
||||
{
|
||||
ast=ast.Append(Lexer.Lex(node)).ToArray();
|
||||
}
|
||||
}
|
||||
return ast;
|
||||
}
|
||||
}
|
||||
16
ZDelta/ZDelta.sln.DotSettings.user
Normal file
16
ZDelta/ZDelta.sln.DotSettings.user
Normal file
@@ -0,0 +1,16 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AAppendPrepend_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Ff8ae023a8ce35718f0d91b1fae3c91017ce594370dcfbabac8746af6e6ca_003FAppendPrepend_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AArgumentException_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F91cd9ea146b0b01ac23f87423d971d6bcb1120836a59d9b6bdb9873af8e_003FArgumentException_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AArgumentNullException_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F7fcc41fe48c43f71d1476329de953fce8565fcc5dbf3c8c6fdb81c216b19c4_003FArgumentNullException_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AArgumentOutOfRangeException_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F72e5853ed6f2c1967eff9d6f0cf6ba12744c8978c516cbc5e74d992944ab_003FArgumentOutOfRangeException_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AEncoding_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F67ebf210a4bac0747df5febc8332ccaba90acb21287798fde37a06d8eb942b_003FEncoding_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AFileStreamHelpers_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F38fcfb90f03aac28aa0eeb011baeda171a426f31fab4785791e3a4afb75a2_003FFileStreamHelpers_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AFileStream_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Fb25d397b2262b35562bbb5e860d97a5dfab6d6ed3ac39617f252ad2ce1f3f8_003FFileStream_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AFileSystemEnumerator_002EWindows_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F422299c1e1233f1a20b8c0654281f74792424fe87e29abaf4ecfcd0cd64d718_003FFileSystemEnumerator_002EWindows_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AFile_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Fb2e2ff5e4f118b6e4ad5f910e9fde1fd6a338b5716cff790e934a2014dc8379_003FFile_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AInt32_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Faef21ab35a6576cdcb99a56e6a8c84076d069f09ad1be52cfedaf49ee667855_003FInt32_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AIterator_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Fd5a9d2179b0fd7c3bf9d8cad2b1b85cfd8f51ff3375b4d3fd677eee914cb50_003FIterator_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AObject_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F9a6b1457cbcf17db31a383ba49ef9bcc786cf3ef77146d997eee499b27a46d_003FObject_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AStreamReader_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F6a802af2346a87e430fb66291f320aa22871259d47c2bc928a59f14b42aa34_003FStreamReader_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AString_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003F13e79b2a7b78394ccf591d3454bff5bfb14e692da011a7e38b66c2312b365a_003FString_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AThrowHelper_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003FAppData_003FRoaming_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Fc7da56581ee7b20208f09e80b735961e4d5d7b9e5562bfdec94a75c57b391_003FThrowHelper_002Ecs/@EntryIndexedValue">ForceIncluded</s:String></wpf:ResourceDictionary>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
namespace ZDelta.data;
|
||||
|
||||
public record AssemblyNode(string namespaceID, string text, string data);
|
||||
@@ -1,3 +0,0 @@
|
||||
namespace ZDelta.data;
|
||||
|
||||
public record AstNode(string type, string data, AstNode? child);
|
||||
@@ -1,3 +0,0 @@
|
||||
namespace ZDelta.data;
|
||||
|
||||
public record ZilNode(string namespaceID, string text, string data);
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ZDelta")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+07e8efd979851b07e99f4f403c1c0e82d8ed4640")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9914d345024f290de8c64de72d9c721f4d1dd0f6")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ZDelta")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ZDelta")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
280b5dd1f1d9764e6efc4d2ea3681f9bb68d6a44e1d2b86af44715c4f05c41cb
|
||||
0a8cccd616192721028a911e2148abe80c3a6128cfe24029dd760d27ec4a8f32
|
||||
|
||||
@@ -8,8 +8,6 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ZDelta
|
||||
build_property.ProjectDir = /home/astronand/ZDelta/ZDelta/
|
||||
build_property.ProjectDir = C:\Users\007872181\Projects\ZDelta\ZDelta\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
5d9e140df447de96cce83d61840b1d916386ea01b42a4d56e2f260275236f4c1
|
||||
df0e3fb0948a09a0ed366d4419e7b3939f245c5a4ef14bff3afa8a1d22fc773d
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/astronand/ZDelta/ZDelta/ZDelta.csproj": {}
|
||||
"C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/astronand/ZDelta/ZDelta/ZDelta.csproj": {
|
||||
"C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/astronand/ZDelta/ZDelta/ZDelta.csproj",
|
||||
"projectUniqueName": "C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj",
|
||||
"projectName": "ZDelta",
|
||||
"projectPath": "/home/astronand/ZDelta/ZDelta/ZDelta.csproj",
|
||||
"packagesPath": "/home/astronand/.nuget/packages/",
|
||||
"outputPath": "/home/astronand/ZDelta/ZDelta/obj/",
|
||||
"projectPath": "C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj",
|
||||
"packagesPath": "C:\\Users\\007872181\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/astronand/.nuget/NuGet/NuGet.Config"
|
||||
"C:\\Users\\007872181\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
@@ -37,8 +37,7 @@
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.300"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
@@ -54,26 +53,12 @@
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[8.0.18, 8.0.18]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.linux-x64",
|
||||
"version": "[8.0.18, 8.0.18]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[8.0.18, 8.0.18]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/home/astronand/.dotnet/sdk/9.0.303/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Users\\007872181\\.dotnet\\sdk\\8.0.413/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/astronand/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/astronand/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\007872181\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.2</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/astronand/.nuget/packages/" />
|
||||
<SourceRoot Include="C:\Users\007872181\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -8,19 +8,19 @@
|
||||
"net8.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/astronand/.nuget/packages/": {}
|
||||
"C:\\Users\\007872181\\.nuget\\packages\\": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/astronand/ZDelta/ZDelta/ZDelta.csproj",
|
||||
"projectUniqueName": "C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj",
|
||||
"projectName": "ZDelta",
|
||||
"projectPath": "/home/astronand/ZDelta/ZDelta/ZDelta.csproj",
|
||||
"packagesPath": "/home/astronand/.nuget/packages/",
|
||||
"outputPath": "/home/astronand/ZDelta/ZDelta/obj/",
|
||||
"projectPath": "C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj",
|
||||
"packagesPath": "C:\\Users\\007872181\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/astronand/.nuget/NuGet/NuGet.Config"
|
||||
"C:\\Users\\007872181\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
@@ -43,8 +43,7 @@
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.300"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
@@ -60,26 +59,12 @@
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[8.0.18, 8.0.18]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.linux-x64",
|
||||
"version": "[8.0.18, 8.0.18]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[8.0.18, 8.0.18]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/home/astronand/.dotnet/sdk/9.0.303/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Users\\007872181\\.dotnet\\sdk\\8.0.413/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "b9BQBk0WL2c=",
|
||||
"dgSpecHash": "pjNyVwo5KXc=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/astronand/ZDelta/ZDelta/ZDelta.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/astronand/.nuget/packages/microsoft.netcore.app.ref/8.0.18/microsoft.netcore.app.ref.8.0.18.nupkg.sha512",
|
||||
"/home/astronand/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.18/microsoft.aspnetcore.app.ref.8.0.18.nupkg.sha512",
|
||||
"/home/astronand/.nuget/packages/microsoft.netcore.app.host.linux-x64/8.0.18/microsoft.netcore.app.host.linux-x64.8.0.18.nupkg.sha512"
|
||||
],
|
||||
"projectFilePath": "C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
@@ -1 +1 @@
|
||||
"restore":{"projectUniqueName":"/home/astronand/ZDelta/ZDelta/ZDelta.csproj","projectName":"ZDelta","projectPath":"/home/astronand/ZDelta/ZDelta/ZDelta.csproj","outputPath":"/home/astronand/ZDelta/ZDelta/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.AspNetCore.App.Ref","version":"[8.0.18, 8.0.18]"},{"name":"Microsoft.NETCore.App.Host.linux-x64","version":"[8.0.18, 8.0.18]"},{"name":"Microsoft.NETCore.App.Ref","version":"[8.0.18, 8.0.18]"}],"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/astronand/.dotnet/sdk/9.0.303/PortableRuntimeIdentifierGraph.json"}}
|
||||
"restore":{"projectUniqueName":"C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj","projectName":"ZDelta","projectPath":"C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\ZDelta.csproj","outputPath":"C:\\Users\\007872181\\Projects\\ZDelta\\ZDelta\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\007872181\\.dotnet\\sdk\\8.0.413/PortableRuntimeIdentifierGraph.json"}}
|
||||
@@ -1 +1 @@
|
||||
17579694886293357
|
||||
17580225686570976
|
||||
@@ -1 +1 @@
|
||||
17579695517658126
|
||||
17580225686570976
|
||||
7
data/arch/a16.zi
Normal file
7
data/arch/a16.zi
Normal file
@@ -0,0 +1,7 @@
|
||||
.class public LWC33 {
|
||||
.method public static sendSerial(){
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
Reference in New Issue
Block a user