about summary refs log tree commit diff
path: root/MiniUtils/MiniUtils.csproj
blob: 5ac38cb3a3bcf0afd71f0a43c825c06da4eb3bb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk.Worker">

    <PropertyGroup>
        <TargetFramework>net10.0</TargetFramework>
        <Nullable>enable</Nullable>
        <ImplicitUsings>enable</ImplicitUsings>
    </PropertyGroup>

    <PropertyGroup Condition="'$(Configuration)' == 'Release'">
        <Optimize>true</Optimize>
<!--        <RunAOTCompilation>true</RunAOTCompilation>-->
<!--        <PublishTrimmed>true</PublishTrimmed>-->
        <PublishSingleFile>true</PublishSingleFile>
    </PropertyGroup>

    <ItemGroup>
        <PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0-rc.2.25502.107" />
    </ItemGroup>

    <ItemGroup>
      <ProjectReference Include="..\LibMatrix\Utilities\LibMatrix.Utilities.Bot\LibMatrix.Utilities.Bot.csproj" />
      <ProjectReference Include="..\MiniUtils.Core\MiniUtils.Core.csproj" />
    </ItemGroup>
</Project>