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.
61 lines
3.4 KiB
61 lines
3.4 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<RootNamespace>Win_in.Sfs.Wms.Pda</RootNamespace>
|
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
|
<UserSecretsId>Win_in.Sfs.Wms.Pda-c2d31439-b723-48e2-b061-5ebd7aeb6010</UserSecretsId>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<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>
|
|
<Compile Remove="Controllers\Labels\ProductionLabelController.cs" />
|
|
<Compile Remove="Controllers\Labels\PurchaseLabelController.cs" />
|
|
<Compile Remove="HttpAuthorizationHandler.cs" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\Modules\BaseData\src\Win_in.Sfs.Basedata.Application.Contracts\Win_in.Sfs.Basedata.Application.Contracts.csproj" />
|
|
<ProjectReference Include="..\..\..\Modules\FileStorage\src\Win_in.Sfs.FileStorage.Application.Contracts\Win_in.Sfs.FileStorage.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>
|
|
<None Update="Dockerfile">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<!--<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="if $(ConfigurationName) == Release (powershell Compress-Archive -Path '$(TargetDir)Win_in*.dll','$(TargetDir)Win_in*.pdb' -DestinationPath '$(SolutionDir)Output\PdaHost.zip' -Force)" />
|
|
</Target>-->
|
|
|
|
</Project>
|
|
|