now it's not a single project, but a solution
This commit is contained in:
89
TestProgram/DtsodV2X/TestDtsodV23.cs
Normal file
89
TestProgram/DtsodV2X/TestDtsodV23.cs
Normal file
@@ -0,0 +1,89 @@
|
||||
using System.Threading;
|
||||
using DTLib.Dtsod;
|
||||
using DTLib.Experimental;
|
||||
using static TestProgram.Program;
|
||||
|
||||
namespace TestProgram.DtsodV2X;
|
||||
|
||||
public static class TestDtsodV23
|
||||
{
|
||||
public static void TestAll()
|
||||
{
|
||||
TestBaseTypes();
|
||||
TestLists();
|
||||
TestComplexes();
|
||||
TestReSerialization();
|
||||
TestSpeed();
|
||||
TestMemoryConsumption();
|
||||
}
|
||||
|
||||
public static void TestBaseTypes()
|
||||
{
|
||||
Info.Log("b", "[TestDtsodV23/TestBaseTypes]");
|
||||
DtsodV23 dtsod = new(File.ReadAllText("DtsodV2X\\base_types.dtsod"));
|
||||
foreach (var pair in dtsod)
|
||||
Info.LogNoTime("b", pair.Value.GetType().Name + ' ', "w", pair.Key + ' ', "c", pair.Value.ToString());
|
||||
Info.Log("g", "[test completed]");
|
||||
}
|
||||
public static void TestLists()
|
||||
{
|
||||
Info.Log("b", "[TestDtsodV23/TestLists]");
|
||||
DtsodV23 dtsod = new(File.ReadAllText("DtsodV2X\\lists.dtsod"));
|
||||
foreach (var pair in dtsod)
|
||||
{
|
||||
Info.LogNoTime("b", pair.Value.GetType().Name + ' ', "w", pair.Key, "c",
|
||||
$" count: {pair.Value.Count}");
|
||||
foreach (var el in pair.Value)
|
||||
Info.LogNoTime("b", '\t'+el.GetType().Name + ' ', "c", el.ToString());
|
||||
}
|
||||
Info.Log("g", "[test completed]");
|
||||
}
|
||||
|
||||
public static void TestComplexes()
|
||||
{
|
||||
Info.Log("b", "[TestDtsodV23/TestComplexes]");
|
||||
DtsodV23 dtsod = new(File.ReadAllText("DtsodV2X\\complexes.dtsod"));
|
||||
foreach (var pair in dtsod)
|
||||
{
|
||||
Info.LogNoTime("b", pair.Value.GetType().Name + ' ', "w", pair.Key,
|
||||
"b", " length: ", "c", pair.Value.Keys.Count.ToString() + "\n\t",
|
||||
"y", pair.Value.ToString().Replace("\n","\n\t"));
|
||||
}
|
||||
Info.Log("g", "[test completed]");
|
||||
}
|
||||
|
||||
public static void TestReSerialization()
|
||||
{
|
||||
Info.Log("b", "[TestDtsodV23/TestReSerialization]");
|
||||
DtsodV23 dtsod = new DtsodV23(new DtsodV23(new DtsodV23(
|
||||
new DtsodV23(File.ReadAllText("DtsodV2X\\complexes.dtsod")).ToString()).ToString()).ToString());
|
||||
Info.Log("y", dtsod.ToString());
|
||||
Info.Log("g", "[test completed]");
|
||||
}
|
||||
|
||||
public static void TestSpeed()
|
||||
{
|
||||
Info.Log("b", "[TestDtsodV23/TestSpeed]");
|
||||
IDtsod dtsod=null;
|
||||
string text = File.ReadAllText("DtsodV2X\\messages.dtsod");
|
||||
Tester.LogOperationTime("V21 deserialization",100,()=>dtsod=new DtsodV21(text));
|
||||
Tester.LogOperationTime("V21 serialization", 100, () => _=dtsod.ToString());
|
||||
Tester.LogOperationTime("V23 deserialization", 100, () => dtsod = new DtsodV23(text));
|
||||
Tester.LogOperationTime("V23 serialization", 100, () => _ = dtsod.ToString());
|
||||
Info.Log("g", "[test completed]");
|
||||
}
|
||||
|
||||
public static void TestMemoryConsumption()
|
||||
{
|
||||
Info.Log("b", "[TestDtsodV23/TestMemoryConsumption]");
|
||||
string text = File.ReadAllText("DtsodV2X\\messages.dtsod");
|
||||
var a = GC.GetTotalMemory(true);
|
||||
DtsodV23[] dtsods = new DtsodV23[100];
|
||||
for (int i = 0; i < dtsods.Length; i++)
|
||||
dtsods[i] = new(text);
|
||||
var b = GC.GetTotalMemory(true);
|
||||
Info.Log("b", "at the start: ","c",$"{a/1024} kb\n",
|
||||
"b", "at the end: ", "c", $"{b / 1024} kb\n{dtsods.Count()}","b"," dtsods initialized");
|
||||
Info.Log("g", "[test completed]");
|
||||
}
|
||||
}
|
||||
14
TestProgram/DtsodV2X/base_types.dtsod
Normal file
14
TestProgram/DtsodV2X/base_types.dtsod
Normal file
@@ -0,0 +1,14 @@
|
||||
bool: false;
|
||||
char: 'v';
|
||||
byte: 255b;
|
||||
sbyte: -125sb;
|
||||
short: 14003s;
|
||||
ushort: 32025us;
|
||||
int: -2515;
|
||||
uint: 0u;
|
||||
long: -29863854396l;
|
||||
ulong: 87659057946ul;
|
||||
float: 39.944f;
|
||||
double: 965.557;
|
||||
decimal: -84.20de;
|
||||
string: "_$\"\\\\'''\n\ta ûûû000;2;=:%d;```";
|
||||
9
TestProgram/DtsodV2X/complexes.dtsod
Normal file
9
TestProgram/DtsodV2X/complexes.dtsod
Normal file
@@ -0,0 +1,9 @@
|
||||
message:
|
||||
{
|
||||
type: "sent";
|
||||
time: "15.12.2021 20:51:24 +03:00";
|
||||
author_id: 293798876950036480ul;
|
||||
channel_id: 913088838761603212ul;
|
||||
message_id: 920734809096077353ul;
|
||||
text: "_$\"\\\\'''\n\ta ыыы000;2;=:%d;```";
|
||||
};
|
||||
4
TestProgram/DtsodV2X/lists.dtsod
Normal file
4
TestProgram/DtsodV2X/lists.dtsod
Normal file
@@ -0,0 +1,4 @@
|
||||
chars: ['a','b','c'];
|
||||
uints: [10,20,30,0,0];
|
||||
floats: [8.2,5.225,-0.9993];
|
||||
strings:["aaa","bbb","ccc"];
|
||||
1952
TestProgram/DtsodV2X/messages.dtsod
Normal file
1952
TestProgram/DtsodV2X/messages.dtsod
Normal file
File diff suppressed because it is too large
Load Diff
1
TestProgram/DtsodV2X/null.dtsod
Normal file
1
TestProgram/DtsodV2X/null.dtsod
Normal file
@@ -0,0 +1 @@
|
||||
nullable:null;
|
||||
14
TestProgram/DtsodV30/base_types.dtsod
Normal file
14
TestProgram/DtsodV30/base_types.dtsod
Normal file
@@ -0,0 +1,14 @@
|
||||
bool:b=false;
|
||||
char:c='v';
|
||||
string:s="hello";
|
||||
byte:by=255;
|
||||
sbyte:sb=-125;
|
||||
short:sh=14003;
|
||||
ushort:us=32025;
|
||||
int:i=-2515;
|
||||
uint:ui=0;
|
||||
long:l=-29863854396;
|
||||
ulong:ul=87659057946;
|
||||
float:f=39.944;
|
||||
double:do=965.557;
|
||||
decimal:de=-84.20;
|
||||
1
TestProgram/DtsodV30/enumerables.dtsod
Normal file
1
TestProgram/DtsodV30/enumerables.dtsod
Normal file
@@ -0,0 +1 @@
|
||||
List<string>:list=[string:"a",string:"b"];
|
||||
36
TestProgram/Program.cs
Normal file
36
TestProgram/Program.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
global using System;
|
||||
global using System.Collections;
|
||||
global using System.Collections.Generic;
|
||||
global using System.Linq;
|
||||
global using System.Text;
|
||||
global using System.Threading.Tasks;
|
||||
global using DTLib;
|
||||
global using DTLib.Extensions;
|
||||
global using DTLib.Filesystem;
|
||||
using DTLib.Dtsod;
|
||||
using DTLib.Loggers;
|
||||
using TestProgram.DtsodV2X;
|
||||
|
||||
namespace TestProgram;
|
||||
|
||||
static class Program
|
||||
{
|
||||
public static DefaultLogger Info = new();
|
||||
static public void Main()
|
||||
{
|
||||
|
||||
Info.Enable();
|
||||
PublicLog.LogEvent += Info.Log;
|
||||
PublicLog.LogNoTimeEvent += Info.LogNoTime;
|
||||
Console.OutputEncoding = Encoding.UTF8;
|
||||
Console.InputEncoding = Encoding.UTF8;
|
||||
Console.Title="tester";
|
||||
try
|
||||
{
|
||||
TestDtsodV23.TestAll();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{ Info.Log("r", ex.ToString()); }
|
||||
Console.ResetColor();
|
||||
}
|
||||
}
|
||||
24
TestProgram/TestProgram.csproj
Normal file
24
TestProgram/TestProgram.csproj
Normal file
@@ -0,0 +1,24 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>false</ImplicitUsings>
|
||||
<Nullable>disable</Nullable>
|
||||
<DebugType>portable</DebugType>
|
||||
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<StartupObject>TestProgram.Program</StartupObject>
|
||||
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DTLib\DTLib.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Update="DtsodV2X\*">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Update="DtsodV30\*">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
BIN
TestProgram/bin/Debug/net6.0/DTLib.dll
Normal file
BIN
TestProgram/bin/Debug/net6.0/DTLib.dll
Normal file
Binary file not shown.
BIN
TestProgram/bin/Debug/net6.0/DTLib.pdb
Normal file
BIN
TestProgram/bin/Debug/net6.0/DTLib.pdb
Normal file
Binary file not shown.
14
TestProgram/bin/Debug/net6.0/DtsodV2X/base_types.dtsod
Normal file
14
TestProgram/bin/Debug/net6.0/DtsodV2X/base_types.dtsod
Normal file
@@ -0,0 +1,14 @@
|
||||
bool: false;
|
||||
char: 'v';
|
||||
byte: 255b;
|
||||
sbyte: -125sb;
|
||||
short: 14003s;
|
||||
ushort: 32025us;
|
||||
int: -2515;
|
||||
uint: 0u;
|
||||
long: -29863854396l;
|
||||
ulong: 87659057946ul;
|
||||
float: 39.944f;
|
||||
double: 965.557;
|
||||
decimal: -84.20de;
|
||||
string: "_$\"\\\\'''\n\ta ûûû000;2;=:%d;```";
|
||||
9
TestProgram/bin/Debug/net6.0/DtsodV2X/complexes.dtsod
Normal file
9
TestProgram/bin/Debug/net6.0/DtsodV2X/complexes.dtsod
Normal file
@@ -0,0 +1,9 @@
|
||||
message:
|
||||
{
|
||||
type: "sent";
|
||||
time: "15.12.2021 20:51:24 +03:00";
|
||||
author_id: 293798876950036480ul;
|
||||
channel_id: 913088838761603212ul;
|
||||
message_id: 920734809096077353ul;
|
||||
text: "_$\"\\\\'''\n\ta ыыы000;2;=:%d;```";
|
||||
};
|
||||
4
TestProgram/bin/Debug/net6.0/DtsodV2X/lists.dtsod
Normal file
4
TestProgram/bin/Debug/net6.0/DtsodV2X/lists.dtsod
Normal file
@@ -0,0 +1,4 @@
|
||||
chars: ['a','b','c'];
|
||||
uints: [10,20,30,0,0];
|
||||
floats: [8.2,5.225,-0.9993];
|
||||
strings:["aaa","bbb","ccc"];
|
||||
1952
TestProgram/bin/Debug/net6.0/DtsodV2X/messages.dtsod
Normal file
1952
TestProgram/bin/Debug/net6.0/DtsodV2X/messages.dtsod
Normal file
File diff suppressed because it is too large
Load Diff
1
TestProgram/bin/Debug/net6.0/DtsodV2X/null.dtsod
Normal file
1
TestProgram/bin/Debug/net6.0/DtsodV2X/null.dtsod
Normal file
@@ -0,0 +1 @@
|
||||
nullable:null;
|
||||
14
TestProgram/bin/Debug/net6.0/DtsodV30/base_types.dtsod
Normal file
14
TestProgram/bin/Debug/net6.0/DtsodV30/base_types.dtsod
Normal file
@@ -0,0 +1,14 @@
|
||||
bool:b=false;
|
||||
char:c='v';
|
||||
string:s="hello";
|
||||
byte:by=255;
|
||||
sbyte:sb=-125;
|
||||
short:sh=14003;
|
||||
ushort:us=32025;
|
||||
int:i=-2515;
|
||||
uint:ui=0;
|
||||
long:l=-29863854396;
|
||||
ulong:ul=87659057946;
|
||||
float:f=39.944;
|
||||
double:do=965.557;
|
||||
decimal:de=-84.20;
|
||||
1
TestProgram/bin/Debug/net6.0/DtsodV30/enumerables.dtsod
Normal file
1
TestProgram/bin/Debug/net6.0/DtsodV30/enumerables.dtsod
Normal file
@@ -0,0 +1 @@
|
||||
List<string>:list=[string:"a",string:"b"];
|
||||
36
TestProgram/bin/Debug/net6.0/TestProgram.deps.json
Normal file
36
TestProgram/bin/Debug/net6.0/TestProgram.deps.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"TestProgram/1.0.0": {
|
||||
"dependencies": {
|
||||
"DTLib": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"TestProgram.dll": {}
|
||||
}
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"runtime": {
|
||||
"DTLib.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestProgram/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestProgram/bin/Debug/net6.0/TestProgram.dll
Normal file
BIN
TestProgram/bin/Debug/net6.0/TestProgram.dll
Normal file
Binary file not shown.
BIN
TestProgram/bin/Debug/net6.0/TestProgram.exe
Normal file
BIN
TestProgram/bin/Debug/net6.0/TestProgram.exe
Normal file
Binary file not shown.
BIN
TestProgram/bin/Debug/net6.0/TestProgram.pdb
Normal file
BIN
TestProgram/bin/Debug/net6.0/TestProgram.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestProgram/bin/Release/net6.0/DTLib.dll
Normal file
BIN
TestProgram/bin/Release/net6.0/DTLib.dll
Normal file
Binary file not shown.
BIN
TestProgram/bin/Release/net6.0/DTLib.pdb
Normal file
BIN
TestProgram/bin/Release/net6.0/DTLib.pdb
Normal file
Binary file not shown.
14
TestProgram/bin/Release/net6.0/DtsodV2X/base_types.dtsod
Normal file
14
TestProgram/bin/Release/net6.0/DtsodV2X/base_types.dtsod
Normal file
@@ -0,0 +1,14 @@
|
||||
bool: false;
|
||||
char: 'v';
|
||||
byte: 255b;
|
||||
sbyte: -125sb;
|
||||
short: 14003s;
|
||||
ushort: 32025us;
|
||||
int: -2515;
|
||||
uint: 0u;
|
||||
long: -29863854396l;
|
||||
ulong: 87659057946ul;
|
||||
float: 39.944f;
|
||||
double: 965.557;
|
||||
decimal: -84.20de;
|
||||
string: "_$\"\\\\'''\n\ta ûûû000;2;=:%d;```";
|
||||
9
TestProgram/bin/Release/net6.0/DtsodV2X/complexes.dtsod
Normal file
9
TestProgram/bin/Release/net6.0/DtsodV2X/complexes.dtsod
Normal file
@@ -0,0 +1,9 @@
|
||||
message:
|
||||
{
|
||||
type: "sent";
|
||||
time: "15.12.2021 20:51:24 +03:00";
|
||||
author_id: 293798876950036480ul;
|
||||
channel_id: 913088838761603212ul;
|
||||
message_id: 920734809096077353ul;
|
||||
text: "_$\"\\\\'''\n\ta ыыы000;2;=:%d;```";
|
||||
};
|
||||
4
TestProgram/bin/Release/net6.0/DtsodV2X/lists.dtsod
Normal file
4
TestProgram/bin/Release/net6.0/DtsodV2X/lists.dtsod
Normal file
@@ -0,0 +1,4 @@
|
||||
chars: ['a','b','c'];
|
||||
uints: [10,20,30,0,0];
|
||||
floats: [8.2,5.225,-0.9993];
|
||||
strings:["aaa","bbb","ccc"];
|
||||
1952
TestProgram/bin/Release/net6.0/DtsodV2X/messages.dtsod
Normal file
1952
TestProgram/bin/Release/net6.0/DtsodV2X/messages.dtsod
Normal file
File diff suppressed because it is too large
Load Diff
1
TestProgram/bin/Release/net6.0/DtsodV2X/null.dtsod
Normal file
1
TestProgram/bin/Release/net6.0/DtsodV2X/null.dtsod
Normal file
@@ -0,0 +1 @@
|
||||
nullable:null;
|
||||
14
TestProgram/bin/Release/net6.0/DtsodV30/base_types.dtsod
Normal file
14
TestProgram/bin/Release/net6.0/DtsodV30/base_types.dtsod
Normal file
@@ -0,0 +1,14 @@
|
||||
bool:b=false;
|
||||
char:c='v';
|
||||
string:s="hello";
|
||||
byte:by=255;
|
||||
sbyte:sb=-125;
|
||||
short:sh=14003;
|
||||
ushort:us=32025;
|
||||
int:i=-2515;
|
||||
uint:ui=0;
|
||||
long:l=-29863854396;
|
||||
ulong:ul=87659057946;
|
||||
float:f=39.944;
|
||||
double:do=965.557;
|
||||
decimal:de=-84.20;
|
||||
@@ -0,0 +1 @@
|
||||
List<string>:list=[string:"a",string:"b"];
|
||||
36
TestProgram/bin/Release/net6.0/TestProgram.deps.json
Normal file
36
TestProgram/bin/Release/net6.0/TestProgram.deps.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"TestProgram/1.0.0": {
|
||||
"dependencies": {
|
||||
"DTLib": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"TestProgram.dll": {}
|
||||
}
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"runtime": {
|
||||
"DTLib.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestProgram/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestProgram/bin/Release/net6.0/TestProgram.dll
Normal file
BIN
TestProgram/bin/Release/net6.0/TestProgram.dll
Normal file
Binary file not shown.
BIN
TestProgram/bin/Release/net6.0/TestProgram.exe
Normal file
BIN
TestProgram/bin/Release/net6.0/TestProgram.exe
Normal file
Binary file not shown.
BIN
TestProgram/bin/Release/net6.0/TestProgram.pdb
Normal file
BIN
TestProgram/bin/Release/net6.0/TestProgram.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
||||
23
TestProgram/obj/Debug/net6.0/TestProgram.AssemblyInfo.cs
Normal file
23
TestProgram/obj/Debug/net6.0/TestProgram.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Создано классом WriteCodeFragment MSBuild.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
50807496b7e03e652e948152d6f734ad8f046635
|
||||
@@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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 = TestProgram
|
||||
build_property.ProjectDir = C:\projects\c#\DTLib\TestProgram\
|
||||
BIN
TestProgram/obj/Debug/net6.0/TestProgram.assets.cache
Normal file
BIN
TestProgram/obj/Debug/net6.0/TestProgram.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
3fc818a7aa42b85417b1a9a4ad4c679fab7ccd44
|
||||
@@ -0,0 +1,23 @@
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.csproj.AssemblyReference.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.AssemblyInfoInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.AssemblyInfo.cs
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.csproj.CoreCompileInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.exe
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\lists.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\null.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV30\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV30\enumerables.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.deps.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.runtimeconfig.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DTLib.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DTLib.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.csproj.CopyComplete
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.genruntimeconfig.cache
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\complexes.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\messages.dtsod
|
||||
BIN
TestProgram/obj/Debug/net6.0/TestProgram.dll
Normal file
BIN
TestProgram/obj/Debug/net6.0/TestProgram.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
110b26956cec2db2147da1aac6de7fa6068aaf46
|
||||
BIN
TestProgram/obj/Debug/net6.0/TestProgram.pdb
Normal file
BIN
TestProgram/obj/Debug/net6.0/TestProgram.pdb
Normal file
Binary file not shown.
BIN
TestProgram/obj/Debug/net6.0/apphost.exe
Normal file
BIN
TestProgram/obj/Debug/net6.0/apphost.exe
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
||||
23
TestProgram/obj/Release/net6.0/TestProgram.AssemblyInfo.cs
Normal file
23
TestProgram/obj/Release/net6.0/TestProgram.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Создано классом WriteCodeFragment MSBuild.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
71e6ecd41e783a12c9404d0d3374ab8ceaa08da7
|
||||
@@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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 = TestProgram
|
||||
build_property.ProjectDir = C:\projects\c#\DTLib\TestProgram\
|
||||
BIN
TestProgram/obj/Release/net6.0/TestProgram.assets.cache
Normal file
BIN
TestProgram/obj/Release/net6.0/TestProgram.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
5e6dd8cc15282ea6ffd0b1be64a0c8a01cbd1096
|
||||
@@ -0,0 +1,23 @@
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.exe
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\complexes.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\lists.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\null.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV30\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV30\enumerables.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.deps.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.runtimeconfig.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DTLib.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DTLib.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.csproj.AssemblyReference.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.AssemblyInfoInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.AssemblyInfo.cs
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.csproj.CoreCompileInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.csproj.CopyComplete
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.genruntimeconfig.cache
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\messages.dtsod
|
||||
BIN
TestProgram/obj/Release/net6.0/TestProgram.dll
Normal file
BIN
TestProgram/obj/Release/net6.0/TestProgram.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
f5c54d1bbfc32c8da26a865a6c9552c5a9c60697
|
||||
BIN
TestProgram/obj/Release/net6.0/TestProgram.pdb
Normal file
BIN
TestProgram/obj/Release/net6.0/TestProgram.pdb
Normal file
Binary file not shown.
BIN
TestProgram/obj/Release/net6.0/apphost.exe
Normal file
BIN
TestProgram/obj/Release/net6.0/apphost.exe
Normal file
Binary file not shown.
130
TestProgram/obj/TestProgram.csproj.nuget.dgspec.json
Normal file
130
TestProgram/obj/TestProgram.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj",
|
||||
"projectName": "DTLib",
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj",
|
||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\projects\\c#\\DTLib\\DTLib\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\User\\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": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200-preview.21617.4\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"projectName": "TestProgram",
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\projects\\c#\\DTLib\\TestProgram\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\User\\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": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {
|
||||
"C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj": {
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200-preview.21617.4\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
TestProgram/obj/TestProgram.csproj.nuget.g.props
Normal file
16
TestProgram/obj/TestProgram.csproj.nuget.g.props
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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\User\.nuget\packages\;C:\Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\User\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
2
TestProgram/obj/TestProgram.csproj.nuget.g.targets
Normal file
2
TestProgram/obj/TestProgram.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
96
TestProgram/obj/project.assets.json
Normal file
96
TestProgram/obj/project.assets.json
Normal file
@@ -0,0 +1,96 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0": {
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v6.0",
|
||||
"compile": {
|
||||
"bin/placeholder/DTLib.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/DTLib.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../DTLib/DTLib.csproj",
|
||||
"msbuildProject": "../DTLib/DTLib.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0": [
|
||||
"DTLib >= 1.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\User\\.nuget\\packages\\": {},
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"projectName": "TestProgram",
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\projects\\c#\\DTLib\\TestProgram\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\User\\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": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {
|
||||
"C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj": {
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200-preview.21617.4\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
TestProgram/obj/project.nuget.cache
Normal file
8
TestProgram/obj/project.nuget.cache
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "XCSzHHOsQOko9mWN0tNtEKNCXf6qWGfWV8L1vM6F+eo4bY1LXQfp5Pnx8uTxl6nI5peW8Qj5d6BNh3WIQUSxMw==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user