Today, I installed Windows 2013 (preview) 32 bits (thinks it help to run old applications) on my computer.
Well, had to erased Linux because I was using a GPT partition table, and this is not a UEFI computer.
Also, had problem because my old DVD-RW was crappy.
Anyway, seems ok. That’s for testing only.
After that, I downloaded Visual Studio 2013 Community… I just launch it for the first time.
That seems to be free for a single developer… or for doing open-source project for an organization.
So I guess I now will very soon have the tools to test the code we have up to now.
Oh, except maybe for the game itself.
___Merged doublepost__________________
I thought it would be like magic, that I would open the solution file, and that it would build without errors… but I get about 100 (first one):
Restoring NuGet packages…
To prevent NuGet from restoring packages during build, open the Visual Studio Options dialog, click on the Package Manager node and uncheck ‘Allow NuGet to download missing packages during build.’
1>------ Build started: Project: OpenGraal.Common, Configuration: Debug Any CPU ------
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1492,5): warning : The referenced project ‘…\…\…\opengraal.common.interfaces-cs\trunk\OpenGraal.Common.Interfaces\OpenGraal.Common.Interfaces.csproj’ does not exist.
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1492,5): warning : The referenced project ‘…\…\…\opengraal.core-cs\trunk\OpenGraal.Core\OpenGraal.Core.csproj’ does not exist.
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly “ICSharpCode.SharpZipLib”. Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly “ClearScript”. Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
1>C:\Users\Paul\OpenGraal.Common-cs\OpenGraal.Common\Animations\Animation.cs(9,17,9,21): error CS0234: The type or namespace name ‘Core’ does not exist in the namespace ‘OpenGraal’ (are you missing an assembly reference?)
1>C:\Users\Paul\OpenGraal.Common-cs\OpenGraal.Common\Animations\Sprite.cs(5,17,5,21): error CS0234: The type or namespace name ‘Core’ does not exist in the namespace ‘OpenGraal’ (are you missing an assembly reference?)
1>C:\Users\Paul\OpenGraal.Common-cs\OpenGraal.Common\Levels\GraalLevel.cs(8,17,8,21): error CS0234: The type or namespace name ‘Core’ does not exist in the namespace ‘OpenGraal’ (are you missing an assembly reference?)
1>C:\Users\Paul\OpenGraal.Common-cs\OpenGraal.Common\Levels\GraalLevelTileList.cs(7,17,7,21): error CS0234: The type or namespace name ‘Core’ does not exist in the namespace ‘OpenGraal’ (are you missing an assembly reference?)
1>C:\Users\Paul\OpenGraal.Common-cs\OpenGraal.Common\Levels\GraalLevelTile.cs(6,17,6,21): error CS0234: The type or namespace name ‘Core’ does not exist in the namespace ‘OpenGraal’ (are you missing an assembly reference?)
1>C:\Users\Paul\OpenGraal.Common-cs\OpenGraal.Common\Levels\GraalLevelNPC.cs(4,17,4,21): error CS0234: The type or namespace name ‘Core’ does not exist in the namespace ‘OpenGraal’ (are you missing an assembly reference?)
Guess I need to begin with Core:
Restoring NuGet packages…
To prevent NuGet from restoring packages during build, open the Visual Studio Options dialog, click on the Package Manager node and uncheck ‘Allow NuGet to download missing packages during build.’
1>------ Build started: Project: OpenGraal.Core, Configuration: Debug Any CPU ------
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly “MonoDevelop.Deployment, Version=2.6.0.0, Culture=neutral”. Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly “MonoDevelop.Deployment.Linux, Version=2.6.0.0, Culture=neutral”. Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly “MonoDevelop.GtkCore, Version=2.6.0.0, Culture=neutral”. Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
1>C:\Program Files\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly “ICSharpCode.SharpZipLib”. Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
1>C:\Users\Paul\OpenGraal.Core-cs\OpenGraal.Core\CString.cs(13,7,13,18): error CS0246: The type or namespace name ‘ICSharpCode’ could not be found (are you missing a using directive or an assembly reference?)
1>C:\Users\Paul\OpenGraal.Core-cs\OpenGraal.Core\CString.cs(14,7,14,18): error CS0246: The type or namespace name ‘ICSharpCode’ could not be found (are you missing a using directive or an assembly reference?)
1>C:\Users\Paul\OpenGraal.Core-cs\OpenGraal.Core\CString.cs(15,7,15,18): error CS0246: The type or namespace name ‘ICSharpCode’ could not be found (are you missing a using directive or an assembly reference?)
1>C:\Users\Paul\OpenGraal.Core-cs\OpenGraal.Core\Encryption.cs(5,7,5,18): error CS0246: The type or namespace name ‘ICSharpCode’ could not be found (are you missing a using directive or an assembly reference?)
1>C:\Users\Paul\OpenGraal.Core-cs\OpenGraal.Core\Encryption.cs(6,7,6,18): error CS0246: The type or namespace name ‘ICSharpCode’ could not be found (are you missing a using directive or an assembly reference?)
1>C:\Users\Paul\OpenGraal.Core-cs\OpenGraal.Core\Encryption.cs(7,7,7,18): error CS0246: The type or namespace name ‘ICSharpCode’ could not be found (are you missing a using directive or an assembly reference?)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========