SharpRSS/WebSharpRSS/WebSharpRSS.csproj
2023-05-23 15:04:02 +02:00

27 lines
692 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>10</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Core\**" />
<Content Remove="Core\**" />
<EmbeddedResource Remove="Core\**" />
<None Remove="Core\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MudBlazor" Version="6.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpRss\SharpRss.csproj" />
</ItemGroup>
</Project>