-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCustomControlExample.AspNetCore.csproj
44 lines (44 loc) · 2.22 KB
/
CustomControlExample.AspNetCore.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Reports\**" />
<Content Remove="Reports\**" />
<EmbeddedResource Remove="Reports\**" />
<None Remove="Reports\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Data\nwind.db" />
</ItemGroup>
<ItemGroup>
<Content Include="Data\nwind.db">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="PredefinedReports\*.vsrepx" />
</ItemGroup>
<Target Name="DebugEnsureNodeEnv" BeforeTargets="LibraryManagerRestore" Condition=" '$(Configuration)' == 'Debug' And !Exists('node_modules') ">
<!-- Ensure Node.js is installed -->
<Exec Command="node --version" ContinueOnError="true">
<Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
</Exec>
<Error Condition="'$(ErrorCode)' != '0'" Text="Node.js is required to build and run this project. To continue, please install Node.js from https://nodejs.org/, and then restart your command prompt or IDE." />
<Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." />
<Exec Command="npm install" />
</Target>
<ItemGroup>
<PackageReference Include="System.Data.SQLite" Version="1.0.117" />
<PackageReference Include="DevExpress.AspNetCore.Reporting" Version="24.2.2-beta" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
<PackageReference Include="BuildBundlerMinifier" Version="3.0.415" />
<PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="2.0.96" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\DevExpress.XtraReports.CustomControls.RoundedControls\DevExpress.XtraReports.CustomControls.RoundedControls.csproj" />
<ProjectReference Include="..\..\DevExpress.XtraReports.CustomControls.SwissQRBill\DevExpress.XtraReports.CustomControls.SwissQRBill.csproj" />
<ProjectReference Include="..\CustomControlExample.Report\CustomControlExample.Report.csproj" />
</ItemGroup>
</Project>