-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModalBuilderUtil.csproj
47 lines (42 loc) · 2.08 KB
/
ModalBuilderUtil.csproj
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>annotations</Nullable>
<Configurations>Debug;Release;Deploy</Configurations>
<Platforms>AnyCPU;ARM32</Platforms>
<Version>3.6.1</Version>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite">
<Version>6.0.1</Version>
</PackageReference>
<PackageReference Include="newtonsoft.json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="clientSettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\discord.net-labs\src\Discord.Net.Rest\Discord.Net.Rest.csproj" />
<ProjectReference Include="..\discord.net-labs\src\Discord.Net.Core\Discord.Net.Core.csproj" />
<ProjectReference Include="..\discord.net-labs\src\Discord.Net.Webhook\Discord.Net.Webhook.csproj" />
<ProjectReference Include="..\discord.net-labs\src\Discord.Net.Commands\Discord.Net.Commands.csproj" />
<ProjectReference Include="..\discord.net-labs\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
<ProjectReference Include="..\discord.net-labs\src\Discord.Net.Interactions\Discord.Net.Interactions.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="clientSettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>