Updated to Visual Studio 2012

This commit is contained in:
CTurt 2014-09-19 23:08:49 +01:00
parent 42be2b576a
commit af595c064a
5 changed files with 34 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@ -9,6 +9,12 @@
<OutputType>Exe</OutputType>
<AssemblyName>PAGfx</AssemblyName>
<CodePage>1252</CodePage>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

Binary file not shown.

23
PAGfx.sln Normal file
View File

@ -0,0 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Express 2012 for Windows Desktop
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PAGfx", "PAGfx.csproj", "{1CDEB84F-0CAA-46D1-8CCC-AC7948A947CA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
ReleaseMono|Any CPU = ReleaseMono|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1CDEB84F-0CAA-46D1-8CCC-AC7948A947CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1CDEB84F-0CAA-46D1-8CCC-AC7948A947CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1CDEB84F-0CAA-46D1-8CCC-AC7948A947CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1CDEB84F-0CAA-46D1-8CCC-AC7948A947CA}.Release|Any CPU.Build.0 = Release|Any CPU
{1CDEB84F-0CAA-46D1-8CCC-AC7948A947CA}.ReleaseMono|Any CPU.ActiveCfg = ReleaseMono|Any CPU
{1CDEB84F-0CAA-46D1-8CCC-AC7948A947CA}.ReleaseMono|Any CPU.Build.0 = ReleaseMono|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

BIN
PAGfx.v11.suo Normal file

Binary file not shown.

View File

@ -1552,11 +1552,12 @@ namespace PAGfx.Main {
Log = new FileStream("PAGfx.log", FileMode.Create); // Créé le fichier
LogWriter = new BinaryWriter(Log); // Permet d'écrire dedans
PAGfxWrite("dsgmGfx fork of PAGfx Converter " + verstring + " -- originally by Mollusk & fincs -- customised by DSGM team\r\n");
PAGfxWrite("dsgmGfx fork of PAGfx Converter " + verstring + " -- originally by Mollusk & fincs\r\n");
PAGfxWrite("customised by DSGM team\r\n");
PAGfxWrite("http://www.dsgamemaker.com/\r\n\n");
#if VER_MONO
PAGfxWrite("Mono version\r\n");
#endif
PAGfxWrite("http://www.dsgamemaker.com/\r\n\n");
PAGfxWrite(string.Format("Converting {0}\r\n", FileName));
string res = LoadINI.IniParse(FileName);