24 lines
967 B
XML
24 lines
967 B
XML
<Project>
|
|
<Import Project="..\Directory.Build.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net461</TargetFramework>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<PackageType>AzureSiteExtension</PackageType>
|
|
<NoPackageAnalysis>true</NoPackageAnalysis>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
<IncludeSource>false</IncludeSource>
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
|
<!--
|
|
NuGet skips files ending .nuget producing warning at the same time
|
|
there is no way to disable default excludes from MsBuild (see:https://github.com/NuGet/Home/issues/6450)
|
|
and we don't care about item templates on Antares
|
|
-->
|
|
<NoWarn>$(NoWarn);NU5119</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Internal.AspNetCore.Sdk" PrivateAssets="All" Version="$(InternalAspNetCoreSdkPackageVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|