20 lines
509 B
XML
20 lines
509 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<RootNamespace>Uwaa.Pleroma</RootNamespace>
|
|
<AssemblyName>Uwaa.Pleroma</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="../Common.targets"/>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HTTP\HTTP.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="System" />
|
|
<Using Include="System.Collections.Generic" />
|
|
<Using Include="System.IO" />
|
|
<Using Include="System.Linq" />
|
|
</ItemGroup>
|
|
</Project>
|