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.
34 lines
1.1 KiB
34 lines
1.1 KiB
1 year ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<RootNamespace>SettleAccount</RootNamespace>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Volo.Abp.Http.Client.IdentityModel" Version="7.2.2" />
|
||
|
<PackageReference Include="Volo.Abp.Autofac" Version="7.2.2" />
|
||
|
<ProjectReference Include="..\..\src\SettleAccount.HttpApi.Client\SettleAccount.HttpApi.Client.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<None Remove="appsettings.json" />
|
||
|
<Content Include="appsettings.json">
|
||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
<None Remove="appsettings.secrets.json" />
|
||
|
<Content Include="appsettings.secrets.json">
|
||
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|