-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapitoolkit-dotnet.csproj
34 lines (33 loc) · 1.69 KB
/
apitoolkit-dotnet.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>2.1.1</Version>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageId>ApiToolkit.Net</PackageId>
<Authors>ApiToolkit</Authors>
<Company>ApiToolkit</Company>
<Description>Monitoring and Observability Middleware for your APIs</Description>
<PackageTags>Monitoring, Observability, Logging, API, APIs</PackageTags>
<RepositoryUrl>https://github.com/apitoolkit/apitoolkit-dotnet</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RootNamespace>ApiToolkitNet</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.0" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.0" />
<!-- Deprecated -->
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
</ItemGroup>
</Project>