-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathDevExtreme.OData.csproj
More file actions
30 lines (29 loc) · 1.79 KB
/
DevExtreme.OData.csproj
File metadata and controls
30 lines (29 loc) · 1.79 KB
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
30
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DevExpress.Persistent.BaseImpl.Xpo" Version="25.2.1-alpha-25302" />
<PackageReference Include="DevExpress.ExpressApp.Security.Xpo" Version="25.2.1-alpha-25302" />
<PackageReference Include="DevExpress.ExpressApp.WebApi.Xpo" Version="25.2.1-alpha-25302" />
<PackageReference Include="DevExpress.ExpressApp.WebApi" Version="25.2.1-alpha-25302" />
<PackageReference Include="DevExpress.ExpressApp.Security.AspNetCore" Version="25.2.1-alpha-25302" />
<PackageReference Include="Microsoft.AspNetCore.OData" Version="9.3.2" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
</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="RestoreResult" TaskParameter="ConsoleOutput" />
</Exec>
<Error Condition="$(RestoreResult.Contains('DevExpress'))" ContinueOnError="false" Text="The DevExpress packages were not restored. Make sure you've configured your NuGet feed: https://nuget.devexpress.com/ " />
</Target>
</Project>