24 lines
919 B
XML
24 lines
919 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<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>net451</TargetFramework>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<PackageTags>aspnet;logging;aspnetcore</PackageTags>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="applicationHost.xdt" />
|
|
<Content Include="bin\$(Configuration)\net451\Microsoft.Web.Xdt.Extensions.dll" PackagePath="content" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Web.Xdt.Extensions\Microsoft.Web.Xdt.Extensions.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |