Skip to content

Commit

Permalink
Fixed build from Visual Studio 2012
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpar committed Mar 27, 2014
1 parent 34bde0b commit 2ecdbf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file not shown.
3 changes: 2 additions & 1 deletion Src/CleanVsix/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ static void CleanFiles(string path)
foreach (var filePath in Directory.GetFiles(path))
{
var fileName = Path.GetFileName(filePath);
if (fileName.StartsWith("Microsoft.VisualStudio."))
if (fileName.StartsWith("Microsoft.VisualStudio.") ||
fileName.StartsWith("FSharp.Core"))
{
File.Delete(filePath);
}
Expand Down

0 comments on commit 2ecdbf1

Please sign in to comment.