-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodata-error.csproj
29 lines (23 loc) · 1.05 KB
/
odata-error.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp6.0</TargetFramework>
<RootNamespace>odata_error</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Content Remove="TestData\ControllerTests.Data.AzureClassUser.json" />
<Content Remove="TestData\ControllerTests.Data.ConfigNode.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestData\ControllerTests.Data.AzureClassUser.json" />
<EmbeddedResource Include="TestData\ControllerTests.Data.ConfigNode.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OData" Version="8.2.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.21" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.21" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.21" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>