40 lines
2.8 KiB
XML
40 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework Condition="'$(Framework)' != 'netcoreapp1.1' AND '$(TargetFrameworkOverride)' == ''">netcoreapp1.0</TargetFramework>
|
|
<TargetFramework Condition="'$(Framework)' == 'netcoreapp1.1' AND '$(TargetFrameworkOverride)' == ''">netcoreapp1.1</TargetFramework>
|
|
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">TargetFrameworkOverride</TargetFramework>
|
|
<PackageTargetFallback>$(PackageTargetFallback);portable-net45+win8+wp8+wpa81;</PackageTargetFallback>
|
|
<UserSecretsId Condition="'$(OrganizationalAuth)' == 'True'">aspnet-Company.WebApplication1-53bc9b9d-9d6a-45d4-8429-2a2761773502</UserSecretsId>
|
|
<WebProject_DirectoryAccessLevelKey Condition="'$(OrganizationalAuth)' == 'True' AND '$(OrgReadAccess)' != 'True'">0</WebProject_DirectoryAccessLevelKey>
|
|
<WebProject_DirectoryAccessLevelKey Condition="'$(OrganizationalAuth)' == 'True' AND '$(OrgReadAccess)' == 'True'">1</WebProject_DirectoryAccessLevelKey>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(Framework)' != 'netcoreapp1.1'">
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" Condition="'$(IncludeApplicationInsights)' == 'True'" />
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="1.0.5" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="1.0.3" Condition="'$(OrganizationalAuth)' == 'True'" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.4" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="1.0.2" Condition="'$(OrganizationalAuth)' == 'True'" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.0.2" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Framework)' == 'netcoreapp1.1'">
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" Condition="'$(IncludeApplicationInsights)' == 'True'" />
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="1.1.2" Condition="'$(OrganizationalAuth)' == 'True'" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="1.1.2" Condition="'$(OrganizationalAuth)' == 'True'" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="1.0.1" Condition="'$(OrganizationalAuth)' == 'True'" />
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|