-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCycloneDX.Spdx.csproj
More file actions
32 lines (26 loc) · 1.2 KB
/
CycloneDX.Spdx.csproj
File metadata and controls
32 lines (26 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
<Product>CycloneDX.Spdx</Product>
<Description>A .NET Standard library for SPDX documents.</Description>
<PackageId>CycloneDX.Spdx</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" />
</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.5" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Schemas\*" />
</ItemGroup>
<ItemGroup>
<None Remove="schemas\spdx-2.3.schema.json" />
<None Remove="Schemas\spdx-2.3.schema.xsd" />
</ItemGroup>
</Project>