-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathTryMudBlazor.Server.csproj
More file actions
22 lines (18 loc) · 968 Bytes
/
TryMudBlazor.Server.csproj
File metadata and controls
22 lines (18 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Nullable>enable</Nullable>
<UserSecretsId>1fd261c7-898b-40dc-b869-d96c4b787fc1</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.27.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0" NoWarn="NU1605" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.0" NoWarn="NU1605" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TryMudBlazor.Client\TryMudBlazor.Client.csproj" />
<ProjectReference Include="..\Try.Core\Try.Core.csproj" />
<ProjectReference Include="..\MudBlazor.Examples.Data\MudBlazor.Examples.Data.csproj" />
</ItemGroup>
</Project>