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.
43 lines
1.9 KiB
43 lines
1.9 KiB
<Project>
|
|
<PropertyGroup>
|
|
<LangVersion>latest</LangVersion>
|
|
<Version>8.0.0</Version>
|
|
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
|
|
<PackageIconUrl>https://abp.io/assets/abp_nupkg.png</PackageIconUrl>
|
|
<PackageProjectUrl>https://abp.io/</PackageProjectUrl>
|
|
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/abpframework/abp/</RepositoryUrl>
|
|
<PackageReadmeFile>NuGet.md</PackageReadmeFile>
|
|
<PackageTags>aspnetcore boilerplate framework web best-practices angular maui blazor mvc csharp webapp</PackageTags>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<!-- Include symbol files (*.pdb) in the built .nupkg -->
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="..\..\NuGet.md" Pack="true" PackagePath="\"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(UsingMicrosoftNETSdkWeb)' != 'true' AND '$(UsingMicrosoftNETSdkRazor)' != 'true'">
|
|
<None Remove="*.abppkg.analyze.json" />
|
|
<Content Include="*.abppkg.analyze.json">
|
|
<Pack>true</Pack>
|
|
<PackagePath>content\</PackagePath>
|
|
</Content>
|
|
<None Remove="*.abppkg.json" />
|
|
<Content Include="*.abppkg.json">
|
|
<Pack>true</Pack>
|
|
<PackagePath>content\</PackagePath>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$(AssemblyName.EndsWith('HttpApi.Client'))">
|
|
<EmbeddedResource Include="**\*generate-proxy.json" />
|
|
<Content Remove="**\*generate-proxy.json" />
|
|
</ItemGroup>
|
|
</Project>
|