SharpRSS/WebSharpRSS/WebSharpRSS.csproj

24 lines
578 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>
2023-05-20 00:04:45 +02:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2023-04-27 17:23:01 +02:00
</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" />
</ItemGroup>
2023-04-27 17:23:01 +02:00
</Project>