-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kaepora.csproj
executable file
·28 lines (24 loc) · 1.22 KB
/
Kaepora.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net.Commands" Version="1.0.0-*" />
<PackageReference Include="Discord.Net.WebSocket" Version="1.0.0-*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="1.1.0" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="1.1.1-*" />
<PackageReference Include="NLog" Version="5.0.0-beta05" />
<PackageReference Include="System.ValueTuple" Version="*" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants);BETA;TRACE;__DEMO_EXPERIMENTAL__;__DEMO__</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);OPTIMIZE;__DEMO_EXPERIMENTAL__;__DEMO__</DefineConstants>
</PropertyGroup>
</Project>