-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDXRichEditSyntaxExample.Net5.csproj
31 lines (31 loc) · 1.47 KB
/
DXRichEditSyntaxExample.Net5.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>DXRichEditSyntaxExample</RootNamespace>
<AssemblyName>DXRichEditSyntaxExample</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
<Platforms>x86;AnyCPU</Platforms>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<DefaultItemExcludes>obj*/**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="CarsXtraScheduling.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DevExpress.Data" Version="24.2.*-*" />
<PackageReference Include="DevExpress.Data.Desktop" Version="24.2.*-*" />
<PackageReference Include="DevExpress.Mvvm" Version="24.2.*-*" />
<PackageReference Include="DevExpress.Office.Core" Version="24.2.*-*" />
<PackageReference Include="DevExpress.RichEdit.Core" Version="24.2.*-*" />
<PackageReference Include="DevExpress.Wpf.Core" Version="24.2.*-*" />
<PackageReference Include="DevExpress.Wpf.Office" Version="24.2.*-*" />
<PackageReference Include="DevExpress.Wpf.RichEdit" Version="24.2.*-*" />
<PackageReference Include="DevExpress.Wpf.Themes.All" Version="24.2.*-*" />
</ItemGroup>
</Project>