Skip to content

Commit 5b6a1ff

Browse files
committed
Building and running tests on 2012 only
Updated the build so that I can build + run tests on 2012. Still need work on App.Config so I can run on any install configuration. Right now App.Config will be included on Vs2010 runs and break everything by redirecting to 11.0. Need to conditionally include App.Config
1 parent 66b7358 commit 5b6a1ff

14 files changed

+164
-40
lines changed

.gitignore

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
# Binary files
99
*.exe
10-
*.dll
1110
*.dbg
1211
*.pcb
1312
*.ncb
@@ -48,24 +47,6 @@ Release/
4847
Samples/HighlightCommentKinds/bin
4948
Samples/HighlightCommentKinds/obj
5049

51-
# VS Binaries
52-
Microsoft.VisualStudio.CoreUtility.dll
53-
Microsoft.VisualStudio.Editor.dll
54-
Microsoft.VisualStudio.Editor.Implementation.dll
55-
Microsoft.VisualStudio.Language.Intellisense.dll
56-
Microsoft.VisualStudio.Language.StandardClassification.dll
57-
Microsoft.VisualStudio.Platform.VSEditor.dll
58-
Microsoft.VisualStudio.Platform.VSEditor.Interop.dll
59-
Microsoft.VisualStudio.Shell.ViewManager.dll
60-
Microsoft.VisualStudio.Text.Data.dll
61-
Microsoft.VisualStudio.Text.Logic.dll
62-
Microsoft.VisualStudio.Text.UI.dll
63-
Microsoft.VisualStudio.Text.Internal.dll
64-
Microsoft.VisualStudio.Text.UI.dll
65-
Microsoft.VisualStudio.Text.UI.Wpf.dll
66-
Microsoft.VisualStudio.UI.Undo.dll
67-
FSharp.Core.dll
68-
6950
# Profiling Output
7051
*.vsp
7152

EditorUtils.settings

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,8 @@
1414
<Vs2010InstallDir>$(registry:HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\VisualStudio\10.0@InstallDir)</Vs2010InstallDir>
1515
<Vs2012InstallDir>$(registry:HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\VisualStudio\11.0@InstallDir)</Vs2012InstallDir>
1616
</PropertyGroup>
17+
18+
<PropertyGroup>
19+
<ReferencePath>$(ReferencePath);$(MSBuildThisFileDirectory)References\Vs2010</ReferencePath>
20+
</PropertyGroup>
1721
</Project>
49.9 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
131 KB
Binary file not shown.
85.9 KB
Binary file not shown.
113 KB
Binary file not shown.
111 KB
Binary file not shown.

Src/EditorUtils.settings

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\EditorUtils.settings" />
4+
</Project>

0 commit comments

Comments
 (0)