52 lines
2.4 KiB
XML
52 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<title>ASP.NET Core Extensions</title>
|
|
<Description>This extension enables additional functionality for ASP.NET Core on Azure WebSites, such as enabling Azure logging.</Description>
|
|
<TargetFramework>net461</TargetFramework>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<PackageTags>aspnet;logging;aspnetcore;AzureSiteExtension</PackageTags>
|
|
<PackageType>AzureSiteExtension</PackageType>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
|
<!-- These need to be set manually because this is not marked as a shipping (to nuget.org) package. https://github.com/aspnet/AzureIntegration/issues/38 -->
|
|
<PackageLicenseUrl>https://github.com/aspnet/AzureIntegration/blob/rel/2.0.0-preview1/LICENSE.txt</PackageLicenseUrl>
|
|
<PackageIconUrl>https://go.microsoft.com/fwlink/?LinkID=288859</PackageIconUrl>
|
|
<PackageProjectUrl>https://www.asp.net/</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="applicationHost.xdt" />
|
|
<!-- <Content Include="bin\$(Configuration)\$(TargetFramework)\Microsoft.Web.Xdt.Extensions.dll" PackagePath="content" /> -->
|
|
</ItemGroup>
|
|
|
|
<Target Name="PackTaskDependencies" BeforeTargets="GenerateNuspec">
|
|
|
|
<Message Text="Collecting package files from $(DotnetHomeDirectory), $(FallbackArchiveDestination), $(RuntimeStoreDestination)" Importance="high" />
|
|
|
|
<ItemGroup>
|
|
<_PackageFiles Include="$(DotnetHomeDirectory)\**\*.*" Exclude="$(DotnetHomeDirectory)\sdk\NuGetFallbackFolder\**\*.*;$(DotnetHomeDirectory)\store\**\*.*;$(DotnetHomeDirectory)\additionalDeps\**\*.*" Condition="$(DotnetHomeDirectory) != ''">
|
|
<PackagePath>tools\</PackagePath>
|
|
<Visible>false</Visible>
|
|
<BuildAction>Content</BuildAction>
|
|
</_PackageFiles>
|
|
|
|
<_PackageFiles Include="$(FallbackArchiveDestination)\**\*.*" Condition="$(FallbackArchiveDestination) != ''">
|
|
<PackagePath>tools\sdk\NuGetFallbackFolder\</PackagePath>
|
|
<Visible>false</Visible>
|
|
<BuildAction>Content</BuildAction>
|
|
</_PackageFiles>
|
|
|
|
<_PackageFiles Include="$(RuntimeStoreDestination)\**\*.*" Condition="$(RuntimeStoreDestination) != ''">
|
|
<PackagePath>tools\</PackagePath>
|
|
<Visible>false</Visible>
|
|
<BuildAction>Content</BuildAction>
|
|
</_PackageFiles>
|
|
</ItemGroup>
|
|
|
|
</Target>
|
|
|
|
</Project>
|
|
|