87 lines
4.0 KiB
XML
87 lines
4.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Microsoft.eShopWeb.Web</RootNamespace>
|
|
<UserSecretsId>aspnet-Web2-1FA3F72E-E7E3-4360-9E49-1CCCD7FE85F7</UserSecretsId>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Ardalis.ListStartupServices" />
|
|
<PackageReference Include="Ardalis.Specification" />
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" />
|
|
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" />
|
|
<PackageReference Include="Azure.Identity" />
|
|
<PackageReference Include="MediatR" />
|
|
<PackageReference Include="BuildBundlerMinifier" Condition="'$(Configuration)'=='Release'" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" />
|
|
<PackageReference Include="Microsoft.Web.LibraryManager.Build" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\fonts\" />
|
|
<Folder Include="wwwroot\lib\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" />
|
|
<ProjectReference Include="..\BlazorAdmin\BlazorAdmin.csproj" />
|
|
<ProjectReference Include="..\BlazorShared\BlazorShared.csproj" />
|
|
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" />
|
|
<None Include="wwwroot\images\products\1.png" />
|
|
<None Include="wwwroot\images\products\10.png" />
|
|
<None Include="wwwroot\images\products\11.png" />
|
|
<None Include="wwwroot\images\products\12.png" />
|
|
<None Include="wwwroot\images\products\2.png" />
|
|
<None Include="wwwroot\images\products\3.png" />
|
|
<None Include="wwwroot\images\products\4.png" />
|
|
<None Include="wwwroot\images\products\5.png" />
|
|
<None Include="wwwroot\images\products\6.png" />
|
|
<None Include="wwwroot\images\products\7.png" />
|
|
<None Include="wwwroot\images\products\8.png" />
|
|
<None Include="wwwroot\images\products\9.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Update="appsettings.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Update="Views\Shared\Error.cshtml">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
<Content Update="Views\Shared\_Layout.cshtml">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
<Content Update="Views\Shared\_LoginPartial.cshtml">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
<Content Update="Views\Shared\_ValidationScriptsPartial.cshtml">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
<Content Update="Views\_ViewImports.cshtml">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
<Content Update="Views\_ViewStart.cshtml">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|