Skip to content

Commit 73339e1

Browse files
committed
Add a sample csdl file for testing and copy to output directory
1 parent cb8ef3a commit 73339e1

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

test/Microsoft.OpenApi.Tests/Microsoft.OpenApi.Tests.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,8 @@
4343
<None Update="UtilityFiles\postmanCollection_ver2.json">
4444
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
4545
</None>
46+
<None Update="UtilityFiles\Todo.xml">
47+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
48+
</None>
4649
</ItemGroup>
4750
</Project>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
2+
<edmx:DataServices>
3+
<Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="microsoft.graph" >
4+
5+
<EntityContainer Name="TodoService">
6+
<EntitySet Name="Todos" EntityType="microsoft.graph.Todo">
7+
</EntitySet>
8+
</EntityContainer>
9+
10+
<EntityType Name="Todo" HasStream="true">
11+
<Key>
12+
<PropertyRef Name="Id"/>
13+
</Key>
14+
<Property Name="Id" Type="Edm.String"/>
15+
<Property Name="Logo" Type="Edm.Stream"/>
16+
<Property Name="Description" Type="Edm.String"/>
17+
</EntityType>
18+
19+
</Schema>
20+
</edmx:DataServices>
21+
</edmx:Edmx>

0 commit comments

Comments
 (0)