mirror of https://github.com/abpframework/abp
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.
41 lines
1.4 KiB
41 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<Import Project="..\..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<AssemblyName>Volo.Abp.Identity.Web</AssemblyName>
|
|
<PackageId>Volo.Abp.Identity.Web</PackageId>
|
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Areas\**\*.cshtml" />
|
|
<EmbeddedResource Include="Areas\**\*.js" />
|
|
<EmbeddedResource Include="Areas\**\*.json" />
|
|
<EmbeddedResource Include="Areas\**\*.css" />
|
|
<EmbeddedResource Include="wwwroot\**\*.*" />
|
|
<EmbeddedResource Include="Pages\**\*.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Pages\Identity\Users\EditModal.cshtml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="wwwroot\modules\identity\helpers\datatables_helper.js" />
|
|
<None Remove="wwwroot\modules\identity\helpers\jquery.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj" />
|
|
<ProjectReference Include="..\Volo.Abp.Identity.Application.Contracts\Volo.Abp.Identity.Application.Contracts.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\modules\identity\libs\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|