-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathMatBlazor.Demo.csproj
More file actions
33 lines (30 loc) · 1.1 KB
/
MatBlazor.Demo.csproj
File metadata and controls
33 lines (30 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<LangVersion>9</LangVersion>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<Choose>
<When Condition="$(TargetFramework) == 'netstandard2.1'">
<PropertyGroup>
<RazorLangVersion>3.0</RazorLangVersion>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.0" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
</ItemGroup>
</Otherwise>
</Choose>
<ItemGroup>
<ProjectReference Include="..\MatBlazor.Doc\MatBlazor.Doc.csproj" />
<ProjectReference Include="..\MatBlazor\MatBlazor.csproj" />
</ItemGroup>
</Project>