66 lines
2.9 KiB
XML
66 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<UserSecretsId>aspnet-eShopOnContainers.Identity-90487118-103c-4ff0-b9da-e5e26f7ab0c5</UserSecretsId>
|
|
<DockerComposeProjectPath>..\..\..\..\docker-compose.dcproj</DockerComposeProjectPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Duende.IdentityServer.AspNetIdentity" />
|
|
<PackageReference Include="Duende.IdentityServer.EntityFramework.Storage" />
|
|
<PackageReference Include="Duende.IdentityServer.EntityFramework" />
|
|
<PackageReference Include="Duende.IdentityServer.Storage" />
|
|
<PackageReference Include="Duende.IdentityServer" />
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />
|
|
<PackageReference Include="Microsoft.Web.LibraryManager.Build" />
|
|
<PackageReference Include="Polly" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Views\Account\AccessDenied.cshtml" />
|
|
<None Include="Views\Account\LoggedOut.cshtml" />
|
|
<None Include="Views\Account\Login.cshtml" />
|
|
<None Include="Views\Account\Logout.cshtml" />
|
|
<None Include="Views\Consent\Index.cshtml" />
|
|
<None Include="Views\Device\Success.cshtml" />
|
|
<None Include="Views\Device\UserCodeCapture.cshtml" />
|
|
<None Include="Views\Device\UserCodeConfirmation.cshtml" />
|
|
<None Include="Views\Diagnostics\Index.cshtml" />
|
|
<None Include="Views\Grants\Index.cshtml" />
|
|
<None Include="Views\Home\Index.cshtml" />
|
|
<None Include="Views\Shared\Error.cshtml" />
|
|
<None Include="Views\Shared\Redirect.cshtml" />
|
|
<None Include="Views\Shared\_Layout.cshtml" />
|
|
<None Include="Views\Shared\_ScopeListItem.cshtml" />
|
|
<None Include="Views\Shared\_ValidationSummary.cshtml" />
|
|
<None Include="Views\_ViewImports.cshtml" />
|
|
<None Include="Views\_ViewStart.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Services.Common\Services.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="appsettings.Development.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ProjectExtensions>
|
|
<VisualStudio>
|
|
<UserProperties appsettings_1json__JsonSchema="" />
|
|
</VisualStudio>
|
|
</ProjectExtensions>
|
|
</Project>
|