Why doesn't visual studio 2015 RC compile properly?

0

I downloaded Microsoft Visual Studio 2015 RC after using Code::Blocks for a long time.

To test it I just created a simple Hello World program, but it won't compile properly.

This is the output from the compiler:

All packages are already installed and there is nothing to restore.
NuGet package restore finished.
1>------ Build started: Project: Sandbox, Configuration: Release Win32 ------
1>  Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86
1>  Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
1>
1>  cl  ■/
1>
1>CL : Command line warning D4024: unrecognized source file type ' ■/', object file assumed
1>  Microsoft (R) Incremental Linker Version 14.00.22816.0
1>  Copyright (C) Microsoft Corporation.  All rights reserved.
1>
1>  /out:.exe
1>  ÿþ/
1>LINK : fatal error LNK1181: cannot open input file 'ÿþ/.obj'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

hubf

Posted 2015-05-30T16:36:31.380

Reputation: 1

Do you perhaps have special characters in the path? Can you compile when directly using MSBuild? – Daniel B – 2015-05-30T17:16:21.950

If a "+" counts as a special character, then yes, but compiling directly with MSBuild doesn't work either. – hubf – 2015-05-30T19:43:46.670

No answers