Fix issue #1088 (Ocelot Administration doesn't work with .NET Core 3.x)

This commit is contained in:
EL Aisati Ahmed
2020-02-04 18:20:33 +01:00
parent 157737ef01
commit f4eb93b66c
3 changed files with 18 additions and 15 deletions

View File

@ -1,13 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\"/>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup> <PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Ocelot" Version="14.0.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Ocelot" Version="12.0.1"/>
<PackageReference Include="Ocelot.Administration" Version="0.1.0"/>
<ProjectReference Include="..\..\src\Ocelot.Administration\Ocelot.Administration.csproj" />
</ItemGroup>
</Project>