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.

56 lines
3.0 KiB

2 years ago
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="6.0.12" />
<PackageReference Include="IdentityModel" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.12" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.Client" Version="5.3.5" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy" Version="5.3.5" />
<PackageReference Include="Volo.Abp.Http.Client.IdentityModel.Web" Version="5.3.5" />
<PackageReference Include="Volo.Abp.Identity.HttpApi.Client" Version="5.3.5" />
<PackageReference Include="Volo.Abp.Http.Client" Version="5.3.5" />
<PackageReference Include="Volo.Abp.Account.HttpApi.Client" Version="5.3.5" />
<PackageReference Include="Volo.Abp.Core" Version="5.3.5" />
<PackageReference Include="Volo.Abp.Identity.Application.Contracts" Version="5.3.5" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="appsettings.Production.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Modules\BaseData\src\Win_in.Sfs.Basedata.Application.Contracts\Win_in.Sfs.Basedata.Application.Contracts.csproj" />
<ProjectReference Include="..\..\Modules\Inventory\src\Win_in.Sfs.Wms.Inventory.Application.Contracts\Win_in.Sfs.Wms.Inventory.Application.Contracts.csproj" />
<ProjectReference Include="..\..\Modules\Label\src\Win_in.Sfs.Label.Application.Contracts\Win_in.Sfs.Label.Application.Contracts.csproj" />
<ProjectReference Include="..\..\Modules\Message\src\Win_in.Sfs.Message.Application.Contracts\Win_in.Sfs.Message.Application.Contracts.csproj" />
<ProjectReference Include="..\..\Modules\Shared\src\Win_in.Sfs.Shared.Host\Win_in.Sfs.Shared.Host.csproj" />
<ProjectReference Include="..\..\Modules\Store\src\Win_in.Sfs.Wms.Store.Application.Contracts\Win_in.Sfs.Wms.Store.Application.Contracts.csproj" />
<ProjectReference Include="..\Auth.Host\src\Win_in.Sfs.Auth.Application.Contracts\Win_in.Sfs.Auth.Application.Contracts.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.Development.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
2 years ago
<!--<Target Name="PostBuild" AfterTargets="PostBuildEvent">
2 years ago
<Exec Command="if $(ConfigurationName) == Release (powershell Compress-Archive -Path '$(TargetDir)Win_in*.dll','$(TargetDir)Win_in*.pdb' -DestinationPath '$(SolutionDir)Output\DashboardHost.zip' -Force)" />
2 years ago
</Target>-->
2 years ago
</Project>