-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebEnterprise.csproj
More file actions
53 lines (48 loc) · 2.35 KB
/
WebEnterprise.csproj
File metadata and controls
53 lines (48 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="storage\**" />
<Compile Remove="wwwroot\cache\**" />
<Compile Remove="wwwroot\files\**" />
<Content Remove="storage\**" />
<Content Remove="wwwroot\cache\**" />
<Content Remove="wwwroot\files\**" />
<EmbeddedResource Remove="storage\**" />
<EmbeddedResource Remove="wwwroot\cache\**" />
<EmbeddedResource Remove="wwwroot\files\**" />
<None Remove="storage\**" />
<None Remove="wwwroot\cache\**" />
<None Remove="wwwroot\files\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspNetCoreHero.ToastNotification" Version="1.1.0" />
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="DocumentFormat.OpenXml" Version="3.0.1" />
<PackageReference Include="FirebaseAuthentication.net" Version="3.2.0" />
<PackageReference Include="FirebaseStorage.net" Version="1.0.3" />
<PackageReference Include="GleamTech.DocumentUltimate" Version="6.9.6" />
<PackageReference Include="Google.Apis.Core" Version="1.67.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.27" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.27" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.27" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.27">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.16" />
<PackageReference Include="X.PagedList.Mvc.Core" Version="8.4.7" />
</ItemGroup>
<ItemGroup>
<Folder Include="Areas\Admin\Data\" />
<Folder Include="Areas\Admin\Models\" />
<Folder Include="Areas\Manager\Data\" />
<Folder Include="Areas\Manager\Models\" />
<Folder Include="wwwroot\Admin\" />
<Folder Include="wwwroot\images\face\" />
</ItemGroup>
</Project>