-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodingWithCalvin.GitRanger.csproj
More file actions
53 lines (47 loc) · 2.11 KB
/
Copy pathCodingWithCalvin.GitRanger.csproj
File metadata and controls
53 lines (47 loc) · 2.11 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
<Project Sdk="CodingWithCalvin.VsixSdk/0.4.0">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>CodingWithCalvin.GitRanger</RootNamespace>
<AssemblyName>CodingWithCalvin.GitRanger</AssemblyName>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<OutputPath>bin/$(Configuration)/</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CodingWithCalvin.Otel4Vsix" Version="0.2.2" />
<PackageReference Include="Community.VisualStudio.Toolkit.17" Version="17.0.507" />
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.14.40265" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.*" PrivateAssets="all" />
<PackageReference Include="LibGit2Sharp" Version="0.30.0" />
<PackageReference Include="SkiaSharp" Version="2.88.7" />
<PackageReference Include="SkiaSharp.Views.WPF" Version="2.88.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CodingWithCalvin.GitRanger.Core\CodingWithCalvin.GitRanger.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\resources\icon.png" Link="Resources\icon.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="..\..\LICENSE" Link="Resources\LICENSE">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
</ItemGroup>
<!-- Include LibGit2Sharp native binaries in VSIX -->
<Target Name="IncludeLibGit2SharpNativeBinaries" AfterTargets="ResolveReferences">
<ItemGroup>
<!-- x64 native library -->
<Content Include="$(OutputPath)lib\win32\x64\*.dll">
<Link>lib\win32\x64\%(Filename)%(Extension)</Link>
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<!-- arm64 native library -->
<Content Include="$(OutputPath)lib\win32\arm64\*.dll">
<Link>lib\win32\arm64\%(Filename)%(Extension)</Link>
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Target>
</Project>