1 files changed, 27 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>
|