-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathDevExtreme.OData.csproj
27 lines (27 loc) · 1.67 KB
/
DevExtreme.OData.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="microsoft.aspnetcore.odata" Version="8.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.sqlserver" Version="8.*" />
<PackageReference Include="DevExpress.Persistent.BaseImpl.EFCore" Version="24.2.2-beta-24326" />
<PackageReference Include="DevExpress.ExpressApp.WebApi" Version="24.2.2-beta-24326" />
<PackageReference Include="DevExpress.ExpressApp.Security.AspNetCore" Version="24.2.2-beta-24326" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.9.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\BusinessObjectsLibrary\BusinessObjectsLibrary.csproj" />
<ProjectReference Include="..\..\DatabaseUpdater\DatabaseUpdater.csproj" />
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="dotnet restore DevExtreme.OData.csproj" ConsoleToMSBuild="true" ContinueOnError="false" IgnoreStandardErrorWarningFormat="true" LogStandardErrorAsError="false" IgnoreExitCode="true">
<Output PropertyName="ExitCode" TaskParameter="ExitCode" />
</Exec>
<Error Condition="$(ErrorCode) != ''" ContinueOnError="false" Text="The DevExpress packages were not restored. Make sure you've configured your NuGet feed: https://nuget.devexpress.com/ " />
</Target>
</Project>