mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 14:24:34 +01:00
32 lines
778 B
XML
32 lines
778 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Common\**" />
|
|
<EmbeddedResource Remove="Common\**" />
|
|
<None Remove="Common\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="HttpServer\**" />
|
|
<EmbeddedResource Remove="HttpServer\**" />
|
|
<None Remove="HttpServer\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="Common\Common.csproj" />
|
|
<ProjectReference Include="HttpServer\HttpServer.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="GameServer\Handlers\Generalactivity\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|