forked from discord-csharp/MODiX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModix.Bot.csproj
More file actions
26 lines (26 loc) · 1.2 KB
/
Modix.Bot.csproj
File metadata and controls
26 lines (26 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Humanizer.Core" />
<PackageReference Include="MediatR" Version="12.4.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.Extensions.Http" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="LZStringCSharp" />
<PackageReference Include="protobuf-net" />
<!-- unneeded, after an upgrade to net9.0 or higher -->
<PackageReference Include="Microsoft.Bcl.Memory" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Modix.Analyzers\Modix.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" PrivateAssets="all" SetTargetFramework="TargetFramework=netstandard2.0" />
<ProjectReference Include="..\Modix.Services\Modix.Services.csproj" />
<ProjectReference Include="..\Modix.Data\Modix.Data.csproj" />
</ItemGroup>
<ItemGroup>
<None Update=".dockerignore">
<DependentUpon>Dockerfile</DependentUpon>
</None>
</ItemGroup>
</Project>