diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2024-01-11 18:40:42 +0000 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2024-01-11 18:40:42 +0000 |
commit | a481bead16d904da8ad4d6de8d1a8ab006460b31 (patch) | |
tree | 247eda7886d12f667ba34060121f262494e51952 /Utilities/LibMatrix.DevTestBot/LibMatrix.DevTestBot.csproj | |
parent | Cleanup, more message formatters, messagebuilder start (diff) | |
download | LibMatrix-a481bead16d904da8ad4d6de8d1a8ab006460b31.tar.xz |
Dev test bot
Diffstat (limited to 'Utilities/LibMatrix.DevTestBot/LibMatrix.DevTestBot.csproj')
-rw-r--r-- | Utilities/LibMatrix.DevTestBot/LibMatrix.DevTestBot.csproj | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Utilities/LibMatrix.DevTestBot/LibMatrix.DevTestBot.csproj b/Utilities/LibMatrix.DevTestBot/LibMatrix.DevTestBot.csproj new file mode 100644 index 0000000..c0be661 --- /dev/null +++ b/Utilities/LibMatrix.DevTestBot/LibMatrix.DevTestBot.csproj @@ -0,0 +1,33 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net8.0</TargetFramework> + <LangVersion>preview</LangVersion> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + <PublishAot>false</PublishAot> + <InvariantGlobalization>true</InvariantGlobalization> + <RootNamespace>LibMatrix.ExampleBot</RootNamespace> +<!-- <PublishTrimmed>true</PublishTrimmed>--> +<!-- <PublishReadyToRun>true</PublishReadyToRun>--> +<!-- <PublishSingleFile>true</PublishSingleFile>--> +<!-- <PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>--> +<!-- <PublishTrimmedShowLinkerSizeComparison>true</PublishTrimmedShowLinkerSizeComparison>--> +<!-- <PublishTrimmedShowLinkerSizeComparisonWarnings>true</PublishTrimmedShowLinkerSizeComparisonWarnings>--> + </PropertyGroup> + + <ItemGroup> + <ProjectReference Include="..\..\LibMatrix\LibMatrix.csproj" /> + </ItemGroup> + + <ItemGroup> + <PackageReference Include="ArcaneLibs.StringNormalisation" Version="1.0.0-preview7205256004.28c0e5a" /> + <PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> + </ItemGroup> + <ItemGroup> + <Content Include="appsettings*.json"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> + </ItemGroup> +</Project> |