mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-30 20:32:50 +08:00
39 lines
1.9 KiB
XML
39 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<NoPackageAnalysis>true</NoPackageAnalysis>
|
|
<Description>Provides Ocelot extensions to use Eureka</Description>
|
|
<AssemblyTitle>Ocelot.Provider.Eureka</AssemblyTitle>
|
|
<VersionPrefix>0.0.0-dev</VersionPrefix>
|
|
<AssemblyName>Ocelot.Provider.Eureka</AssemblyName>
|
|
<PackageId>Ocelot.Provider.Eureka</PackageId>
|
|
<PackageTags>API Gateway;.NET core</PackageTags>
|
|
<PackageProjectUrl>https://github.com/ThreeMammals/Ocelot.Provider.Eureka</PackageProjectUrl>
|
|
<PackageProjectUrl>https://github.com/ThreeMammals/Ocelot.Provider.Eureka</PackageProjectUrl>
|
|
<PackageIconUrl>http://threemammals.com/images/ocelot_logo.png</PackageIconUrl>
|
|
<RuntimeIdentifiers>win10-x64;osx.10.11-x64;osx.10.12-x64;win7-x64</RuntimeIdentifiers>
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
|
<Authors>Tom Pallister</Authors>
|
|
<CodeAnalysisRuleSet>..\..\codeanalysis.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>True</DebugSymbols>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Ocelot\Ocelot.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Steeltoe.Discovery.ClientCore" Version="2.3.0" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.66">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.0.0" />
|
|
</ItemGroup>
|
|
</Project>
|