-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBlazorLocalTimeSample.csproj
More file actions
25 lines (25 loc) · 940 Bytes
/
BlazorLocalTimeSample.csproj
File metadata and controls
25 lines (25 loc) · 940 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AntDesign" Version="1.5.1" />
<PackageReference
Include="Microsoft.AspNetCore.Components.WebAssembly"
Version="10.0.0-rc.1.25451.107"
/>
<PackageReference
Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer"
Version="10.0.2"
PrivateAssets="all"
/>
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.14.1" />
<PackageReference Include="MudBlazor" Version="9.4.0" />
<PackageReference Include="PublishSPAforGitHubPages.Build" Version="3.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\BlazorLocalTime\BlazorLocalTime.csproj" />
</ItemGroup>
</Project>