-
Notifications
You must be signed in to change notification settings - Fork 4
/
PizzaBay.csproj
29 lines (23 loc) · 1.21 KB
/
PizzaBay.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Blazored.LocalStorage" Version="4.3.0" />
<PackageReference Include="Syncfusion.Blazor.Buttons" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Calendars" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Cards" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.DropDowns" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Grid" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Inputs" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Navigations" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Notifications" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Popups" Version="21.1.39" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="21.1.39" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PizzaLogic\PizzaLogic.csproj" />
</ItemGroup>
</Project>