|
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>net6.0</TargetFramework> |
| 4 | + <RootNamespace>Tasky</RootNamespace> |
| 5 | + <AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback> |
| 6 | + <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
| 7 | + <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
| 8 | + <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> |
| 9 | + <MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish> |
| 10 | + <PreserveCompilationReferences>true</PreserveCompilationReferences> |
| 11 | + <UserSecretsId>Tasky-4681b4fd-151f-4221-84a4-929d86723e4c</UserSecretsId> |
| 12 | + </PropertyGroup> |
| 13 | + |
| 14 | + <ItemGroup> |
| 15 | + <Compile Remove="Logs\**" /> |
| 16 | + <Content Remove="Logs\**" /> |
| 17 | + <EmbeddedResource Remove="Logs\**" /> |
| 18 | + <None Remove="Logs\**" /> |
| 19 | + </ItemGroup> |
| 20 | + |
| 21 | + <ItemGroup> |
| 22 | + <None Update="Pages\**\*.js"> |
| 23 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 24 | + </None> |
| 25 | + <None Update="Pages\**\*.css"> |
| 26 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 27 | + </None> |
| 28 | + </ItemGroup> |
| 29 | + |
| 30 | + <ItemGroup> |
| 31 | + <PackageReference Include="Serilog.AspNetCore" Version="6.1.0" /> |
| 32 | + <PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" /> |
| 33 | + <PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="6.0.5" /> |
| 34 | + <PackageReference Include="DistributedLock.Redis" Version="1.0.2" /> |
| 35 | + </ItemGroup> |
| 36 | + |
| 37 | + <ItemGroup> |
| 38 | + <PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite" Version="1.0.2" /> |
| 39 | + </ItemGroup> |
| 40 | + |
| 41 | + <ItemGroup> |
| 42 | + <PackageReference Include="Volo.Abp.Autofac" Version="6.0.2" /> |
| 43 | + <PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="6.0.2" /> |
| 44 | + <PackageReference Include="Volo.Abp.DistributedLocking" Version="6.0.2" /> |
| 45 | + <PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="6.0.2" /> |
| 46 | + <PackageReference Include="Volo.Abp.Account.Web.OpenIddict" Version="6.0.2" /> |
| 47 | + <PackageReference Include="Volo.Abp.Account.Application" Version="6.0.2" /> |
| 48 | + <PackageReference Include="Volo.Abp.Account.HttpApi" Version="6.0.2" /> |
| 49 | + </ItemGroup> |
| 50 | + |
| 51 | + <ItemGroup> |
| 52 | + <ProjectReference Include="..\..\services\administration\src\Tasky.AdministrationService.EntityFrameworkCore\Tasky.AdministrationService.EntityFrameworkCore.csproj" /> |
| 53 | + <ProjectReference Include="..\..\services\identity\src\Tasky.IdentityService.EntityFrameworkCore\Tasky.IdentityService.EntityFrameworkCore.csproj" /> |
| 54 | + <ProjectReference Include="..\..\services\saas\src\Tasky.SaasService.EntityFrameworkCore\Tasky.SaasService.EntityFrameworkCore.csproj" /> |
| 55 | + <ProjectReference Include="..\..\shared\Tasky.Shared.Microservice.Hosting\Tasky.Shared.Microservice.Hosting.csproj" /> |
| 56 | + </ItemGroup> |
| 57 | + |
| 58 | +</Project> |
0 commit comments