You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
3.8 KiB
64 lines
3.8 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
|
|
<PackageReference Include="Serilog.Enrichers.Assembly" Version="2.0.0" />
|
|
<PackageReference Include="Serilog.Enrichers.Process" Version="2.0.1" />
|
|
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" />
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="3.1.0" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.4.1" />
|
|
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="3.1.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="3.1.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Authentication.JwtBearer" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.Autofac" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.Account.Application" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.Account.Web.IdentityServer" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore.MySql" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.Identity.Application" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.Identity.HttpApi" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.Identity.EntityFrameworkCore" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.IdentityServer.EntityFrameworkCore" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.TenantManagement.EntityFrameworkCore" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.PermissionManagement.Domain.Identity" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.PermissionManagement.HttpApi" Version="2.7.0" />
|
|
<PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore" Version="2.7.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\LINGYUN.ApiGateway.Application.Contracts.csproj" />
|
|
<ProjectReference Include="..\..\..\modules\identityServer\LINGYUN.IdentityServer.Application\LINGYUN.IdentityServer.Application.csproj" />
|
|
<ProjectReference Include="..\..\..\modules\identityServer\LINGYUN.IdentityServer.HttpApi\LINGYUN.IdentityServer.HttpApi.csproj" />
|
|
<ProjectReference Include="..\..\..\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\LINGYUN.Abp.PermissionManagement.Application.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Pages\**\*.js">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Pages\**\*.css">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Migrations\" />
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties appsettings_1development_1json__JsonSchema="http://json.schemastore.org/avro-avsc" /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|
|
|