Skip to content

Handle MSVC ABI toolchain #199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 2, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
300 changes: 0 additions & 300 deletions VisualRust.Project/DefaultRustLauncher.cs

This file was deleted.

4 changes: 3 additions & 1 deletion VisualRust.Project/Forms/BuildPropertyControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ class BuildPropertyControl : UserControl
public BuildPropertyControl(Action<bool> isDirtyAction)
{
isDirty = isDirtyAction;
knownTargets = new string[] { Shared.Environment.DefaultTarget }.Union(Shared.Environment.FindInstalledTargets()).ToArray();
knownTargets = new string[] { Shared.Environment.DefaultTarget }
.Union(Shared.Environment.FindInstalledTargets().Select(tt => tt.ToString()))
.ToArray();
// This looks nonsensical but is required to avoid getting "Microsoft Sans Serif, 8.25pt"
// http://stackoverflow.com/questions/297701/default-font-for-windows-forms-application
this.Font = System.Drawing.SystemFonts.MessageBoxFont;
Expand Down
Loading