File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
test/Microsoft.OpenApi.Tests Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 43
43
<None Update =" UtilityFiles\postmanCollection_ver2.json" >
44
44
<CopyToOutputDirectory >Always</CopyToOutputDirectory >
45
45
</None >
46
+ <None Update =" UtilityFiles\Todo.xml" >
47
+ <CopyToOutputDirectory >Always</CopyToOutputDirectory >
48
+ </None >
46
49
</ItemGroup >
47
50
</Project >
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments