-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSamplePlugin.csproj
More file actions
33 lines (28 loc) · 1020 Bytes
/
Copy pathSamplePlugin.csproj
File metadata and controls
33 lines (28 loc) · 1020 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
<UseWPF>true</UseWPF>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<!-- 设置为 true 可在编译后自动打包 .icpx 插件包 -->
<CreateIcpx>false</CreateIcpx>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="iNKORE.UI.WPF.Modern" Version="0.10.2.1" />
<PackageReference Include="iNKORE.UI.WPF" Version="1.2.8" />
</ItemGroup>
<ItemGroup>
<Reference Include="InkCanvas.PluginSdk">
<HintPath>lib\InkCanvas.PluginSdk.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="InkCanvas.Controls">
<HintPath>lib\InkCanvas.Controls.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<!-- 自动将 manifest.json 复制到输出目录 -->
<ItemGroup>
<None Include="manifest.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>