-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCycloneDX.Core.csproj
More file actions
29 lines (24 loc) · 1.32 KB
/
CycloneDX.Core.csproj
File metadata and controls
29 lines (24 loc) · 1.32 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Product>CycloneDX.Core</Product>
<Description>A .NET Standard library for CycloneDX bill-of-material documents.</Description>
<PackageId>CycloneDX.Core</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="JsonSchema.Net" Version="9.1.1" />
<PackageReference Include="protobuf-net" Version="3.2.56" />
<PackageReference Include="protobuf-net.BuildTools" Version="3.2.52" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
</ItemGroup>
<!--The below packages are natively provided by the framework hence are not need for the frameworks which they are included in. What is included can be checked via https://apisof.net/-->
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Schemas\*" />
</ItemGroup>
</Project>