BlazorStart/Start/Server/Start.Server.csproj

37 lines
1.6 KiB
XML
Raw Normal View History

2021-11-13 03:21:59 +00:00
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
2021-11-13 03:21:59 +00:00
<UserSecretsId>Start.Server-1D799CBA-C3C7-4198-970E-227998F2DFE2</UserSecretsId>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="6.0.4" />
2021-11-13 03:21:59 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Client\Start.Client.csproj" />
<ProjectReference Include="..\Shared\Start.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="Data\Services\" />
<None Remove="Data\Services\Interfaces\" />
2021-11-14 03:27:01 +00:00
<None Remove="Extensions\" />
2021-11-13 03:21:59 +00:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.ApiAuthorization.IdentityServer" Version="6.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.4"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2021-11-13 03:21:59 +00:00
</ItemGroup>
<ItemGroup>
<Folder Include="Data\Services\" />
<Folder Include="Data\Services\Interfaces\" />
2021-11-14 03:27:01 +00:00
<Folder Include="Extensions\" />
2021-11-13 03:21:59 +00:00
</ItemGroup>
</Project>