AzureADSample.csproj 861 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup>
  6. <RazorCompileOnBuild>true</RazorCompileOnBuild>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Reference Include="Microsoft.AspNetCore.Authentication.AzureAD.UI" />
  10. <Reference Include="Microsoft.AspNetCore.HttpsPolicy" />
  11. <Reference Include="Microsoft.AspNetCore.Mvc" />
  12. <Reference Include="Microsoft.AspNetCore.Server.IISIntegration" />
  13. <Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
  14. <Reference Include="Microsoft.AspNetCore.StaticFiles" />
  15. <Reference Include="Microsoft.Extensions.Configuration.Json" />
  16. <Reference Include="Microsoft.Extensions.Logging.Console" />
  17. <Reference Include="Microsoft.Extensions.Logging.Debug" />
  18. </ItemGroup>
  19. </Project>