-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathVisualizer.csproj
More file actions
38 lines (33 loc) · 1.74 KB
/
Visualizer.csproj
File metadata and controls
38 lines (33 loc) · 1.74 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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>net472</TargetFrameworks>
<RootNamespace>ExpressionTreeVisualizer</RootNamespace>
<AssemblyName>ExpressionTreeVisualizer</AssemblyName>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<UseWPF>true</UseWPF>
<Version>0.0.0</Version>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.DebuggerVisualizers">
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.DebuggerVisualizers.dll</HintPath>
<Private>false</Private>
</Reference>
<PackageReference Include="ExpressionTreeToString" Version="3.4.65" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.31" />
<PackageReference Include="MultiSelectTreeView" Version="1.0.9" />
<PackageReference Include="ZSpitz.Util" Version="0.1.113" />
<PackageReference Include="ZSpitz.Util.Wpf" Version="0.1.113" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Octokit" Version="0.50.0" />
<ProjectReference Include="..\Debuggee\Debuggee.csproj" />
</ItemGroup>
<Import Project="..\UI\UI.projitems" Label="Shared" />
<Target Name="CopyPackageAssembliesToSubFolder" AfterTargets="ResolveReferences">
<ItemGroup>
<ReferenceCopyLocalPaths Condition=" '%(ReferenceCopyLocalPaths.NuGetPackageId)' != '' " Update="%(ReferenceCopyLocalPaths)" DestinationSubDirectory="ExpressionTreeVisualizer\" />
</ItemGroup>
</Target>
</Project>