|
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <Nullable>enable</Nullable> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <RootNamespace>Microsoft.eShopWeb.Web</RootNamespace> |
| 7 | + <UserSecretsId>aspnet-Web2-1FA3F72E-E7E3-4360-9E49-1CCCD7FE85F7</UserSecretsId> |
| 8 | + <LangVersion>latest</LangVersion> |
| 9 | + </PropertyGroup> |
| 10 | + |
| 11 | + <ItemGroup> |
| 12 | + <Content Remove="compilerconfig.json" /> |
| 13 | + </ItemGroup> |
| 14 | + |
| 15 | + <ItemGroup> |
| 16 | + <PackageReference Include="Ardalis.ListStartupServices" /> |
| 17 | + <PackageReference Include="Ardalis.Specification" /> |
| 18 | + <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" /> |
| 19 | + <PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" /> |
| 20 | + <PackageReference Include="Azure.Identity" /> |
| 21 | + <PackageReference Include="MediatR" /> |
| 22 | + <PackageReference Include="BuildBundlerMinifier" Condition="'$(Configuration)'=='Release'" /> |
| 23 | + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" /> |
| 24 | + <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" /> |
| 25 | + <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" /> |
| 26 | + <PackageReference Include="Microsoft.Web.LibraryManager.Build" /> |
| 27 | + <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" /> |
| 28 | + <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" /> |
| 29 | + <PackageReference Include="Microsoft.AspNetCore.Identity.UI" /> |
| 30 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" /> |
| 31 | + <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" /> |
| 32 | + <PackageReference Include="Microsoft.Azure.AppConfiguration.AspNetCore" /> |
| 33 | + <PackageReference Include="Microsoft.FeatureManagement.AspNetCore" /> |
| 34 | + <PackageReference Include="System.IdentityModel.Tokens.Jwt" /> |
| 35 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Tools"> |
| 36 | + <PrivateAssets>all</PrivateAssets> |
| 37 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 38 | + </PackageReference> |
| 39 | + </ItemGroup> |
| 40 | + <ItemGroup> |
| 41 | + <Folder Include="wwwroot\fonts\" /> |
| 42 | + <Folder Include="wwwroot\lib\" /> |
| 43 | + </ItemGroup> |
| 44 | + <ItemGroup> |
| 45 | + <ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" /> |
| 46 | + <ProjectReference Include="..\BlazorAdmin\BlazorAdmin.csproj" /> |
| 47 | + <ProjectReference Include="..\BlazorShared\BlazorShared.csproj" /> |
| 48 | + <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" /> |
| 49 | + </ItemGroup> |
| 50 | + <ItemGroup> |
| 51 | + <None Include="compilerconfig.json" /> |
| 52 | + <None Include="wwwroot\images\products\1.png" /> |
| 53 | + <None Include="wwwroot\images\products\10.png" /> |
| 54 | + <None Include="wwwroot\images\products\11.png" /> |
| 55 | + <None Include="wwwroot\images\products\12.png" /> |
| 56 | + <None Include="wwwroot\images\products\2.png" /> |
| 57 | + <None Include="wwwroot\images\products\3.png" /> |
| 58 | + <None Include="wwwroot\images\products\4.png" /> |
| 59 | + <None Include="wwwroot\images\products\5.png" /> |
| 60 | + <None Include="wwwroot\images\products\6.png" /> |
| 61 | + <None Include="wwwroot\images\products\7.png" /> |
| 62 | + <None Include="wwwroot\images\products\8.png" /> |
| 63 | + <None Include="wwwroot\images\products\9.png" /> |
| 64 | + </ItemGroup> |
| 65 | + <ItemGroup> |
| 66 | + <Content Update="appsettings.json"> |
| 67 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 68 | + </Content> |
| 69 | + <Content Update="Views\Shared\Error.cshtml"> |
| 70 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 71 | + </Content> |
| 72 | + <Content Update="Views\Shared\_Layout.cshtml"> |
| 73 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 74 | + </Content> |
| 75 | + <Content Update="Views\Shared\_LoginPartial.cshtml"> |
| 76 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 77 | + </Content> |
| 78 | + <Content Update="Views\Shared\_ValidationScriptsPartial.cshtml"> |
| 79 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 80 | + </Content> |
| 81 | + <Content Update="Views\_ViewImports.cshtml"> |
| 82 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 83 | + </Content> |
| 84 | + <Content Update="Views\_ViewStart.cshtml"> |
| 85 | + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> |
| 86 | + </Content> |
| 87 | + </ItemGroup> |
| 88 | +</Project> |
0 commit comments