-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlazorTests.csproj
54 lines (48 loc) · 2.56 KB
/
BlazorTests.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<LangVersion>7.3</LangVersion>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BuildWebCompiler" Version="1.12.405" />
<PackageReference Include="EmbeddedBlazorContent" Version="1.9.0" />
<PackageReference Include="MatBlazor" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3-beta2" />
<PackageReference Include="Syncfusion.EJ2.Blazor" Version="17.4.0.55" />
<PackageReference Include="System.Linq" Version="4.3.0" />
<PackageReference Include="Telerik.UI.for.Blazor.Trial" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Watch Include="**\*.razor" />
</ItemGroup>
<ItemGroup>
<Watch Remove="Pages\Login\LoginView.razor" />
<Watch Remove="Pages\Tests\ParentChildTests\ChildView.razor" />
<Watch Remove="Pages\Tests\MatBlazorTests\ButtonTestView.razor" />
<Watch Remove="Pages\Tests\MatBlazorTests\GridTestView.razor" />
<Watch Remove="Pages\Tests\MatBlazorTests\InputTestView.razor" />
<Watch Remove="Pages\Tests\MatBlazorTests\LayoutTestView.razor" />
<Watch Remove="Pages\Tests\MatBlazorTests\NavigationTestView.razor" />
<Watch Remove="Pages\Tests\MatBlazorTests\NotificationTestView.razor" />
<Watch Remove="Pages\Tests\SyncfusionTests\ButtonTestView.razor" />
<Watch Remove="Pages\Tests\SyncfusionTests\ChartTestView.razor" />
<Watch Remove="Pages\Tests\SyncfusionTests\GridTestView.razor" />
<Watch Remove="Pages\Tests\SyncfusionTests\InputTestView.razor" />
<Watch Remove="Pages\Tests\SyncfusionTests\LayoutTestView.razor" />
<Watch Remove="Pages\Tests\SyncfusionTests\NavigationTestView.razor" />
<Watch Remove="Pages\Tests\SyncfusionTests\NotificationTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\ButtonTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\ChartTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\GridTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\InputTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\LayoutTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\NavigationTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\NotificationTestView.razor" />
<Watch Remove="Pages\Tests\TelerikTests\TelerikTestView.razor" />
</ItemGroup>
<ItemGroup>
<Folder Include="Docs\" />
</ItemGroup>
</Project>