-
-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathSchema.NET.Pending.csproj
More file actions
34 lines (27 loc) · 1.6 KB
/
Schema.NET.Pending.csproj
File metadata and controls
34 lines (27 loc) · 1.6 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Build">
<TargetFrameworks>net7.0;net6.0;netstandard2.0;net472;net462</TargetFrameworks>
<EmitCompilerGeneratedFiles>True</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GeneratedFiles</CompilerGeneratedFilesOutputPath>
<IncludePendingSchemaObjects>True</IncludePendingSchemaObjects>
</PropertyGroup>
<PropertyGroup Label="Package">
<Product>Schema.NET.Pending</Product>
<Description>Schema.org objects (including pending types) turned into strongly typed C# POCO classes for use in .NET. All classes can be serialized into JSON/JSON-LD and XML, typically used to represent structured data in the head section of html page.</Description>
<PackageTags>Schema;.NET;Schema.org;Schema.NET;Structured Data;Google Structured Data</PackageTags>
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<ProjectReference Include="../../Tools/Schema.NET.Tool/Schema.NET.Tool.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup Label="Package References (.NET Framework)" Condition="'$(TargetFramework)' == 'net462'">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup Label="Common Code">
<Compile Include="../Common/*.*" />
</ItemGroup>
<ItemGroup Label="Source Generation">
<AdditionalFiles Include="../../Data/*.*" LinkBase="Data" />
</ItemGroup>
</Project>