forked from ByteBardOrg/AsyncAPI.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathByteBard.AsyncAPI.Readers.csproj
More file actions
36 lines (32 loc) · 1.46 KB
/
ByteBard.AsyncAPI.Readers.csproj
File metadata and controls
36 lines (32 loc) · 1.46 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../Common.Build.props" />
<PropertyGroup>
<Nullable>disable</Nullable>
<Description>AsyncAPI.NET Readers for JSON and YAML documents</Description>
<PackageId>ByteBard.AsyncAPI.NET.Readers</PackageId>
<AssemblyName>ByteBard.AsyncAPI.Readers</AssemblyName>
<RootNamespace>ByteBard.AsyncAPI.Readers</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JsonPointer.Net" Version="5.3.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="9.0.1" Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1'" />
<PackageReference Include="YamlDotNet" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="ByteBard.AsyncAPI.Tests" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ByteBard.AsyncAPI\ByteBard.AsyncAPI.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Bindings\" />
</ItemGroup>
</Project>