generated from Ekwav/SkyBase
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSkyModCommands.csproj
40 lines (36 loc) · 1.74 KB
/
SkyModCommands.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<NoWarn>1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../dev/hypixel.csproj" />
<ProjectReference Include="../SkyFilter/SkyFilter.csproj" />
<ProjectReference Include="../SkyBackendForFrontend/SkyBackendForFrontend.csproj" />
<ProjectReference Include="../websocket-sharp/websocket-sharp/websocket-sharp.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CassandraCSharpDriver" Version="3.22.0" />
<PackageReference Include="Figgle" Version="0.5.1" />
<PackageReference Include="Coflnet.Sky.Chat.Client" Version="1.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.13">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
<PackageReference Include="Coflnet.Sky.Proxy.Client" Version="1.0.0" />
</ItemGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);Client\**\*</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Compile Remove="**\*.Tests.cs" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' != 'Release'">
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
</ItemGroup>
</Project>