-
Notifications
You must be signed in to change notification settings - Fork 0
/
edd-blazor-server-poc.csproj
25 lines (25 loc) · 1.32 KB
/
edd-blazor-server-poc.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>edd_blazor_server_poc</RootNamespace>
<UserSecretsId>4ccf06a1-d359-44a5-8db0-a8da83f15078</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\assets\fonts\**" />
<Content Remove="wwwroot\assets\fonts\**" />
<EmbeddedResource Remove="wwwroot\assets\fonts\**" />
<None Remove="wwwroot\assets\fonts\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.0-beta.1" />
<PackageReference Include="BlazorInputFile" Version="0.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.8" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.4" />
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
<PackageReference Include="System.Formats.Asn1" Version="8.0.1" />
</ItemGroup>
</Project>