-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathMatBlazor.Demo.ServerApp.csproj
More file actions
26 lines (22 loc) · 807 Bytes
/
MatBlazor.Demo.ServerApp.csproj
File metadata and controls
26 lines (22 loc) · 807 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<LangVersion>9</LangVersion>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Shared\**" />
<Compile Remove="wwwroot\**" />
<Content Remove="Shared\**" />
<Content Remove="wwwroot\**" />
<EmbeddedResource Remove="Shared\**" />
<EmbeddedResource Remove="wwwroot\**" />
<None Remove="Shared\**" />
<None Remove="wwwroot\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MatBlazor.Demo\MatBlazor.Demo.csproj" />
<ProjectReference Include="..\MatBlazor.Doc.Demo\MatBlazor.Doc.Demo.csproj" />
<ProjectReference Include="..\MatBlazor\MatBlazor.csproj" />
</ItemGroup>
</Project>