diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-06-18 07:03:47 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-06-18 07:04:00 +0200 |
commit | d4f46b4fb6dfd2672a5205ec9de12050a940f56c (patch) | |
tree | 90be2b959a41148da84aaffbb1b0a1163aa3288e /MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj | |
parent | Start refactor (diff) | |
download | MatrixUtils-d4f46b4fb6dfd2672a5205ec9de12050a940f56c.tar.xz |
Partial refactor
Diffstat (limited to 'MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj')
-rw-r--r-- | MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj | 27 |
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> |