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.
35 lines
1.5 KiB
35 lines
1.5 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<RootNamespace>WY.NewJit</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DocumentationFile>.\WY.NewJit.Application.Contracts.xml</DocumentationFile>
|
|
<WarningLevel>0</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DocumentationFile>WY.NewJit.Application.Contracts.xml</DocumentationFile>
|
|
<OutputPath>..\..\OutPut</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WY.NewJit.Domain.Shared\WY.NewJit.Domain.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.0" />
|
|
<PackageReference Include="Volo.Abp.ObjectExtending" Version="4.3.3" />
|
|
<PackageReference Include="Volo.Abp.Account.Application.Contracts" Version="4.3.3" />
|
|
<PackageReference Include="Volo.Abp.Identity.Application.Contracts" Version="4.3.3" />
|
|
<PackageReference Include="Volo.Abp.PermissionManagement.Application.Contracts" Version="4.3.3" />
|
|
<PackageReference Include="Volo.Abp.TenantManagement.Application.Contracts" Version="4.3.3" />
|
|
<PackageReference Include="Volo.Abp.FeatureManagement.Application.Contracts" Version="4.3.3" />
|
|
<PackageReference Include="Volo.Abp.SettingManagement.Application.Contracts" Version="4.3.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|