mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-26 06:02:50 +08:00

* breaking upgrade base build image to net5.0 * add make and build tools to image * fix code broken after net5.0 upgrade * fix warnings * fix tests and line endings * upgrade dotnet test and coverages packages * update circle build image * removed rafty and updated more packages * bring back develop * rename authorisation to authorization
16 lines
546 B
XML
16 lines
546 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.8" />
|
|
<PackageReference Include="Ocelot" Version="14.0.9" />
|
|
<PackageReference Include="Ocelot.Provider.Kubernetes" Version="14.0.9" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|