Adds project properties and project capabilities to IIS and IISIntegration (#969)

This commit is contained in:
Justin Kotalik 2018-07-12 11:00:01 -07:00 committed by GitHub
parent ba599c49bb
commit e5dfea5725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View File

@ -3,7 +3,11 @@
Capability that enables Visual Studio support for hosting Asp.Net Core applications in the IIS process
-->
<ItemGroup>
<ProjectCapability Include="AspNetInProcessHosting" />
<ProjectCapability Include="AspNetCoreInProcessHosting" />
</ItemGroup>
<PropertyGroup>
<AspNetCoreModuleVersion Condition=" '$(AspNetCoreModuleVersion)' == '' ">V2</AspNetCoreModuleVersion>
</PropertyGroup>
</Project>

View File

@ -23,6 +23,7 @@
<PackageReference Include="Microsoft.AspNetCore.HttpOverrides" Version="$(MicrosoftAspNetCoreHttpOverridesPackageVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(MicrosoftExtensionsLoggingAbstractionsPackageVersion)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(MicrosoftExtensionsOptionsPackageVersion)" />
<Content Include="$(PackageId).targets" PackagePath="build/$(TargetFramework)/" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,7 @@
<Project>
<PropertyGroup>
<AspNetCoreModuleVersion Condition=" '$(AspNetCoreModuleVersion)' == '' ">V2</AspNetCoreModuleVersion>
</PropertyGroup>
</Project>