-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBasePlugin.csproj
More file actions
64 lines (56 loc) · 2.22 KB
/
Copy pathBasePlugin.csproj
File metadata and controls
64 lines (56 loc) · 2.22 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net481</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<OutputType>Library</OutputType>
<AssemblyName>BasePlugin</AssemblyName>
<RootNamespace>BasePlugin</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>8.0</LangVersion>
<UseWPF>true</UseWPF>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Office.Interop.Excel" Version="15.0.4795.1000" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Drawing" />
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
<Reference Include="System.Xaml" />
<Reference Include="DTI_Tool.AddIn.Common">
<HintPath>DTI_Tool.IPlugin.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="manifest.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="WPF\Views\" />
<Folder Include="WPF\ViewModels\" />
<Folder Include="WPF\Controls\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<PropertyGroup>
<PluginOutputDir>..\..\bin\Debug\Plugins\BasePlugin</PluginOutputDir>
</PropertyGroup>
<MakeDir Directories="$(PluginOutputDir)" />
<Copy SourceFiles="$(OutputPath)BasePlugin.dll" DestinationFolder="$(PluginOutputDir)" />
<Copy SourceFiles="$(OutputPath)manifest.json" DestinationFolder="$(PluginOutputDir)" />
<Copy SourceFiles="$(OutputPath)README.md" DestinationFolder="$(PluginOutputDir)" Condition="Exists('$(OutputPath)README.md')" />
</Target>
</Project>