1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Dapr.AspNetCore" Version="1.9.0" />
- <PackageReference Include="Identity.Admin.HttpClient" Version="1.0.20" />
- <PackageReference Include="XF.Utility.AppIdentityModel" Version="1.0.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Hotline.Application.Contracts\Hotline.Application.Contracts.csproj" />
- <ProjectReference Include="..\Hotline.CacheManager\Hotline.CacheManager.csproj" />
- <ProjectReference Include="..\Hotline.NewRock\Hotline.NewRock.csproj" />
- <ProjectReference Include="..\Hotline.Repository.SqlSugar\Hotline.Repository.SqlSugar.csproj" />
- <ProjectReference Include="..\Hotline\Hotline.csproj" />
- </ItemGroup>
- </Project>
|