-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathVsixLib.targets
37 lines (26 loc) · 1.1 KB
/
VsixLib.targets
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
<?xml version="1.0" encoding="utf-8"?>
<!--
The main VSPackage uses this for adding into vsix something as Content below.
eg. ~
<Content Include="bin\*.dll">
<Visible>false</Visible>
<Link>%(Filename)%(Extension)</Link>
<IncludeInVSIX>true</IncludeInVSIX>
<VSIXSubPath>x64\</VSIXSubPath>
</Content>
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(vsSBE_SDK)' != '' and '$(SdklibTarget)' != ''">
<_SDK_Lib>$(SolutionDir)packages\vsSBE.SDK.$(vsSBE_SDK)\lib\$(SdklibTarget)</_SDK_Lib>
</PropertyGroup>
<ItemGroup>
<!-- tools -->
<VsixLib Include="$(SolutionDir)\.tools\gnt.bat" />
<VsixLib Include="$(SolutionDir)\.tools\hMSBuild.bat" />
<VsixLib Include="$(SolutionDir)\.tools\netfx4sdk.cmd" />
<VsixLib Include="$(SolutionDir)packages\7z.Libs.*\bin\x86\7z.dll" />
</ItemGroup>
<ItemGroup Label="x64">
<VsixLibX64 Include="$(SolutionDir)packages\7z.Libs.*\bin\x64\7z.dll" />
</ItemGroup>
</Project>