SharpRSS/WebSharpRSS/WebSharpRSS.csproj

24 lines
560 B
XML
Raw Normal View History

2023-04-27 17:23:01 +02:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>10</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MudBlazor" Version="6.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpRss\SharpRss.csproj" />
</ItemGroup>
2023-05-12 23:58:49 +02:00
<ItemGroup>
<Folder Include="Core" />
<Folder Include="Models" />
</ItemGroup>
2023-04-27 17:23:01 +02:00
</Project>