-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSyntaxEditor_CustomLanguage.csproj
More file actions
34 lines (27 loc) · 1.14 KB
/
Copy pathSyntaxEditor_CustomLanguage.csproj
File metadata and controls
34 lines (27 loc) · 1.14 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
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;NETCore</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;NETCore</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="Data\syntaxeditor\PythonSource.py" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.19" />
<PackageReference Include="Syncfusion.Edit.WPF" Version="18.4.0.30" />
<PackageReference Include="Syncfusion.SfSkinManager.WPF" Version="18.4.0.30" />
<PackageReference Include="Syncfusion.Themes.MaterialDark.WPF" Version="18.4.0.30" />
</ItemGroup>
<ItemGroup>
<Content Include="Data\syntaxeditor\PythonSource.py">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>