Skip to content

Commit

Permalink
[+] VS2015 support added
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaAI committed Sep 29, 2015
1 parent 83ee081 commit c54678e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .AnFake/Extras/vs-setup.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ let vsSupportedVersions =
[
"11.0".AsVersion()
"12.0".AsVersion()
"14.0".AsVersion()
]

let vsExternalTools =
Expand Down
1 change: 1 addition & 0 deletions AnFake.Core/MsBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public static class MsBuild
{
private static readonly string[] MsLocations =
{
"[ProgramFilesX86]/MSBuild/14.0/Bin/MsBuild.exe",
"[ProgramFilesX86]/MSBuild/12.0/Bin/MsBuild.exe",
"[ProgramFilesX86]/MSBuild/11.0/Bin/MsBuild.exe",
"[Windows]/Microsoft.NET/Framework/v4.0.30319/MsBuild.exe",
Expand Down
1 change: 1 addition & 0 deletions AnFake.Core/MsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public static class MsTest
{
private static readonly string[] Locations =
{
"[ProgramFilesX86]/Microsoft Visual Studio 14.0/Common7/IDE/MsTest.exe",
"[ProgramFilesX86]/Microsoft Visual Studio 12.0/Common7/IDE/MsTest.exe",
"[ProgramFilesX86]/Microsoft Visual Studio 11.0/Common7/IDE/MsTest.exe"
};
Expand Down
1 change: 1 addition & 0 deletions AnFake.Core/VsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public static class VsTest
{
private static readonly string[] Locations =
{
"[ProgramFilesX86]/Microsoft Visual Studio 14.0/Common7/IDE/CommonExtensions/Microsoft/TestWindow/vstest.console.exe",
"[ProgramFilesX86]/Microsoft Visual Studio 12.0/Common7/IDE/CommonExtensions/Microsoft/TestWindow/vstest.console.exe",
"[ProgramFilesX86]/Microsoft Visual Studio 11.0/Common7/IDE/CommonExtensions/Microsoft/TestWindow/vstest.console.exe"
};
Expand Down
3 changes: 2 additions & 1 deletion ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
* [+] TeamCity support started.
* [*] Automatically load TFS 2013 assemblies if TFS 2012 one not found.
* [+] Speed-up start: using pre-compiled fsx script if possible.
* [+] AssemblyInfo.cpp support implemented.
* [+] AssemblyInfo.cpp support implemented.
* [+] VS2015 support added.

0 comments on commit c54678e

Please sign in to comment.