WYB
2021-03-22 91b8cdad021ab052e4991f3d41834a6f0ddc36b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
 
    <PropertyGroup>
        <TargetFramework>net5.0</TargetFramework>
    </PropertyGroup>
 
    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
        <OutputPath>..\JiepeiWMS.Api\bin\Debug\</OutputPath>
    </PropertyGroup>
    
    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
        <OutputPath>..\JiepeiWMS\bin\Release\</OutputPath>
    </PropertyGroup>
    
    <ItemGroup>
        <PackageReference Include="AutoMapper" Version="9.0.0" />
        <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
        <PackageReference Include="NPOI" Version="2.5.1" />
        <PackageReference Include="ZKWeb.System.Drawing" Version="4.0.0" />
    </ItemGroup>
 
    <ItemGroup>
        <ProjectReference Include="..\JiepeiWMS.IServices\JiepeiWMS.IServices.csproj" />
        <ProjectReference Include="..\JiepeiWMS.Repository\JiepeiWMS.Repository.csproj" />
    </ItemGroup>
 
</Project>