about summary refs log tree commit diff
path: root/LibMatrix.ExampleBot/LibMatrix.ExampleBot.csproj
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-08-14 04:26:27 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-08-14 04:26:27 +0200
commit8fdc48e5b21b1eea61534b181585858727500f34 (patch)
tree71cc2655ca1e2b5556c2c7c1ad550c5df6b499ef /LibMatrix.ExampleBot/LibMatrix.ExampleBot.csproj
parentSplit LibMatrix into separate repo (diff)
downloadLibMatrix-8fdc48e5b21b1eea61534b181585858727500f34.tar.xz
Move more projects over
Diffstat (limited to 'LibMatrix.ExampleBot/LibMatrix.ExampleBot.csproj')
-rw-r--r--LibMatrix.ExampleBot/LibMatrix.ExampleBot.csproj32
1 files changed, 32 insertions, 0 deletions
diff --git a/LibMatrix.ExampleBot/LibMatrix.ExampleBot.csproj b/LibMatrix.ExampleBot/LibMatrix.ExampleBot.csproj
new file mode 100644
index 0000000..03a3f0b
--- /dev/null
+++ b/LibMatrix.ExampleBot/LibMatrix.ExampleBot.csproj
@@ -0,0 +1,32 @@
+<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>

+    <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" Version="1.0.0-preview3020494760.012ed3f" />

+    <PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0-preview.5.23280.8" />

+  </ItemGroup>

+  <ItemGroup>

+    <Content Include="appsettings*.json">

+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>

+    </Content>

+  </ItemGroup>

+</Project>