forked from zhontai/Admin.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdmin.Core.csproj
More file actions
83 lines (73 loc) · 3.27 KB
/
Admin.Core.csproj
File metadata and controls
83 lines (73 loc) · 3.27 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<!--<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>-->
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>1.4.1</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>xiaoxue</Authors>
<Company>xiaoxue</Company>
<RepositoryType>git</RepositoryType>
<Description>中台Admin后端WebApi</Description>
<PackageProjectUrl>https://github.com/zhontai/Admin.Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/zhontai/Admin.Core</RepositoryUrl>
<PackageTags>ZhonTai Admin;WebApi</PackageTags>
<PackageId>Admin.Core</PackageId>
<Product>Admin.Core</Product>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>..\Admin.Core\Admin.Core.xml</DocumentationFile>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="AutoMapper\**" />
<Compile Remove="Hubs\**" />
<Content Remove="AutoMapper\**" />
<Content Remove="Hubs\**" />
<EmbeddedResource Remove="AutoMapper\**" />
<EmbeddedResource Remove="Hubs\**" />
<None Remove="AutoMapper\**" />
<None Remove="Hubs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Admin.Core.Repository.dll" />
<None Remove="admin.db" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspNetCoreRateLimit" Version="3.0.5" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Autofac.Extras.DynamicProxy" Version="5.0.0" />
<PackageReference Include="Caching.CSRedis" Version="3.6.5" />
<PackageReference Include="FluentValidation.AspNetCore" Version="9.2.0" />
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.8" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Include="NLog" Version="4.7.4" />
<PackageReference Include="NLog.Web.AspNetCore" Version="4.9.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Admin.Core.Services\Admin.Core.Service.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Admin.Core.Common.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Admin.Core.Model.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Admin.Core.Service.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Admin.Core.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\PublishProfiles\" />
<Folder Include="wwwroot\" />
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties properties_4launchsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
</Project>