forked from DevExpress-Examples/XAF_Security_E4908
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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
<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="23.2.4-pre-24023" />
<PackageReference Include="DevExpress.ExpressApp.Security.Xpo" Version="23.2.4-pre-24023" />
<PackageReference Include="DevExpress.ExpressApp.WebApi.Xpo" Version="23.2.4-pre-24023" />
<PackageReference Include="DevExpress.ExpressApp.WebApi" Version="23.2.4-pre-24023" />
<PackageReference Include="DevExpress.ExpressApp.Security.AspNetCore" Version="23.2.4-pre-24023" />
<PackageReference Include="Microsoft.AspNetCore.OData" Version="8.0.11" />
</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>