SharpRSS/WebSharpRSS/WebSharpRSS.csproj

55 lines
2.4 KiB
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>
2023-05-23 15:04:02 +02:00
<Compile Remove="Core\**" />
<Content Remove="Core\**" />
<EmbeddedResource Remove="Core\**" />
<None Remove="Core\**" />
2023-04-27 17:23:01 +02:00
</ItemGroup>
<ItemGroup>
2023-07-09 19:28:36 +02:00
<PackageReference Include="MudBlazor" Version="6.6.0" />
2023-06-14 19:57:50 +02:00
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
2023-08-27 16:42:14 +02:00
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
2023-04-27 17:23:01 +02:00
</ItemGroup>
2023-05-12 23:58:49 +02:00
<ItemGroup>
<ProjectReference Include="..\..\ToolQit\ToolQit.Logging.Serilog\ToolQit.Logging.Serilog.csproj" />
2023-05-23 15:04:02 +02:00
<ProjectReference Include="..\SharpRss\SharpRss.csproj" />
2023-05-12 23:58:49 +02:00
</ItemGroup>
2023-05-29 16:14:26 +02:00
<ItemGroup>
<_ContentIncludedByDefault Remove="logs\log_20230507.json" />
<_ContentIncludedByDefault Remove="logs\log_20230509.json" />
<_ContentIncludedByDefault Remove="logs\log_20230512.json" />
<_ContentIncludedByDefault Remove="logs\log_20230513.json" />
<_ContentIncludedByDefault Remove="logs\log_20230515.json" />
<_ContentIncludedByDefault Remove="logs\log_20230517.json" />
<_ContentIncludedByDefault Remove="logs\log_20230518.json" />
<_ContentIncludedByDefault Remove="logs\log_20230519.json" />
<_ContentIncludedByDefault Remove="logs\log_20230521.json" />
<_ContentIncludedByDefault Remove="logs\log_20230522.json" />
<_ContentIncludedByDefault Remove="logs\log_20230523.json" />
<_ContentIncludedByDefault Remove="logs\log_20230524.json" />
<_ContentIncludedByDefault Remove="logs\log_20230525.json" />
<_ContentIncludedByDefault Remove="logs\log_20230526.json" />
<_ContentIncludedByDefault Remove="logs\log_20230527.json" />
2023-05-29 18:02:24 +02:00
<_ContentIncludedByDefault Remove="logs\log_20230529.json" />
2023-06-04 19:00:46 +02:00
<_ContentIncludedByDefault Remove="logs\log_20230602.json" />
<_ContentIncludedByDefault Remove="logs\log_20230603.json" />
<_ContentIncludedByDefault Remove="logs\log_20230604.json" />
2023-06-14 20:29:21 +02:00
<_ContentIncludedByDefault Remove="logs\log_20230605.json" />
<_ContentIncludedByDefault Remove="logs\log_20230610.json" />
<_ContentIncludedByDefault Remove="logs\log_20230611.json" />
2023-05-29 16:14:26 +02:00
</ItemGroup>
2023-04-27 17:23:01 +02:00
</Project>