-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSkyFlipTracker.csproj
47 lines (42 loc) · 2.19 KB
/
SkyFlipTracker.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.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../dev/hypixel.csproj" />
</ItemGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);Client\**\*</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="CassandraCSharpDriver" Version="3.22.0" />
<PackageReference Include="Coflnet.Core" Version="0.4.5" />
<PackageReference Include="Coflnet.Leaderboard.Client" Version="0.3.1" />
<PackageReference Include="Coflnet.Sky.Bazaar.Client" Version="0.4.2" />
<PackageReference Include="Coflnet.Sky.Crafts.Client" Version="0.4.1" />
<PackageReference Include="Coflnet.Sky.McConnect" Version="0.5.0" />
<PackageReference Include="Coflnet.Sky.PlayerState.Client" Version="0.4.1" />
<PackageReference Include="Coflnet.Sky.Proxy.Client" Version="1.0.0" />
<PackageReference Include="Coflnet.Sky.Settings.Client" Version="0.2.3" />
<PackageReference Include="Coflnet.Sky.Sniper.Client" Version="0.11.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.12">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Coflnet.Sky.Api.Client" Version="0.7.2" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Compile Remove="**\*.Tests.cs" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' != 'Release'">
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="FluentAssertions" Version="6.12.2" />
</ItemGroup>
</Project>