Demo project on working with
Add the following XML snippet to your .csproj file to include a JSON schema as an embedded resource:
<!-- Example embedded schema -->
<Project>
<ItemGroup>
<None Include="CustomerCreatedEvent.schema.json"/>
<EmbeddedResource Include="CustomerCreatedEvent.schema.json">
<DependentUpon>CustomerCreatedEvent.cs</DependentUpon>
<LogicalName>CustomerCreatedEvent.schema.json</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>