-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathDevProxy.Abstractions.csproj
More file actions
50 lines (46 loc) · 2.59 KB
/
Copy pathDevProxy.Abstractions.csproj
File metadata and controls
50 lines (46 loc) · 2.59 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>DevProxy.Abstractions</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<IsPackable>true</IsPackable>
<PackageId>DevProxy.Abstractions</PackageId>
<Title>Dev Proxy Abstractions</Title>
<Authors>Dev Proxy</Authors>
<Description>Abstractions for building custom Dev Proxy plugins. Dev Proxy is an API simulator that helps you effortlessly test your app beyond the happy path.</Description>
<PackageTags>devproxy;api;proxy;testing;mocking;plugins</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://aka.ms/devproxy</PackageProjectUrl>
<RepositoryUrl>https://github.com/dotnet/dev-proxy</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<!-- NU5104: stable package depends on prerelease System.CommandLine; suppress until a stable version is available -->
<NoWarn>NU5104</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="..\media\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Markdig" Version="1.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.8" />
<PackageReference Include="Microsoft.OpenApi" Version="3.5.3" />
<PackageReference Include="Microsoft.OpenApi.YamlReader" Version="3.5.3" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
<PackageReference Include="Scriban" Version="7.2.0" />
<PackageReference Include="System.CommandLine" Version="2.0.8" />
<PackageReference Include="Unobtanium.Web.Proxy" Version="0.1.5" />
<PackageReference Include="YamlDotNet" Version="17.1.0" />
</ItemGroup>
</Project>