Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 011b073

Browse files
committed
- It's now working perfectly in VS2013! I upgraded the project references and added a post-build event to copy it to the users's Visualizers folder under My Documents.
1 parent d39a526 commit 011b073

File tree

5 files changed

+93
-26
lines changed

5 files changed

+93
-26
lines changed

.gitignore

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# OS junk
2+
[Tt]humbs.db
3+
*.DS_Store
4+
5+
# Visual Studio
6+
*.[Oo]bj
7+
*.user
8+
*.aps
9+
*.pch
10+
*.vspscc
11+
*.vssscc
12+
*_i.c
13+
*_p.c
14+
*.ncb
15+
*.suo
16+
*.tlb
17+
*.tlh
18+
*.bak
19+
*.[Cc]ache
20+
*.ilk
21+
*.log
22+
*.lib
23+
*.sbr
24+
*.sdf
25+
*.opensdf
26+
*.unsuccessfulbuild
27+
*_Report.htm
28+
ipch/
29+
obj/
30+
[Bb]in/
31+
[Dd]ebug/ # removed the * so DebugNoRef would be caught
32+
[Rr]elease*/
33+
Ankh.NoLoad
34+
35+
# Tooling
36+
_ReSharper*/
37+
*.resharper
38+
[Tt]est[Rr]esult*
39+
*DXCore.Solution
40+
*sln.ide/
41+
*.sln.ide
42+
43+
44+
# Project
45+
[Bb]uild/
46+
*.tmp_proj
47+
48+
# Subversion
49+
.svn
50+
51+
# Office Temp
52+
~$*
53+
54+
#NuGet
55+
packages/
56+
57+
# Lightswitch
58+
*.lsproj.user
59+
# ServiceConfiguration.cscfg # not including this caused me problems when the csdef was included!
60+
# _Pvt_Extensions/ # need this commented out with the next line enabled for build server to work with LS projects
61+
LsPkgLastWriteTime.txt
62+
GeneratedArtifacts/
63+
64+
# PowerGREP Backup files
65+
Backup*
66+
67+
# file exceptions
68+
!Bin/Data/ApplicationDatabase.mdf
69+
!Bin/Data/ApplicationDatabase_log.ldf
70+
71+
72+
*.jcsettings.xml
73+
/.nuget/NuGet.exe
74+
*.wadcfg
75+
*.jtconfig
76+
*.FileListAbsolute.txt
77+
*/ModelManifest.xml
78+
*.jmconfig

ExpressionTreeVisualizer/ExpressionTreeViewer/ExpressionTreeViewer.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@
4141
<StartupObject />
4242
</PropertyGroup>
4343
<ItemGroup>
44-
<Reference Include="Microsoft.VisualStudio.DebuggerVisualizers, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
44+
<Reference Include="Microsoft.VisualStudio.DebuggerVisualizers, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
45+
<SpecificVersion>False</SpecificVersion>
46+
<HintPath>..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\ReferenceAssemblies\v2.0\Microsoft.VisualStudio.DebuggerVisualizers.dll</HintPath>
47+
</Reference>
4548
<Reference Include="System" />
4649
<Reference Include="System.Core" />
4750
<Reference Include="System.Xml.Linq" />
@@ -87,6 +90,9 @@
8790
</Compile>
8891
</ItemGroup>
8992
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
93+
<PropertyGroup>
94+
<PostBuildEvent>xcopy /E /Y "$(TargetPath)" "%25USERPROFILE%25\Documents\Visual Studio 2013\Visualizers"</PostBuildEvent>
95+
</PropertyGroup>
9096
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9197
Other similar extension points exist, see Microsoft.Common.targets.
9298
<Target Name="BeforeBuild">

ExpressionTreeVisualizer/ExpressionTreeVisualizer.sln renamed to ExpressionTreeVisualizer/ExpressionTreeVisualizer-VS2013.sln

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11

2-
Microsoft Visual Studio Solution File, Format Version 11.00
3-
# Visual Studio 2010
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.30723.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
46
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExpressionTreeViewer", "ExpressionTreeViewer\ExpressionTreeViewer.csproj", "{E2FF72F9-B1A5-4673-BED0-A06F46C3E3E9}"
57
EndProject
68
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp", "TestApp\TestApp.csproj", "{C795C4E5-E8D1-43E8-8CAA-309D540137ED}"
79
EndProject
810
Global
9-
GlobalSection(TeamFoundationVersionControl) = preSolution
10-
SccNumberOfProjects = 3
11-
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
12-
SccTeamFoundationServer = https://tfs.codeplex.com/tfs/tfs19
13-
SccLocalPath0 = .
14-
SccProjectUniqueName1 = ExpressionTreeViewer\\ExpressionTreeViewer.csproj
15-
SccProjectName1 = ExpressionTreeViewer
16-
SccLocalPath1 = ExpressionTreeViewer
17-
SccProjectUniqueName2 = TestApp\\TestApp.csproj
18-
SccProjectName2 = TestApp
19-
SccLocalPath2 = TestApp
20-
EndGlobalSection
2111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2212
Debug|x86 = Debug|x86
2313
Release|x86 = Release|x86

ExpressionTreeVisualizer/ExpressionTreeVisualizer.vssscc

Lines changed: 0 additions & 10 deletions
This file was deleted.

ExpressionTreeVisualizer/TestApp/TestApp.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@
3838
<WarningLevel>4</WarningLevel>
3939
</PropertyGroup>
4040
<ItemGroup>
41-
<Reference Include="Microsoft.VisualStudio.DebuggerVisualizers, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
41+
<Reference Include="Microsoft.VisualStudio.DebuggerVisualizers, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
42+
<SpecificVersion>False</SpecificVersion>
43+
<HintPath>..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\ReferenceAssemblies\v2.0\Microsoft.VisualStudio.DebuggerVisualizers.dll</HintPath>
44+
</Reference>
4245
<Reference Include="System" />
4346
<Reference Include="System.Core" />
4447
<Reference Include="System.Xml.Linq" />

0 commit comments

Comments
 (0)