forked from RehanSaeed/Schema.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSchema.NET.Pending.csproj
More file actions
31 lines (25 loc) · 1.37 KB
/
Schema.NET.Pending.csproj
File metadata and controls
31 lines (25 loc) · 1.37 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Build">
<IncludePendingSchemaObjects>True</IncludePendingSchemaObjects>
<EmitCompilerGeneratedFiles>True</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GeneratedFiles</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<PropertyGroup Label="Package">
<PackageId>SchemaDotNet.Pending</PackageId>
<Product>SchemaDotNet.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="10.0.1"/>
</ItemGroup>
<ItemGroup Label="Package References">
<ProjectReference Include="../../Tools/Schema.NET.Tool/Schema.NET.Tool.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
</ItemGroup>
<ItemGroup Label="Common Code">
<Compile Include="../Common/*.*"/>
</ItemGroup>
<ItemGroup Label="Source Generation">
<AdditionalFiles Include="../../Data/*.*" LinkBase="Data"/>
</ItemGroup>
</Project>