diff --git a/Minecraft.Client/postbuild.ps1 b/BuildScripts/postbuild.ps1
similarity index 64%
rename from Minecraft.Client/postbuild.ps1
rename to BuildScripts/postbuild.ps1
index 8ffc9b98b..be5fe0adb 100644
--- a/Minecraft.Client/postbuild.ps1
+++ b/BuildScripts/postbuild.ps1
@@ -6,8 +6,6 @@ param(
Write-Host "Post-build script started. Output Directory: $OutDir, Project Directory: $ProjectDir"
$directories = @(
- "music",
- "Windows64\GameHDD",
"Common\Media",
"Common\res",
"Common\Trial",
@@ -20,14 +18,12 @@ foreach ($dir in $directories) {
}
$copies = @(
- @{ Source = "music"; Dest = "music" },
- @{ Source = "Common\Media"; Dest = "Common\Media" },
- @{ Source = "Common\res"; Dest = "Common\res" },
- @{ Source = "Common\Trial"; Dest = "Common\Trial" },
- @{ Source = "Common\Tutorial"; Dest = "Common\Tutorial" },
+ @{ Source = "Common\Media"; Dest = "MInecraft.Assets\Common\Media" },
+ @{ Source = "Common\res"; Dest = "MInecraft.Assets\Common\res" },
+ @{ Source = "Common\Trial"; Dest = "MInecraft.Assets\Common\Trial" },
+ @{ Source = "Common\Tutorial"; Dest = "MInecraft.Assets\Common\Tutorial" },
@{ Source = "Windows64\GameHDD"; Dest = "Windows64\GameHDD" },
- @{ Source = "Windows64\Sound"; Dest = "Windows64\Sound" },
- @{ Source = "Windows64Media"; Dest = "Windows64Media" }
+ @{ Source = "Windows64Media"; Dest = "MInecraft.Assets\Win64" }
)
foreach ($copy in $copies) {
diff --git a/Minecraft.Client/prebuild.ps1 b/BuildScripts/prebuild.ps1
similarity index 100%
rename from Minecraft.Client/prebuild.ps1
rename to BuildScripts/prebuild.ps1
diff --git a/Minecraft.Client/BufferedImage.cpp b/Minecraft.Client/BufferedImage.cpp
index 8777d307b..1c95dc2d8 100644
--- a/Minecraft.Client/BufferedImage.cpp
+++ b/Minecraft.Client/BufferedImage.cpp
@@ -92,11 +92,11 @@ BufferedImage::BufferedImage(const wstring& File, bool filenameHasExtension /*=f
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
- wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
+ wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive= wstr + L"/Common/";
+ wDrive= wstr + L"/Minecraft.Assets/Common/";
}
#elif __PSVITA__
@@ -107,31 +107,31 @@ BufferedImage::BufferedImage(const wstring& File, bool filenameHasExtension /*=f
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
- wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
+ wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive= wstr + L"/Common/";
+ wDrive= wstr + L"/Minecraft.Assets/Common/";
}*/
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
- wDrive= L"Common\\res\\TitleUpdate\\";
+ wDrive= L"Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive= L"Common/";
+ wDrive= L"Minecraft.Assets/Common/";
}
#else
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
- wDrive= L"Common\\res\\TitleUpdate\\";
+ wDrive= L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive= L"Common/";
+ wDrive= L"Minecraft.Assets/Common/";
}
#endif
diff --git a/Minecraft.Client/Common/Audio/SoundEngine.cpp b/Minecraft.Client/Common/Audio/SoundEngine.cpp
index 989eaf238..5afb56135 100644
--- a/Minecraft.Client/Common/Audio/SoundEngine.cpp
+++ b/Minecraft.Client/Common/Audio/SoundEngine.cpp
@@ -64,8 +64,8 @@ void SoundEngine::playMusicTick() {};
#else
#ifdef _WINDOWS64
-char SoundEngine::m_szSoundPath[]={"Windows64Media\\Sound\\"};
-char SoundEngine::m_szMusicPath[]={"music\\"};
+char SoundEngine::m_szSoundPath[]={"Minecraft.Assets\\Win64\\Sound\\"};
+char SoundEngine::m_szMusicPath[]={"Minecraft.Assets\\Win64\\Sound\\music\\"};
char SoundEngine::m_szRedistName[]={"redist64"};
#elif defined _DURANGO
char SoundEngine::m_szSoundPath[]={"Sound\\"};
@@ -477,7 +477,7 @@ void SoundEngine::play(int iSound, float x, float y, float z, float volume, floa
iSound, SoundName, szSoundName, x, y, z, volume, pitch);
char basePath[256];
- sprintf_s(basePath, "Windows64Media/Sound/%s", (char*)szSoundName);
+ sprintf_s(basePath, "Minecraft.Assets/Win64/Sound/%s", (char*)szSoundName);
char finalPath[256];
sprintf_s(finalPath, "%s.wav", basePath);
@@ -608,7 +608,7 @@ void SoundEngine::playUI(int iSound, float volume, float pitch)
strcat((char*)szSoundName, SoundName);
char basePath[256];
- sprintf_s(basePath, "Windows64Media/Sound/Minecraft/UI/%s", ConvertSoundPathToName(name));
+ sprintf_s(basePath, "Minecraft.Assets/Win64/Sound/Minecraft/UI/%s", ConvertSoundPathToName(name));
char finalPath[256];
sprintf_s(finalPath, "%s.wav", basePath);
diff --git a/Minecraft.Client/Common/Consoles_App.cpp b/Minecraft.Client/Common/Consoles_App.cpp
index 204ded30b..1d0f7312a 100644
--- a/Minecraft.Client/Common/Consoles_App.cpp
+++ b/Minecraft.Client/Common/Consoles_App.cpp
@@ -4403,60 +4403,21 @@ void CMinecraftApp::loadMediaArchive()
wstring mediapath = L"";
#ifdef __PS3__
- mediapath = L"Common\\Media\\MediaPS3.arc";
+ mediapath = L"Minecraft.Assets\\Common\\Media\\MediaPS3.arc";
#elif _WINDOWS64
- mediapath = L"Common\\Media\\MediaWindows64.arc";
+ mediapath = L"Minecraft.Assets\\Common\\Media\\MediaWindows64.arc";
#elif __ORBIS__
- mediapath = L"Common\\Media\\MediaOrbis.arc";
+ mediapath = L"Minecraft.Assets\\Common\\Media\\MediaOrbis.arc";
#elif _DURANGO
- mediapath = L"Common\\Media\\MediaDurango.arc";
+ mediapath = L"Minecraft.Assets\\Common\\Media\\MediaDurango.arc";
#elif __PSVITA__
- mediapath = L"Common\\Media\\MediaPSVita.arc";
+ mediapath = L"Minecraft.Assets\\Common\\Media\\MediaPSVita.arc";
#endif
if (!mediapath.empty())
{
m_mediaArchive = new ArchiveFile( File(mediapath) );
}
-#if 0
- string path = "Common\\media.arc";
- HANDLE hFile = CreateFile( path.c_str(),
- GENERIC_READ,
- FILE_SHARE_READ,
- nullptr,
- OPEN_EXISTING,
- FILE_FLAG_SEQUENTIAL_SCAN,
- nullptr );
-
- if( hFile != INVALID_HANDLE_VALUE )
- {
- File fileHelper(convStringToWstring(path));
- DWORD dwFileSize = fileHelper.length();
-
- // Initialize memory.
- PBYTE m_fBody = new BYTE[ dwFileSize ];
- ZeroMemory(m_fBody, dwFileSize);
-
- DWORD m_fSize = 0;
- BOOL hr = ReadFile( hFile,
- m_fBody,
- dwFileSize,
- &m_fSize,
- nullptr );
-
- assert( m_fSize == dwFileSize );
-
- CloseHandle( hFile );
-
- m_mediaArchive = new ArchiveFile(m_fBody, m_fSize);
- }
- else
- {
- assert( false );
- // AHHHHHHHHHHHH
- m_mediaArchive = nullptr;
- }
-#endif
}
void CMinecraftApp::loadStringTable()
diff --git a/Minecraft.Client/Common/GameRules/GameRuleManager.cpp b/Minecraft.Client/Common/GameRules/GameRuleManager.cpp
index 95434c08c..26b6a90db 100644
--- a/Minecraft.Client/Common/GameRules/GameRuleManager.cpp
+++ b/Minecraft.Client/Common/GameRules/GameRuleManager.cpp
@@ -662,7 +662,7 @@ void GameRuleManager::loadDefaultGameRules()
#else // _XBOX
#ifdef _WINDOWS64
- File packedTutorialFile(L"Windows64Media\\Tutorial\\Tutorial.pck");
+ File packedTutorialFile(L"Minecraft.Assets\\Win64\\Tutorial\\Tutorial.pck");
if(!packedTutorialFile.exists()) packedTutorialFile = File(L"Windows64\\Tutorial\\Tutorial.pck");
#elif defined(__ORBIS__)
File packedTutorialFile(L"/app0/orbis/Tutorial/Tutorial.pck");
diff --git a/Minecraft.Client/Common/GameRules/LevelGenerationOptions.cpp b/Minecraft.Client/Common/GameRules/LevelGenerationOptions.cpp
index 2af1826cf..3774a79b6 100644
--- a/Minecraft.Client/Common/GameRules/LevelGenerationOptions.cpp
+++ b/Minecraft.Client/Common/GameRules/LevelGenerationOptions.cpp
@@ -468,7 +468,7 @@ void LevelGenerationOptions::loadBaseSaveData()
if (!dlcFile->getGrfPath().empty())
{
- File grf(L"Windows64Media\\DLC\\" + packName + L"\\Data\\" + dlcFile->getGrfPath());
+ File grf(L"Minecraft.Assets\\Win64\\DLC\\" + packName + L"\\Data\\" + dlcFile->getGrfPath());
if (grf.exists())
{
@@ -496,7 +496,7 @@ void LevelGenerationOptions::loadBaseSaveData()
if (requiresBaseSave() && !getBaseSavePath().empty())
{
- File save(L"Windows64Media\\DLC\\" + packName + L"\\Data\\" + baseSave);
+ File save(L"Minecraft.Assets\\Win64\\DLC\\" + packName + L"\\Data\\" + baseSave);
if (save.exists())
{
diff --git a/Minecraft.Client/Common/Network/GameNetworkManager.cpp b/Minecraft.Client/Common/Network/GameNetworkManager.cpp
index a502dbfb7..8f9107105 100644
--- a/Minecraft.Client/Common/Network/GameNetworkManager.cpp
+++ b/Minecraft.Client/Common/Network/GameNetworkManager.cpp
@@ -230,7 +230,7 @@ bool CGameNetworkManager::StartNetworkGame(Minecraft *minecraft, LPVOID lpParame
#endif
#else
#ifdef _WINDOWS64
- wstring fileRoot = L"Windows64Media\\Tutorial\\" + param->levelGen->getBaseSavePath();
+ wstring fileRoot = L"Minecraft.Assets\\Win64\\Tutorial\\" + param->levelGen->getBaseSavePath();
File root(fileRoot);
if(!root.exists()) fileRoot = L"Windows64\\Tutorial\\" + param->levelGen->getBaseSavePath();
#elif defined(__ORBIS__)
diff --git a/Minecraft.Client/Common/UI/UIController.cpp b/Minecraft.Client/Common/UI/UIController.cpp
index 4d4242493..c0fc9b6f9 100644
--- a/Minecraft.Client/Common/UI/UIController.cpp
+++ b/Minecraft.Client/Common/UI/UIController.cpp
@@ -359,17 +359,17 @@ UITTFFont *UIController::createFont(EFont fontLanguage)
switch(fontLanguage)
{
#if defined(__PS3__) || defined(__ORBIS__) || defined(__PSVITA__)
- case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Common/Media/font/JPN/DF-DotDotGothic16.ttf", 0x203B); // JPN
+ case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Minecraft.Assets/Common/Media/font/JPN/DF-DotDotGothic16.ttf", 0x203B); // JPN
// case eFont_SimpChinese: Simplified Chinese is unsupported.
- case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Common/Media/font/CHT/DFTT_R5.TTC", 0x203B); // CHT
- case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Common/Media/font/KOR/candadite2.ttf", 0x203B); // KOR
+ case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Minecraft.Assets/Common/Media/font/CHT/DFTT_R5.TTC", 0x203B); // CHT
+ case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Minecraft.Assets/Common/Media/font/KOR/candadite2.ttf", 0x203B); // KOR
#else
- case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Common/Media/font/JPN/DFGMaruGothic-Md.ttf", 0x2022); // JPN
+ case eFont_Japanese: return new UITTFFont("Mojangles_TTF_jaJP", "Minecraft.Assets/Common/Media/font/JPN/DFGMaruGothic-Md.ttf", 0x2022); // JPN
#ifdef _DURANGO
- case eFont_SimpChinese: return new UITTFFont("Mojangled_TTF_cnCN", "Common/Media/font/CHS/MSYH.ttf", 0x2022); // CHS
+ case eFont_SimpChinese: return new UITTFFont("Mojangled_TTF_cnCN", "Minecraft.Assets/Common/Media/font/CHS/MSYH.ttf", 0x2022); // CHS
#endif
- case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Common/Media/font/CHT/DFHeiMedium-B5.ttf", 0x2022); // CHT
- case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Common/Media/font/KOR/BOKMSD.ttf", 0x2022); // KOR
+ case eFont_TradChinese: return new UITTFFont("Mojangles_TTF_cnTD", "Minecraft.Assets/Common/Media/font/CHT/DFHeiMedium-B5.ttf", 0x2022); // CHT
+ case eFont_Korean: return new UITTFFont("Mojangles_TTF_koKR", "Minecraft.Assets/Common/Media/font/KOR/BOKMSD.ttf", 0x2022); // KOR
#endif
// 4J-JEV, Cyrillic characters have been added to this font now, (4/July/14)
// XC_LANGUAGE_RUSSIAN and XC_LANGUAGE_GREEK:
diff --git a/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.cpp b/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.cpp
index d73148f5d..55ab8b587 100644
--- a/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.cpp
+++ b/Minecraft.Client/Common/UI/UIScene_LoadOrJoinMenu.cpp
@@ -774,7 +774,7 @@ void UIScene_LoadOrJoinMenu::tick()
wchar_t wFilename[MAX_SAVEFILENAME_LENGTH];
ZeroMemory(wFilename, sizeof(wFilename));
mbstowcs(wFilename, m_pSaveDetails->SaveInfoA[origIdx].UTF8SaveFilename, MAX_SAVEFILENAME_LENGTH - 1);
- wstring filePath = wstring(L"Windows64\\GameHDD\\") + wstring(wFilename) + wstring(L"\\saveData.ms");
+ wstring filePath = wstring(L"Saves\\") + wstring(wFilename) + wstring(L"\\saveData.ms");
wstring levelName = ReadLevelNameFromSaveFile(filePath);
if (!levelName.empty())
{
@@ -1432,7 +1432,7 @@ int UIScene_LoadOrJoinMenu::KeyboardCompleteWorldNameCallback(LPVOID lpParam,boo
// Build the sidecar path: Windows64\GameHDD\{folder}\worldname.txt
wchar_t wFilename[MAX_SAVEFILENAME_LENGTH] = {};
mbstowcs(wFilename, pClass->m_saveDetails[listPos].UTF8SaveFilename, MAX_SAVEFILENAME_LENGTH - 1);
- wstring sidecarPath = wstring(L"Windows64\\GameHDD\\") + wstring(wFilename) + wstring(L"\\worldname.txt");
+ wstring sidecarPath = wstring(L"Saves\\") + wstring(wFilename) + wstring(L"\\worldname.txt");
FILE *fw = nullptr;
if (_wfopen_s(&fw, sidecarPath.c_str(), L"w") == 0 && fw)
@@ -2424,7 +2424,7 @@ int UIScene_LoadOrJoinMenu::DeleteSaveDialogReturned(void *pParam,int iPad,C4JSt
wchar_t wFilename[MAX_SAVEFILENAME_LENGTH] = {};
mbstowcs_s(nullptr, wFilename, MAX_SAVEFILENAME_LENGTH, pClass->m_saveDetails[displayIdx].UTF8SaveFilename, MAX_SAVEFILENAME_LENGTH - 1);
wchar_t wFolderPath[MAX_PATH] = {};
- swprintf_s(wFolderPath, MAX_PATH, L"Windows64\\GameHDD\\%s", wFilename);
+ swprintf_s(wFolderPath, MAX_PATH, L"Saves\\%s", wFilename);
bSuccess = Win64_DeleteSaveDirectory(wFolderPath);
}
UIScene_LoadOrJoinMenu::DeleteSaveDataReturned((LPVOID)pClass->GetCallbackUniqueId(), bSuccess);
diff --git a/Minecraft.Client/DefaultTexturePack.cpp b/Minecraft.Client/DefaultTexturePack.cpp
index d2712404b..1e361a26a 100644
--- a/Minecraft.Client/DefaultTexturePack.cpp
+++ b/Minecraft.Client/DefaultTexturePack.cpp
@@ -86,18 +86,18 @@ InputStream *DefaultTexturePack::getResourceImplementation(const wstring &name)/
wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir));
- wDrive = wstr + L"\\Common\\res\\TitleUpdate\\res";
+ wDrive = wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
#elif __PSVITA__
/*
char *pchUsrDir=getUsrDirPath();
wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir));
- wDrive = wstr + L"Common\\res\\TitleUpdate\\res";
+ wDrive = wstr + L"Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
*/
- wDrive = L"Common\\res\\TitleUpdate\\res";
+ wDrive = L"Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
#else
- wDrive = L"Common\\res\\TitleUpdate\\res";
+ wDrive = L"Minecraft.Assets\\Common\\res\\TitleUpdate\\res";
#endif
InputStream *resource = InputStream::getResourceAsStream(wDrive + name);
diff --git a/Minecraft.Client/FolderTexturePack.cpp b/Minecraft.Client/FolderTexturePack.cpp
index 05feca664..4022b0d91 100644
--- a/Minecraft.Client/FolderTexturePack.cpp
+++ b/Minecraft.Client/FolderTexturePack.cpp
@@ -27,7 +27,7 @@ InputStream *FolderTexturePack::getResourceImplementation(const wstring &name) /
#ifdef _XBOX
wDrive=L"GAME:\\DummyTexturePack\\res";
#else
- wDrive = L"Common\\DummyTexturePack\\res";
+ wDrive = L"Minecraft.Assets\\Common\\DummyTexturePack\\res";
#endif
InputStream *resource = InputStream::getResourceAsStream(wDrive + name);
//InputStream *stream = DefaultTexturePack::class->getResourceAsStream(name);
@@ -64,7 +64,7 @@ wstring FolderTexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const ch
#ifdef _XBOX
wDrive=L"GAME:\\" + file->getPath() + L"\\";
#else
- wDrive=L"Common\\" + file->getPath() + L"\\";
+ wDrive=L"Minecraft.Assets\\Common\\" + file->getPath() + L"\\";
#endif
return wDrive;
}
diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj
index 84fb26c83..ec31d1c9c 100644
--- a/Minecraft.Client/Minecraft.Client.vcxproj
+++ b/Minecraft.Client/Minecraft.Client.vcxproj
@@ -289,7 +289,7 @@
Application
MultiByte
- v143
+ v142
Application
@@ -326,7 +326,7 @@
Application
MultiByte
- v143
+ v142
Application
@@ -423,7 +423,7 @@
Application
MultiByte
true
- v143
+ v142
Application
@@ -441,7 +441,7 @@
Application
MultiByte
true
- v143
+ v142
Application
@@ -459,7 +459,7 @@
Application
MultiByte
true
- v143
+ v142
Application
@@ -477,7 +477,7 @@
Application
MultiByte
true
- v143
+ v142
Application
@@ -751,6 +751,8 @@
false
false
false
+ $(SolutionDir)Game/$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
true
@@ -786,6 +788,8 @@
false
false
false
+ $(SolutionDir)Game/$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
true
@@ -804,6 +808,8 @@
false
false
false
+ $(SolutionDir)Game/$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
true
@@ -923,6 +929,8 @@
false
false
false
+ $(SolutionDir)Game/$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
@@ -944,6 +952,8 @@
false
false
false
+ $(SolutionDir)Game/$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
@@ -965,6 +975,8 @@
false
false
false
+ $(SolutionDir)Game/$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
@@ -986,6 +998,8 @@
false
false
false
+ $(SolutionDir)Game/$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
@@ -1593,13 +1607,13 @@ if not exist "$(TargetDir)\savedata" mkdir "$(TargetDir)\savedata"
$(RemoteRoot)=$(ImagePath);$(RemoteRoot)\res=Xbox\res;$(RemoteRoot)=Xbox\AvatarAwards;$(RemoteRoot)\Tutorial=Xbox\Tutorial\Tutorial;$(RemoteRoot)=Xbox\584111F70AAAAAAA;$(RemoteRoot)=Xbox\kinect\speech;$(RemoteRoot)=Xbox\XZP\TMSFiles.xzp
- powershell -ExecutionPolicy Bypass -File "$(ProjectDir)postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
+ powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
Run post-build script
- powershell -ExecutionPolicy Bypass -File "$(ProjectDir)prebuild.ps1"
+ powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/prebuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
Run pre-build script
@@ -1811,14 +1825,15 @@ xcopy /q /y /i /s /e $(ProjectDir)DurangoMedia\CU $(LayoutDir)Image\Loose\CU
true
$(OutDir)$(ProjectName).pdb
- legacy_stdio_definitions.lib;d3d11.lib;d3dcompiler.lib;..\Minecraft.World\x64_Release\Minecraft.World.lib;XInput9_1_0.lib;Windows64\Iggy\lib\iggy_w64.lib;%(AdditionalDependencies)
+ legacy_stdio_definitions.lib;d3d11.lib;d3dcompiler.lib;XInput9_1_0.lib;Windows64\Iggy\lib\iggy_w64.lib;%(AdditionalDependencies)
NotSet
false
UseFastLinkTimeCodeGeneration
Run postbuild script
- powershell -ExecutionPolicy Bypass -File "$(ProjectDir)postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
+ powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/postbuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
+
$(ProjectDir)xbox\xex-dev.xml
@@ -1835,7 +1850,7 @@ xcopy /q /y /i /s /e $(ProjectDir)DurangoMedia\CU $(LayoutDir)Image\Loose\CU$(RemoteRoot)=$(ImagePath);$(RemoteRoot)\res=Xbox\res;$(RemoteRoot)=Xbox\AvatarAwards;$(RemoteRoot)\Tutorial=Xbox\Tutorial\Tutorial;$(RemoteRoot)=Xbox\584111F70AAAAAAA;$(RemoteRoot)=Xbox\kinect\speech;$(RemoteRoot)=Xbox\XZP\TMSFiles.xzp
- powershell -ExecutionPolicy Bypass -File "$(ProjectDir)prebuild.ps1"
+ powershell -ExecutionPolicy Bypass -File "$(SolutionDir)/BuildScripts/prebuild.ps1" -OutDir "$(OutDir)/" -ProjectDir "$(ProjectDir)/"
Run pre-build script
@@ -48729,6 +48744,9 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU
+
+ {f046c3ce-9749-4823-b32b-d9cc10b1a2c8}
+
diff --git a/Minecraft.Client/TextureManager.cpp b/Minecraft.Client/TextureManager.cpp
index d6cbe2c33..d0eff20d1 100644
--- a/Minecraft.Client/TextureManager.cpp
+++ b/Minecraft.Client/TextureManager.cpp
@@ -107,7 +107,7 @@ vector *TextureManager::createTextures(const wstring &filename, bool
const char *pchTextureName=wstringtofilename(filename);
char *pchUsrDir = app.GetBDUsrDirPath(pchTextureName);
wstring wstr (pchUsrDir, pchUsrDir+strlen(pchUsrDir));
- drive= wstr + L"\\Common\\res\\TitleUpdate\\";
+ drive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
#endif
diff --git a/Minecraft.Client/TexturePack.cpp b/Minecraft.Client/TexturePack.cpp
index bacb29516..4fc13fd3f 100644
--- a/Minecraft.Client/TexturePack.cpp
+++ b/Minecraft.Client/TexturePack.cpp
@@ -32,12 +32,12 @@ wstring TexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const char *pc
if(bTitleUpdateTexture)
{
- wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
+ wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive= wstr + L"/Common/";
+ wDrive= wstr + L"/Minecraft.Assets/Common/";
}
}
else
@@ -49,11 +49,11 @@ wstring TexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const char *pc
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
- wDrive= wstr + L"\\Common\\res\\TitleUpdate\\";
+ wDrive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive= wstr + L"/Common/";
+ wDrive= wstr + L"/Minecraft.Assets/Common/";
}
}
@@ -64,21 +64,21 @@ wstring TexturePack::getPath(bool bTitleUpdateTexture /*= false*/,const char *pc
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
- wDrive= wstr + L"Common\\res\\TitleUpdate\\";
+ wDrive= wstr + L"Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive= wstr + L"Common\\";
+ wDrive= wstr + L"Minecraft.Assets\\Common\\";
}
#else
if(bTitleUpdateTexture)
{
// Make the content package point to to the UPDATE: drive is needed
- wDrive=L"Common\\res\\TitleUpdate\\";
+ wDrive=L"Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- wDrive=L"Common/";
+ wDrive=L"Minecraft.Assets/Common/";
}
#endif
#endif
diff --git a/Minecraft.Client/Textures.cpp b/Minecraft.Client/Textures.cpp
index 244f3e5b7..e49235a3b 100644
--- a/Minecraft.Client/Textures.cpp
+++ b/Minecraft.Client/Textures.cpp
@@ -1409,12 +1409,12 @@ BufferedImage *Textures::readImage(TEXTURE_NAME texId, const wstring& name) // 4
if(isTu)
{
- drive= wstr + L"\\Common\\res\\TitleUpdate\\";
+ drive= wstr + L"\\Minecraft.Assets\\Common\\res\\TitleUpdate\\";
}
else
{
- drive= wstr + L"\\Common\\";
+ drive= wstr + L"\\Minecraft.Assets\\Common\\";
}
}
else
diff --git a/Minecraft.Client/Windows64/4JLibs/inc/Render/Render.vcxproj b/Minecraft.Client/Windows64/4JLibs/inc/Render/Render.vcxproj
index a09a54b3b..dc15379b2 100644
--- a/Minecraft.Client/Windows64/4JLibs/inc/Render/Render.vcxproj
+++ b/Minecraft.Client/Windows64/4JLibs/inc/Render/Render.vcxproj
@@ -73,10 +73,13 @@
4J_$(ProjectName)_d
+ $(SolutionDir)Minecraft.Client\Windows64\4JLibs\libs\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
4J_$(ProjectName)
- $(SolutionDir)Minecraft.Client\Windows64\4JLibs\libs
+ $(SolutionDir)Minecraft.Client\Windows64\4JLibs\libs\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
diff --git a/Minecraft.Client/Windows64/4JLibs/inc/Render/RendererCore.cpp b/Minecraft.Client/Windows64/4JLibs/inc/Render/RendererCore.cpp
index f1ebdfc92..0e7e97473 100644
--- a/Minecraft.Client/Windows64/4JLibs/inc/Render/RendererCore.cpp
+++ b/Minecraft.Client/Windows64/4JLibs/inc/Render/RendererCore.cpp
@@ -921,7 +921,7 @@ void Renderer::Present()
GetCurrentDirectoryA(sizeof(curDir), curDir);
char ssPath[512];
- sprintf(ssPath, "%s/Windows64/GameHDD/", curDir);
+ sprintf(ssPath, "%s/Saves/", curDir);
_SYSTEMTIME UTCSysTime;
GetSystemTime(&UTCSysTime);
diff --git a/Minecraft.Client/Windows64/4JLibs/libs/4J_Render_PC.lib b/Minecraft.Client/Windows64/4JLibs/libs/4J_Render_PC.lib
index 85d2e4c77..070bf91f1 100644
Binary files a/Minecraft.Client/Windows64/4JLibs/libs/4J_Render_PC.lib and b/Minecraft.Client/Windows64/4JLibs/libs/4J_Render_PC.lib differ
diff --git a/Minecraft.Client/music/cds/11.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/11.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/11.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/11.ogg
diff --git a/Minecraft.Client/music/cds/13.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/13.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/13.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/13.ogg
diff --git a/Minecraft.Client/music/cds/blocks.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/blocks.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/blocks.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/blocks.ogg
diff --git a/Minecraft.Client/music/cds/cat.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/cat.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/cat.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/cat.ogg
diff --git a/Minecraft.Client/music/cds/chirp.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/chirp.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/chirp.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/chirp.ogg
diff --git a/Minecraft.Client/music/cds/far.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/far.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/far.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/far.ogg
diff --git a/Minecraft.Client/music/cds/mall.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/mall.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/mall.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/mall.ogg
diff --git a/Minecraft.Client/music/cds/mellohi.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/mellohi.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/mellohi.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/mellohi.ogg
diff --git a/Minecraft.Client/music/cds/stal.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/stal.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/stal.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/stal.ogg
diff --git a/Minecraft.Client/music/cds/strad.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/strad.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/strad.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/strad.ogg
diff --git a/Minecraft.Client/music/cds/ward.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/ward.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/ward.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/ward.ogg
diff --git a/Minecraft.Client/music/cds/where_are_we_now.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/where_are_we_now.ogg
similarity index 100%
rename from Minecraft.Client/music/cds/where_are_we_now.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/cds/where_are_we_now.ogg
diff --git a/Minecraft.Client/music/music/calm1.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/calm1.ogg
similarity index 100%
rename from Minecraft.Client/music/music/calm1.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/calm1.ogg
diff --git a/Minecraft.Client/music/music/calm2.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/calm2.ogg
similarity index 100%
rename from Minecraft.Client/music/music/calm2.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/calm2.ogg
diff --git a/Minecraft.Client/music/music/calm3.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/calm3.ogg
similarity index 100%
rename from Minecraft.Client/music/music/calm3.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/calm3.ogg
diff --git a/Minecraft.Client/music/music/creative1.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative1.ogg
similarity index 100%
rename from Minecraft.Client/music/music/creative1.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative1.ogg
diff --git a/Minecraft.Client/music/music/creative2.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative2.ogg
similarity index 100%
rename from Minecraft.Client/music/music/creative2.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative2.ogg
diff --git a/Minecraft.Client/music/music/creative3.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative3.ogg
similarity index 100%
rename from Minecraft.Client/music/music/creative3.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative3.ogg
diff --git a/Minecraft.Client/music/music/creative4.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative4.ogg
similarity index 100%
rename from Minecraft.Client/music/music/creative4.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative4.ogg
diff --git a/Minecraft.Client/music/music/creative5.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative5.ogg
similarity index 100%
rename from Minecraft.Client/music/music/creative5.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative5.ogg
diff --git a/Minecraft.Client/music/music/creative6.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative6.ogg
similarity index 100%
rename from Minecraft.Client/music/music/creative6.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/creative6.ogg
diff --git a/Minecraft.Client/music/music/hal1.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal1.ogg
similarity index 100%
rename from Minecraft.Client/music/music/hal1.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal1.ogg
diff --git a/Minecraft.Client/music/music/hal2.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal2.ogg
similarity index 100%
rename from Minecraft.Client/music/music/hal2.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal2.ogg
diff --git a/Minecraft.Client/music/music/hal3.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal3.ogg
similarity index 100%
rename from Minecraft.Client/music/music/hal3.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal3.ogg
diff --git a/Minecraft.Client/music/music/hal4.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal4.ogg
similarity index 100%
rename from Minecraft.Client/music/music/hal4.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/hal4.ogg
diff --git a/Minecraft.Client/music/music/menu1.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu1.ogg
similarity index 100%
rename from Minecraft.Client/music/music/menu1.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu1.ogg
diff --git a/Minecraft.Client/music/music/menu2.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu2.ogg
similarity index 100%
rename from Minecraft.Client/music/music/menu2.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu2.ogg
diff --git a/Minecraft.Client/music/music/menu3.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu3.ogg
similarity index 100%
rename from Minecraft.Client/music/music/menu3.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu3.ogg
diff --git a/Minecraft.Client/music/music/menu4.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu4.ogg
similarity index 100%
rename from Minecraft.Client/music/music/menu4.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/menu4.ogg
diff --git a/Minecraft.Client/music/music/nether1.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether1.ogg
similarity index 100%
rename from Minecraft.Client/music/music/nether1.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether1.ogg
diff --git a/Minecraft.Client/music/music/nether2.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether2.ogg
similarity index 100%
rename from Minecraft.Client/music/music/nether2.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether2.ogg
diff --git a/Minecraft.Client/music/music/nether3.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether3.ogg
similarity index 100%
rename from Minecraft.Client/music/music/nether3.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether3.ogg
diff --git a/Minecraft.Client/music/music/nether4.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether4.ogg
similarity index 100%
rename from Minecraft.Client/music/music/nether4.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nether4.ogg
diff --git a/Minecraft.Client/music/music/nuance1.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nuance1.ogg
similarity index 100%
rename from Minecraft.Client/music/music/nuance1.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nuance1.ogg
diff --git a/Minecraft.Client/music/music/nuance2.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nuance2.ogg
similarity index 100%
rename from Minecraft.Client/music/music/nuance2.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/nuance2.ogg
diff --git a/Minecraft.Client/music/music/piano1.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/piano1.ogg
similarity index 100%
rename from Minecraft.Client/music/music/piano1.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/piano1.ogg
diff --git a/Minecraft.Client/music/music/piano2.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/piano2.ogg
similarity index 100%
rename from Minecraft.Client/music/music/piano2.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/piano2.ogg
diff --git a/Minecraft.Client/music/music/piano3.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/piano3.ogg
similarity index 100%
rename from Minecraft.Client/music/music/piano3.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/piano3.ogg
diff --git a/Minecraft.Client/music/music/the_end_dragon_alive.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/the_end_dragon_alive.ogg
similarity index 100%
rename from Minecraft.Client/music/music/the_end_dragon_alive.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/the_end_dragon_alive.ogg
diff --git a/Minecraft.Client/music/music/the_end_end.ogg b/Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/the_end_end.ogg
similarity index 100%
rename from Minecraft.Client/music/music/the_end_end.ogg
rename to Minecraft.Client/Windows64Media/Sound/Minecraft/music/music/the_end_end.ogg
diff --git a/Minecraft.World/ARM64EC_Debug/Minecraft.World.vcxproj.FileListAbsolute.txt b/Minecraft.World/ARM64EC_Debug/Minecraft.World.vcxproj.FileListAbsolute.txt
deleted file mode 100644
index ee3f82280..000000000
--- a/Minecraft.World/ARM64EC_Debug/Minecraft.World.vcxproj.FileListAbsolute.txt
+++ /dev/null
@@ -1 +0,0 @@
-C:\Users\manea\Documents\MinecraftConsoles\Minecraft.World\ARM64EC_Debug\Minecraft.World.lib
diff --git a/Minecraft.World/Minecraft.World.vcxproj b/Minecraft.World/Minecraft.World.vcxproj
index 464d40378..7034d195f 100644
--- a/Minecraft.World/Minecraft.World.vcxproj
+++ b/Minecraft.World/Minecraft.World.vcxproj
@@ -706,8 +706,8 @@
$(OutDir)$(ProjectName).lib
$(ProjectDir)\x64headers;$(IncludePath)
- $(ProjectDir)\$(Platform)_$(Configuration)\
- $(Platform)_$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
false
false
@@ -737,8 +737,8 @@
$(OutDir)$(ProjectName).lib
$(ProjectDir)\x64headers;$(IncludePath)
- $(ProjectDir)\$(Platform)_$(Configuration)\
- $(Platform)_$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
false
false
@@ -758,8 +758,8 @@
$(OutDir)$(ProjectName).lib
$(ProjectDir)\x64headers;$(IncludePath)
- $(ProjectDir)\$(Platform)_$(Configuration)\
- $(Platform)_$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
false
false
@@ -842,8 +842,8 @@
$(OutDir)$(ProjectName).lib
$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)
- $(ProjectDir)\$(Platform)_$(Configuration)\
- $(Platform)_$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
false
false
@@ -863,8 +863,8 @@
$(OutDir)$(ProjectName).lib
$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)
- $(ProjectDir)\$(Platform)_$(Configuration)\
- $(Platform)_$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
false
false
@@ -884,8 +884,8 @@
$(OutDir)$(ProjectName).lib
$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)
- $(ProjectDir)\$(Platform)_$(Configuration)\
- $(Platform)_$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
false
false
@@ -905,8 +905,8 @@
$(OutDir)$(ProjectName).lib
$(ProjectDir)\x64header;$(DXSDK_DIR)include;$(IncludePath)
- $(ProjectDir)\$(Configuration)\
- $(ProjectDir)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Libraries\$(Platform)\$(Configuration)\
+ $(SolutionDir)Build\$(ProjectName)\Intermediate\$(Platform)\$(Configuration)\
false
false
false
diff --git a/MinecraftConsoles.sln b/MinecraftConsoles.sln
index d64a1739f..c719f0d14 100644
--- a/MinecraftConsoles.sln
+++ b/MinecraftConsoles.sln
@@ -15,41 +15,12 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Render_PC", "Minecraft.Clie
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
- ContentPackage_NO_TU|ARM64EC = ContentPackage_NO_TU|ARM64EC
- ContentPackage_NO_TU|Durango = ContentPackage_NO_TU|Durango
- ContentPackage_NO_TU|ORBIS = ContentPackage_NO_TU|ORBIS
- ContentPackage_NO_TU|PS3 = ContentPackage_NO_TU|PS3
- ContentPackage_NO_TU|PSVita = ContentPackage_NO_TU|PSVita
- ContentPackage_NO_TU|Windows64 = ContentPackage_NO_TU|Windows64
- ContentPackage_NO_TU|x64 = ContentPackage_NO_TU|x64
- ContentPackage_NO_TU|x86 = ContentPackage_NO_TU|x86
- ContentPackage_NO_TU|Xbox 360 = ContentPackage_NO_TU|Xbox 360
- CONTENTPACKAGE_SYMBOLS|ARM64EC = CONTENTPACKAGE_SYMBOLS|ARM64EC
- CONTENTPACKAGE_SYMBOLS|Durango = CONTENTPACKAGE_SYMBOLS|Durango
- CONTENTPACKAGE_SYMBOLS|ORBIS = CONTENTPACKAGE_SYMBOLS|ORBIS
- CONTENTPACKAGE_SYMBOLS|PS3 = CONTENTPACKAGE_SYMBOLS|PS3
- CONTENTPACKAGE_SYMBOLS|PSVita = CONTENTPACKAGE_SYMBOLS|PSVita
- CONTENTPACKAGE_SYMBOLS|Windows64 = CONTENTPACKAGE_SYMBOLS|Windows64
- CONTENTPACKAGE_SYMBOLS|x64 = CONTENTPACKAGE_SYMBOLS|x64
- CONTENTPACKAGE_SYMBOLS|x86 = CONTENTPACKAGE_SYMBOLS|x86
- CONTENTPACKAGE_SYMBOLS|Xbox 360 = CONTENTPACKAGE_SYMBOLS|Xbox 360
- ContentPackage|ARM64EC = ContentPackage|ARM64EC
- ContentPackage|Durango = ContentPackage|Durango
- ContentPackage|ORBIS = ContentPackage|ORBIS
- ContentPackage|PS3 = ContentPackage|PS3
- ContentPackage|PSVita = ContentPackage|PSVita
- ContentPackage|Windows64 = ContentPackage|Windows64
- ContentPackage|x64 = ContentPackage|x64
- ContentPackage|x86 = ContentPackage|x86
- ContentPackage|Xbox 360 = ContentPackage|Xbox 360
Debug|ARM64EC = Debug|ARM64EC
Debug|Durango = Debug|Durango
Debug|ORBIS = Debug|ORBIS
Debug|PS3 = Debug|PS3
Debug|PSVita = Debug|PSVita
Debug|Windows64 = Debug|Windows64
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
Debug|Xbox 360 = Debug|Xbox 360
Release|ARM64EC = Release|ARM64EC
Release|Durango = Release|Durango
@@ -57,73 +28,9 @@ Global
Release|PS3 = Release|PS3
Release|PSVita = Release|PSVita
Release|Windows64 = Release|Windows64
- Release|x64 = Release|x64
- Release|x86 = Release|x86
Release|Xbox 360 = Release|Xbox 360
- ReleaseForArt|ARM64EC = ReleaseForArt|ARM64EC
- ReleaseForArt|Durango = ReleaseForArt|Durango
- ReleaseForArt|ORBIS = ReleaseForArt|ORBIS
- ReleaseForArt|PS3 = ReleaseForArt|PS3
- ReleaseForArt|PSVita = ReleaseForArt|PSVita
- ReleaseForArt|Windows64 = ReleaseForArt|Windows64
- ReleaseForArt|x64 = ReleaseForArt|x64
- ReleaseForArt|x86 = ReleaseForArt|x86
- ReleaseForArt|Xbox 360 = ReleaseForArt|Xbox 360
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ARM64EC.ActiveCfg = ContentPackage_Vita|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ARM64EC.Build.0 = ContentPackage_Vita|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Durango
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Durango.Build.0 = ContentPackage_NO_TU|Durango
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ORBIS.Build.0 = ContentPackage_NO_TU|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|PSVita
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PSVita.Build.0 = ContentPackage_NO_TU|PSVita
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x64.ActiveCfg = ContentPackage_NO_TU|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x64.Build.0 = ContentPackage_NO_TU|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x86.ActiveCfg = ContentPackage_NO_TU|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|x86.Build.0 = ContentPackage_NO_TU|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.Build.0 = ContentPackage_NO_TU|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.Deploy.0 = ContentPackage_NO_TU|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ARM64EC.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ARM64EC.Build.0 = CONTENTPACKAGE_SYMBOLS|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Durango
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Durango.Build.0 = CONTENTPACKAGE_SYMBOLS|Durango
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ORBIS.Build.0 = CONTENTPACKAGE_SYMBOLS|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PSVita
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x64.Build.0 = CONTENTPACKAGE_SYMBOLS|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x86.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|x86.Build.0 = CONTENTPACKAGE_SYMBOLS|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = CONTENTPACKAGE_SYMBOLS|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ARM64EC.ActiveCfg = ContentPackage|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ARM64EC.Build.0 = ContentPackage|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Durango.ActiveCfg = ContentPackage|Durango
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Durango.Build.0 = ContentPackage|Durango
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ORBIS.Build.0 = ContentPackage|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.Build.0 = ContentPackage|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PSVita.ActiveCfg = ContentPackage|PSVita
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PSVita.Build.0 = ContentPackage|PSVita
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.ActiveCfg = ContentPackage|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.Build.0 = ContentPackage|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x64.ActiveCfg = ContentPackage|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x64.Build.0 = ContentPackage|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x86.ActiveCfg = ContentPackage|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|x86.Build.0 = ContentPackage|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.Build.0 = ContentPackage|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.Deploy.0 = ContentPackage|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ARM64EC.ActiveCfg = Debug|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ARM64EC.Build.0 = Debug|ARM64EC
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Durango.ActiveCfg = Debug|Durango
@@ -137,10 +44,6 @@ Global
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PSVita.Build.0 = Debug|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.ActiveCfg = Debug|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.Build.0 = Debug|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x64.ActiveCfg = Debug|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x64.Build.0 = Debug|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x86.ActiveCfg = Debug|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|x86.Build.0 = Debug|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.Build.0 = Debug|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.Deploy.0 = Debug|Xbox 360
@@ -156,80 +59,8 @@ Global
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PSVita.Build.0 = Release|PSVita
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.ActiveCfg = Release|x64
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.Build.0 = Release|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x64.ActiveCfg = Release|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x64.Build.0 = Release|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x86.ActiveCfg = Release|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|x86.Build.0 = Release|Win32
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.ActiveCfg = Release|Xbox 360
{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.Build.0 = Release|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ARM64EC.ActiveCfg = ReleaseForArt|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ARM64EC.Build.0 = ReleaseForArt|ARM64EC
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ORBIS.Build.0 = ReleaseForArt|ORBIS
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|PSVita
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x64.ActiveCfg = ReleaseForArt|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x64.Build.0 = ReleaseForArt|x64
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x86.ActiveCfg = ReleaseForArt|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|x86.Build.0 = ReleaseForArt|Win32
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Xbox 360.ActiveCfg = ReleaseForArt|Xbox 360
- {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Xbox 360.Build.0 = ReleaseForArt|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ARM64EC.ActiveCfg = ContentPackage_Vita|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ARM64EC.Build.0 = ContentPackage_Vita|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Durango
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Durango.Build.0 = ContentPackage_NO_TU|Durango
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ORBIS.Build.0 = ContentPackage_NO_TU|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|PSVita
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PSVita.Build.0 = ContentPackage_NO_TU|PSVita
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x64.ActiveCfg = ContentPackage_NO_TU|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x64.Build.0 = ContentPackage_NO_TU|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x86.ActiveCfg = ContentPackage_NO_TU|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|x86.Build.0 = ContentPackage_NO_TU|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.Build.0 = ContentPackage_NO_TU|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.Deploy.0 = ContentPackage_NO_TU|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ARM64EC.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ARM64EC.Build.0 = CONTENTPACKAGE_SYMBOLS|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Durango
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Durango.Build.0 = CONTENTPACKAGE_SYMBOLS|Durango
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ORBIS.Build.0 = CONTENTPACKAGE_SYMBOLS|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PSVita
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x64.Build.0 = CONTENTPACKAGE_SYMBOLS|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x86.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|x86.Build.0 = CONTENTPACKAGE_SYMBOLS|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = CONTENTPACKAGE_SYMBOLS|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ARM64EC.ActiveCfg = ContentPackage|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ARM64EC.Build.0 = ContentPackage|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Durango.ActiveCfg = ContentPackage|Durango
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Durango.Build.0 = ContentPackage|Durango
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.Build.0 = ContentPackage|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.Deploy.0 = ContentPackage|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.Build.0 = ContentPackage|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PSVita.ActiveCfg = ContentPackage|PSVita
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PSVita.Build.0 = ContentPackage|PSVita
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Windows64.ActiveCfg = ContentPackage|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x64.ActiveCfg = ContentPackage|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x64.Build.0 = ContentPackage|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x86.ActiveCfg = ContentPackage|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|x86.Build.0 = ContentPackage|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.Build.0 = ContentPackage|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.Deploy.0 = ContentPackage|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ARM64EC.ActiveCfg = Debug|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ARM64EC.Build.0 = Debug|ARM64EC
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Durango.ActiveCfg = Debug|Durango
@@ -244,10 +75,6 @@ Global
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PSVita.Build.0 = Debug|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.ActiveCfg = Debug|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.Build.0 = Debug|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x64.ActiveCfg = Debug|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x64.Build.0 = Debug|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x86.ActiveCfg = Debug|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|x86.Build.0 = Debug|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.Build.0 = Debug|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.Deploy.0 = Debug|Xbox 360
@@ -264,92 +91,15 @@ Global
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PSVita.Build.0 = Release|PSVita
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.ActiveCfg = Release|x64
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Build.0 = Release|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Deploy.0 = Release|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x64.ActiveCfg = Release|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x64.Build.0 = Release|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x86.ActiveCfg = Release|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|x86.Build.0 = Release|Win32
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.ActiveCfg = Release|Xbox 360
{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.Build.0 = Release|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ARM64EC.ActiveCfg = ReleaseForArt|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ARM64EC.Build.0 = ReleaseForArt|ARM64EC
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ORBIS.Build.0 = ReleaseForArt|ORBIS
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|PSVita
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x64.ActiveCfg = ReleaseForArt|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x64.Build.0 = ReleaseForArt|x64
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x86.ActiveCfg = ReleaseForArt|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|x86.Build.0 = ReleaseForArt|Win32
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Xbox 360.ActiveCfg = Release|Xbox 360
- {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Xbox 360.Build.0 = Release|Xbox 360
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ARM64EC.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ARM64EC.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Durango.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Durango.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ORBIS.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|ORBIS.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PS3.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PS3.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PSVita.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|PSVita.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Windows64.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Windows64.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x64.ActiveCfg = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x64.Build.0 = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x86.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|x86.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage_NO_TU|Xbox 360.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ARM64EC.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ARM64EC.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Durango.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|ORBIS.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|PSVita.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Windows64.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x64.ActiveCfg = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x64.Build.0 = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x86.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|x86.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ARM64EC.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ARM64EC.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Durango.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Durango.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ORBIS.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|ORBIS.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PS3.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PS3.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PSVita.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|PSVita.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Windows64.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Windows64.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x64.ActiveCfg = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x64.Build.0 = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x86.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|x86.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Xbox 360.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ContentPackage|Xbox 360.Build.0 = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|ARM64EC.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Durango.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|ORBIS.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|PS3.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|PSVita.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Windows64.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x64.ActiveCfg = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x64.Build.0 = Debug|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x86.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|x86.Build.0 = Debug|Win32
+ {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Windows64.ActiveCfg = Debug|x64
+ {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Windows64.Build.0 = Debug|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Debug|Xbox 360.ActiveCfg = Debug|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|ARM64EC.ActiveCfg = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Durango.ActiveCfg = Release|Win32
@@ -358,29 +108,7 @@ Global
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|PSVita.ActiveCfg = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Windows64.ActiveCfg = Release|x64
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Windows64.Build.0 = Release|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x64.ActiveCfg = Release|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x64.Build.0 = Release|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x86.ActiveCfg = Release|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|x86.Build.0 = Release|Win32
{CC99EB47-7231-4067-8717-C6BF4ABDE338}.Release|Xbox 360.ActiveCfg = Release|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ARM64EC.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ARM64EC.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Durango.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Durango.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ORBIS.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|ORBIS.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PS3.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PS3.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PSVita.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|PSVita.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Windows64.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Windows64.Build.0 = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x64.ActiveCfg = Release|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x64.Build.0 = Release|x64
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x86.ActiveCfg = Release|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|x86.Build.0 = Release|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Xbox 360.ActiveCfg = Debug|Win32
- {CC99EB47-7231-4067-8717-C6BF4ABDE338}.ReleaseForArt|Xbox 360.Build.0 = Debug|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/x64/Debug/Effects.msscmp b/x64/Debug/Effects.msscmp
deleted file mode 100644
index 8eb4b9155..000000000
Binary files a/x64/Debug/Effects.msscmp and /dev/null differ
diff --git a/x64/Debug/iggy_w64.dll b/x64/Debug/iggy_w64.dll
deleted file mode 100644
index 43430508c..000000000
Binary files a/x64/Debug/iggy_w64.dll and /dev/null differ
diff --git a/x64/Debug/mss64.dll b/x64/Debug/mss64.dll
deleted file mode 100644
index 5e19ce1c1..000000000
Binary files a/x64/Debug/mss64.dll and /dev/null differ
diff --git a/x64/Debug/redist64/binkawin64.asi b/x64/Debug/redist64/binkawin64.asi
deleted file mode 100644
index d363b31db..000000000
Binary files a/x64/Debug/redist64/binkawin64.asi and /dev/null differ
diff --git a/x64/Debug/redist64/mss64dolby.flt b/x64/Debug/redist64/mss64dolby.flt
deleted file mode 100644
index 7e9eb6054..000000000
Binary files a/x64/Debug/redist64/mss64dolby.flt and /dev/null differ
diff --git a/x64/Debug/redist64/mss64ds3d.flt b/x64/Debug/redist64/mss64ds3d.flt
deleted file mode 100644
index c6a6a1252..000000000
Binary files a/x64/Debug/redist64/mss64ds3d.flt and /dev/null differ
diff --git a/x64/Debug/redist64/mss64dsp.flt b/x64/Debug/redist64/mss64dsp.flt
deleted file mode 100644
index 28caa28e9..000000000
Binary files a/x64/Debug/redist64/mss64dsp.flt and /dev/null differ
diff --git a/x64/Debug/redist64/mss64eax.flt b/x64/Debug/redist64/mss64eax.flt
deleted file mode 100644
index c91b6e163..000000000
Binary files a/x64/Debug/redist64/mss64eax.flt and /dev/null differ
diff --git a/x64/Debug/redist64/mss64srs.flt b/x64/Debug/redist64/mss64srs.flt
deleted file mode 100644
index 01baef15a..000000000
Binary files a/x64/Debug/redist64/mss64srs.flt and /dev/null differ
diff --git a/x64/Release/Effects.msscmp b/x64/Release/Effects.msscmp
deleted file mode 100644
index 8eb4b9155..000000000
Binary files a/x64/Release/Effects.msscmp and /dev/null differ
diff --git a/x64/Release/iggy_w64.dll b/x64/Release/iggy_w64.dll
deleted file mode 100644
index 43430508c..000000000
Binary files a/x64/Release/iggy_w64.dll and /dev/null differ
diff --git a/x64/Release/mss64.dll b/x64/Release/mss64.dll
deleted file mode 100644
index 5e19ce1c1..000000000
Binary files a/x64/Release/mss64.dll and /dev/null differ
diff --git a/x64/Release/redist64/binkawin64.asi b/x64/Release/redist64/binkawin64.asi
deleted file mode 100644
index d363b31db..000000000
Binary files a/x64/Release/redist64/binkawin64.asi and /dev/null differ
diff --git a/x64/Release/redist64/mss64dolby.flt b/x64/Release/redist64/mss64dolby.flt
deleted file mode 100644
index 7e9eb6054..000000000
Binary files a/x64/Release/redist64/mss64dolby.flt and /dev/null differ
diff --git a/x64/Release/redist64/mss64ds3d.flt b/x64/Release/redist64/mss64ds3d.flt
deleted file mode 100644
index c6a6a1252..000000000
Binary files a/x64/Release/redist64/mss64ds3d.flt and /dev/null differ
diff --git a/x64/Release/redist64/mss64dsp.flt b/x64/Release/redist64/mss64dsp.flt
deleted file mode 100644
index 28caa28e9..000000000
Binary files a/x64/Release/redist64/mss64dsp.flt and /dev/null differ
diff --git a/x64/Release/redist64/mss64eax.flt b/x64/Release/redist64/mss64eax.flt
deleted file mode 100644
index c91b6e163..000000000
Binary files a/x64/Release/redist64/mss64eax.flt and /dev/null differ
diff --git a/x64/Release/redist64/mss64srs.flt b/x64/Release/redist64/mss64srs.flt
deleted file mode 100644
index 01baef15a..000000000
Binary files a/x64/Release/redist64/mss64srs.flt and /dev/null differ