-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStaticBlazorBlog.csproj
More file actions
51 lines (40 loc) · 1.41 KB
/
StaticBlazorBlog.csproj
File metadata and controls
51 lines (40 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Content Remove="Components\Pages\About.razor" />
<Content Remove="Components\Pages\Blogs.razor" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Components\Pages\About.razor" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Components\Hero.razor" />
<_ContentIncludedByDefault Remove="Components\Pages\About.razor" />
<_ContentIncludedByDefault Remove="Components\Pages\BlogCard.razor" />
<_ContentIncludedByDefault Remove="Components\Pages\Blogs.razor" />
<_ContentIncludedByDefault Remove="Components\Pages\SingleBlog.razor" />
</ItemGroup>
<ItemGroup>
<None Include="Components\Pages\About.razor" />
<None Include="Components\Pages\Blogs.razor" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Components\Pages\Blogs.razor" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Components\Hero.razor" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Components\Pages\BlogCard.razor" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Components\Pages\SingleBlog.razor" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Markdig" Version="0.35.0" />
</ItemGroup>
</Project>