about summary refs log tree commit diff
path: root/MatrixRoomUtils.Bot
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Bot')
-rw-r--r--MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj27
-rw-r--r--MatrixRoomUtils.Bot/Program.cs2
2 files changed, 29 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj b/MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj
new file mode 100644
index 0000000..8ff14c4
--- /dev/null
+++ b/MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj
@@ -0,0 +1,27 @@
+<Project Sdk="Microsoft.NET.Sdk">

+

+  <PropertyGroup>

+    <OutputType>Exe</OutputType>

+    <TargetFramework>net8.0</TargetFramework>

+    <LangVersion>preview</LangVersion>

+    <ImplicitUsings>enable</ImplicitUsings>

+    <Nullable>enable</Nullable>

+    <PublishAot>true</PublishAot>

+    <InvariantGlobalization>true</InvariantGlobalization>

+    <PublishTrimmed>true</PublishTrimmed>

+    <PublishReadyToRun>true</PublishReadyToRun>

+    <PublishSingleFile>true</PublishSingleFile>

+    <PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>

+    <PublishTrimmedShowLinkerSizeComparison>true</PublishTrimmedShowLinkerSizeComparison>

+    <PublishTrimmedShowLinkerSizeComparisonWarnings>true</PublishTrimmedShowLinkerSizeComparisonWarnings>

+  </PropertyGroup>

+

+  <ItemGroup>

+    <ProjectReference Include="..\MatrixRoomUtils.Core\MatrixRoomUtils.Core.csproj" />

+  </ItemGroup>

+  

+  <ItemGroup>

+    <PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />

+  </ItemGroup>

+

+</Project>

diff --git a/MatrixRoomUtils.Bot/Program.cs b/MatrixRoomUtils.Bot/Program.cs
new file mode 100644
index 0000000..83fa4f4
--- /dev/null
+++ b/MatrixRoomUtils.Bot/Program.cs
@@ -0,0 +1,2 @@
+// See https://aka.ms/new-console-template for more information

+Console.WriteLine("Hello, World!");