-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCorvus.Json.CodeGeneration.CSharp.QuickStart.csproj
More file actions
80 lines (69 loc) · 4.21 KB
/
Copy pathCorvus.Json.CodeGeneration.CSharp.QuickStart.csproj
File metadata and controls
80 lines (69 loc) · 4.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(EndjinProjectPropsPath)" Condition="$(EndjinProjectPropsPath) != ''" />
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<NoWarn>CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<NoWarn>$(NoWarn);nullable</NoWarn>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Description>Quickstart library for embedding a C# Corvus.JsonSchema code generator in your own application.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Endjin.RecommendedPractices.GitHub" Version="2.1.18">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="System.Collections.Immutable" Version="9.0.0" />
<PackageReference Include="System.Reflection.Metadata" Version="9.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Corvus.Json.CodeGeneration.201909\Corvus.Json.CodeGeneration.201909.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.202012\Corvus.Json.CodeGeneration.202012.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.4\Corvus.Json.CodeGeneration.4.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.6\Corvus.Json.CodeGeneration.6.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.7\Corvus.Json.CodeGeneration.7.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.CorvusVocabulary\Corvus.Json.CodeGeneration.CorvusVocabulary.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.CSharp\Corvus.Json.CodeGeneration.CSharp.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.HttpClientDocumentResolver\Corvus.Json.CodeGeneration.HttpClientDocumentResolver.csproj" />
<ProjectReference Include="..\Corvus.Json.CodeGeneration.OpenApi30\Corvus.Json.CodeGeneration.OpenApi30.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.435" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Roslynator.Analyzers" Version="4.12.9" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="metaschema\corvus\meta\corvus-extensions.json" />
<EmbeddedResource Include="metaschema\corvus\schema.json" />
<EmbeddedResource Include="metaschema\draft2019-09\meta\applicator.json" />
<EmbeddedResource Include="metaschema\draft2019-09\meta\content.json" />
<EmbeddedResource Include="metaschema\draft2019-09\meta\core.json" />
<EmbeddedResource Include="metaschema\draft2019-09\meta\format.json" />
<EmbeddedResource Include="metaschema\draft2019-09\meta\hyper-schema.json" />
<EmbeddedResource Include="metaschema\draft2019-09\meta\meta-data.json" />
<EmbeddedResource Include="metaschema\draft2019-09\meta\validation.json" />
<EmbeddedResource Include="metaschema\draft2019-09\schema.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\applicator.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\content.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\core.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\format-annotation.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\format-assertion.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\hyper-schema.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\meta-data.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\unevaluated.json" />
<EmbeddedResource Include="metaschema\draft2020-12\meta\validation.json" />
<EmbeddedResource Include="metaschema\draft2020-12\schema.json" />
</ItemGroup>
</Project>