-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHatTrick.BLL.csproj
35 lines (30 loc) · 1.38 KB
/
HatTrick.BLL.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>10.0</LangVersion>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<NeutralLanguage>en-GB</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<ProjectGuid>879B7F6E-A956-1115-1E84-A57B562AFE33</ProjectGuid>
<Authors>Davor Penzar</Authors>
<Description>Business logic for the Hat-Trick Online Betting Shop Simulator.</Description>
<PackageTags>betting, sport betting, online betting, betting shop, BLL</PackageTags>
<Copyright>Copyright (c) Davor Penzar 2023</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>http://github.com/DavorPenzar/hat-trick/</RepositoryUrl>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="System.Linq.Async.Queryable" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../HatTrick.DAL/HatTrick.DAL.csproj" />
<ProjectReference Include="../HatTrick.Models/HatTrick.Models.csproj" />
</ItemGroup>
</Project>