-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAppwriteWithBlazor.csproj
More file actions
25 lines (21 loc) · 983 Bytes
/
AppwriteWithBlazor.csproj
File metadata and controls
25 lines (21 loc) · 983 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>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Include="Pages\Projects.razor" />
<None Include="Pages\ProjectsDetails.razor" />
<None Include="Pages\Index.razor" />
<None Include="Shared\MainLayout.razor" />
<None Include="Shared\NavMenu.razor" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AntDesign" Version="0.15.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.15" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="6.0.16" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.15" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
</ItemGroup>
</Project>