-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBlazorChat.csproj
29 lines (24 loc) · 1.06 KB
/
BlazorChat.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>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Data\**" />
<Content Remove="Data\**" />
<EmbeddedResource Remove="Data\**" />
<None Remove="Data\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BlazorStyled" Version="2.2.0" />
<PackageReference Include="DataJuggler.Blazor.Components" Version="1.4.11" />
<PackageReference Include="DataJuggler.Core.Cryptography" Version="1.0.11" />
<PackageReference Include="DataJuggler.RandomShuffler.Core" Version="1.2.5" />
<PackageReference Include="HtmlSanitizer" Version="5.0.319" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.ProtectedBrowserStorage" Version="0.1.0-alpha.19521.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Data\DataGateway\DataGateway.csproj" />
<ProjectReference Include="Data\ObjectLibrary\ObjectLibrary.csproj" />
</ItemGroup>
</Project>