2 files changed, 0 insertions, 39 deletions
diff --git a/ConsoleApp1/ConsoleApp1.csproj b/ConsoleApp1/ConsoleApp1.csproj
deleted file mode 100644
index f30d408..0000000
--- a/ConsoleApp1/ConsoleApp1.csproj
+++ /dev/null
@@ -1,14 +0,0 @@
-<Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\LibMatrix.EventTypes\LibMatrix.EventTypes.csproj" />
- </ItemGroup>
-
-</Project>
diff --git a/ConsoleApp1/Program.cs b/ConsoleApp1/Program.cs
deleted file mode 100644
index 7831ce8..0000000
--- a/ConsoleApp1/Program.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-// See https://aka.ms/new-console-template for more information
-
-using LibMatrix.EventTypes;
-using LibMatrix.EventTypes.Events;
-
-Console.WriteLine("Hello, World!");
-
-MatrixEventCollection collection = new();
-collection.Add(new MatrixEvent<RoomMembershipEventContent>() {
- Content = new RoomMembershipEventContent() {
- Membership = "yes"
- }
-});
-
-List<MatrixEvent<MatrixEventContent>> collection2 = new();
-collection2.Add(new MatrixEvent<RoomMembershipEventContent>() {
- Content = new RoomMembershipEventContent() {
- Membership = "yes"
- }
-});
-
-List<MatrixEventContent> collection3 = new();
-collection3.Add(new RoomMembershipEventContent() {
- Membership = "yes"
-});
\ No newline at end of file
|