-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPokerConsoleApp.csproj
More file actions
27 lines (23 loc) · 973 Bytes
/
PokerConsoleApp.csproj
File metadata and controls
27 lines (23 loc) · 973 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<Platforms>x64</Platforms>
<ApplicationIcon />
<Win32Resource />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ConsoleTables" Version="2.3.0" />
<PackageReference Include="EasyConsoleStd" Version="2.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Data.SQLite" Version="1.0.111" />
<PackageReference Include="System.Reflection" Version="4.3.0" />
</ItemGroup>
</Project>