generated from Ekwav/SkyBase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkyBFCS.csproj
34 lines (30 loc) · 1.33 KB
/
SkyBFCS.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
<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="../SkyModCommands/SkyModCommands.csproj" />
<ProjectReference Include="../SkySniper/SkySniper.csproj" />
<ProjectReference Include="../SkyUpdater/SkyUpdater.csproj" />
</ItemGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);Client\**\*</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Compile Remove="**\*.Tests.cs" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' != 'Release'">
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WebSocketSharp.NetCore" Version="1.0.0" />
</ItemGroup>
</Project>