From 917c2b30592f3429fc9e3e33450f96de4d103a61 Mon Sep 17 00:00:00 2001 From: Filip Strajnar Date: Thu, 23 May 2024 13:53:03 +0200 Subject: [PATCH] Added project for data structures. --- AioNet.DataStructures/AioNet.DataStructures.csproj | 7 +++++++ AioNet.DataStructures/Matrix.cs | 6 ++++++ AioNet.sln | 6 ++++++ 3 files changed, 19 insertions(+) create mode 100644 AioNet.DataStructures/AioNet.DataStructures.csproj create mode 100644 AioNet.DataStructures/Matrix.cs diff --git a/AioNet.DataStructures/AioNet.DataStructures.csproj b/AioNet.DataStructures/AioNet.DataStructures.csproj new file mode 100644 index 0000000..939a2ed --- /dev/null +++ b/AioNet.DataStructures/AioNet.DataStructures.csproj @@ -0,0 +1,7 @@ + + + + netstandard2.0 + + + diff --git a/AioNet.DataStructures/Matrix.cs b/AioNet.DataStructures/Matrix.cs new file mode 100644 index 0000000..77cb5f4 --- /dev/null +++ b/AioNet.DataStructures/Matrix.cs @@ -0,0 +1,6 @@ +namespace AioNet.DataStructures; + +public static class Matrix +{ + +} diff --git a/AioNet.sln b/AioNet.sln index c5bdfc3..0f6a1e6 100644 --- a/AioNet.sln +++ b/AioNet.sln @@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.Reflection", "AioNet EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.ReflectionTest", "AioNet.ReflectionTest\AioNet.ReflectionTest.csproj", "{BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.DataStructures", "AioNet.DataStructures\AioNet.DataStructures.csproj", "{B01D15CD-8894-4019-831F-DF1B0850C614}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -36,5 +38,9 @@ Global {BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}.Debug|Any CPU.Build.0 = Debug|Any CPU {BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}.Release|Any CPU.ActiveCfg = Release|Any CPU {BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}.Release|Any CPU.Build.0 = Release|Any CPU + {B01D15CD-8894-4019-831F-DF1B0850C614}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B01D15CD-8894-4019-831F-DF1B0850C614}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B01D15CD-8894-4019-831F-DF1B0850C614}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B01D15CD-8894-4019-831F-DF1B0850C614}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal