-
Notifications
You must be signed in to change notification settings - Fork 5
/
BlazorExamples.csproj
33 lines (28 loc) · 1.44 KB
/
BlazorExamples.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>BlazorExamples</AssemblyName>
<RootNamespace>BlazorExamples</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Blazored.LocalStorage" Version="4.2.0" />
<PackageReference Include="Markdig" Version="0.30.2" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Examples\Counter.razor" />
<_ContentIncludedByDefault Remove="Examples\Error.razor" />
<_ContentIncludedByDefault Remove="Examples\FetchData.razor" />
<_ContentIncludedByDefault Remove="Examples\MarkdownEditor\Editor.razor" />
<_ContentIncludedByDefault Remove="Examples\TrafficLight\TrafficLight.razor" />
<_ContentIncludedByDefault Remove="Examples\TrafficLight\TrafficLightPM.razor" />
<_ContentIncludedByDefault Remove="Pages\Examples\ProgressBar\Index.razor" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="Pages\Examples\Counter.razor" />
<AdditionalFiles Include="Pages\Examples\Error.razor" />
<AdditionalFiles Include="Pages\Examples\FetchData.razor" />
<AdditionalFiles Include="Pages\Examples\MarkdownEditor\Editor.razor" />
<AdditionalFiles Include="Pages\Examples\TrafficLight\TrafficLight.razor" />
<AdditionalFiles Include="Pages\Examples\TrafficLight\TrafficLightPM.razor" />
</ItemGroup>
</Project>