mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
50 lines
2.4 KiB
50 lines
2.4 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<Import Project="..\..\..\..\configureawait.props" />
|
|
<Import Project="..\..\..\..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<AssemblyName>Volo.Docs.Web</AssemblyName>
|
|
<PackageId>Volo.Docs.Web</PackageId>
|
|
<OutputType>Library</OutputType>
|
|
<IsPackable>true</IsPackable>
|
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
|
<RootNamespace>Volo.Docs</RootNamespace>
|
|
<TypeScriptToolsVersion>2.8</TypeScriptToolsVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.Mapperly\Volo.Abp.Mapperly.csproj" />
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Bundling\Volo.Abp.AspNetCore.Mvc.UI.Bundling.csproj" />
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj" />
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Packages\Volo.Abp.AspNetCore.Mvc.UI.Packages.csproj" />
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.csproj" />
|
|
<ProjectReference Include="..\Volo.Docs.Application.Contracts\Volo.Docs.Application.Contracts.csproj" />
|
|
<PackageReference Include="Markdig.Signed" />
|
|
<PackageReference Include="Scriban" />
|
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Pages\**\*.css" />
|
|
<EmbeddedResource Include="Pages\**\*.js" />
|
|
<EmbeddedResource Include="Localization\Resources\**\*.json" />
|
|
<Content Remove="Pages\**\*.css" />
|
|
<Content Remove="Pages\**\*.js" />
|
|
<Content Remove="Localization\Resources\**\*.json" />
|
|
<Content Remove="compilerconfig.json" />
|
|
<Content Remove="compilerconfig.json.defaults" />
|
|
<None Include="compilerconfig.json" />
|
|
<EmbeddedResource Include="Components\**\*.js" />
|
|
<EmbeddedResource Include="Components\**\*.css" />
|
|
<Content Remove="Components\**\*.js" />
|
|
<Content Remove="Components\**\*.css" />
|
|
<EmbeddedResource Include="wwwroot\**\*.js" />
|
|
<EmbeddedResource Include="wwwroot\**\*.css" />
|
|
<Content Remove="wwwroot\**\*.js" />
|
|
<Content Remove="wwwroot\**\*.css" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|