Uwaa/Pleroma/Pleroma.csproj

24 lines
646 B
XML
Raw Normal View History

2024-11-22 09:55:08 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2024-12-02 17:17:26 +01:00
<PropertyGroup>
<ImplicitUsings>disable</ImplicitUsings>
<RootNamespace>Uwaa.Pleroma</RootNamespace>
<AssemblyName>Uwaa.Pleroma</AssemblyName>
</PropertyGroup>
2024-11-22 09:55:08 +01:00
2024-12-02 17:17:26 +01:00
<Import Project="../Common.targets"/>
2024-11-22 09:55:08 +01:00
2024-12-02 17:17:26 +01:00
<ItemGroup>
<ProjectReference Include="..\HTTP\HTTP.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.IO" />
<Using Include="System.Linq" />
2024-12-13 13:25:20 +01:00
<Using Include="System.Threading.Tasks" />
<Using Include="System.Text.Json" />
<Using Include="System.Text.Json.Serialization" />
2024-12-02 17:17:26 +01:00
</ItemGroup>
2024-11-22 09:55:08 +01:00
</Project>