30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<SpaRoot>..\ngidentity.client</SpaRoot>
|
|
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
|
|
<SpaProxyServerUrl>https://localhost:4200</SpaProxyServerUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0-rtm.23506.5" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.0-rtm.23506.5" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SpaProxy">
|
|
<Version>8.*-*</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0-rtm.23506.8" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ngidentity.client\ngidentity.client.esproj">
|
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|