-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressionTreeExplorer.Vsix.csproj
More file actions
48 lines (44 loc) · 1.77 KB
/
Copy pathExpressionTreeExplorer.Vsix.csproj
File metadata and controls
48 lines (44 loc) · 1.77 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.2</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\icon.png" />
<None Remove="Assets\preview.png" />
<None Remove="ExpressionTreeControl.xaml" />
<None Remove="LICENSE.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="ExpressionTreeControl.xaml">
<Generator>MSBuild:Compile</Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Extensibility.Sdk" Version="17.9.2092" />
<PackageReference Include="Microsoft.VisualStudio.Extensibility.Build" Version="17.9.2092" />
</ItemGroup>
<ItemGroup>
<Content Include="..\ExpressionTreeExplorer.ObjectSource\bin\$(Configuration)\netstandard2.0\ExpressionTreeExplorer.ObjectSource.dll">
<Link>netstandard2.0\ExpressionTreeExplorer.ObjectSource.dll</Link>
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="..\ExpressionTreeExplorer.Core\bin\$(Configuration)\netstandard2.0\ExpressionTreeExplorer.Core.dll">
<Link>netstandard2.0\ExpressionTreeExplorer.Core.dll</Link>
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Content>
<Content Include="Assets\icon.png" />
<Content Include="Assets\preview.png" />
<Content Include="LICENSE.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ExpressionTreeExplorer.Core\ExpressionTreeExplorer.Core.csproj" />
<ProjectReference Include="..\ExpressionTreeExplorer.ObjectSource\ExpressionTreeExplorer.ObjectSource.csproj" />
</ItemGroup>
</Project>