Skip to content

Commit

Permalink
Rename of C# project name and associations
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnova committed Jun 6, 2019
1 parent b984b9d commit 14fb5ab
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
14 changes: 13 additions & 1 deletion FFXIV_TexTools_CLI.sln → FFXIV_Modding_Tool.sln
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FFXIV_TexTools_CLI", "FFXIV_TexTools_CLI\FFXIV_TexTools_CLI.csproj", "{513E502F-A861-448E-9A78-FBA09C5B8E5C}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FFXIV_Modding_Tool", "FFXIV_Modding_Tool\FFXIV_Modding_Tool.csproj", "{513E502F-A861-448E-9A78-FBA09C5B8E5C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -14,4 +14,16 @@ Global
{513E502F-A861-448E-9A78-FBA09C5B8E5C}.Release|x86.ActiveCfg = Release|x86
{513E502F-A861-448E-9A78-FBA09C5B8E5C}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
Policies = $0
$0.DotNetNamingPolicy = $1
$1.DirectoryNamespaceAssociation = PrefixedHierarchical
$0.TextStylePolicy = $2
$2.inheritsSet = null
$2.scope = text/x-csharp
$0.CSharpFormattingPolicy = $3
$3.scope = text/x-csharp
$0.StandardHeader = $4
$0.VersionControlPolicy = $5
EndGlobalSection
EndGlobal
Expand Up @@ -7,7 +7,7 @@
using xivModdingFramework.Mods.DataContainers;
using xivModdingFramework.Helpers;

namespace FFXIV_TexTools_CLI.Commandline
namespace FFXIV_Modding_Tool.Commandline
{
public class Arguments
{
Expand Down Expand Up @@ -278,7 +278,7 @@ bool PreviouslyModifiedGame()
bool unsupportedSource = false;
foreach (Mod mod in modData.Mods)
{
if (mod.source != "TexToolsCLI")
if (mod.source != "FFMT")
{
unsupportedSource = true;
break;
Expand Down
Expand Up @@ -2,7 +2,7 @@
using System.IO;
using Salaros.Configuration;

namespace FFXIV_TexTools_CLI.Configuration
namespace FFXIV_Modding_Tool.Configuration
{
public class Config
{
Expand Down
Expand Up @@ -6,7 +6,7 @@
<ProjectGuid>{513E502F-A861-448E-9A78-FBA09C5B8E5C}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>FFXIV_TexTools_CLI</RootNamespace>
<AssemblyName>FFXIV_TexTools_CLI</AssemblyName>
<AssemblyName>FFXIV_Modding_Tool</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
Expand Down
10 changes: 5 additions & 5 deletions FFXIV_TexTools_CLI/Program.cs → FFXIV_Modding_Tool/Program.cs
Expand Up @@ -28,12 +28,12 @@
using xivModdingFramework.Mods.FileTypes;
using xivModdingFramework.SqPack.FileTypes;
using xivModdingFramework.Textures.Enums;
using FFXIV_TexTools_CLI.Configuration;
using FFXIV_TexTools_CLI.Commandline;
using FFXIV_Modding_Tool.Configuration;
using FFXIV_Modding_Tool.Commandline;
using ICSharpCode.SharpZipLib.Zip;
using Newtonsoft.Json;

namespace FFXIV_TexTools_CLI
namespace FFXIV_Modding_Tool
{
public class MainClass
{
Expand Down Expand Up @@ -172,7 +172,7 @@ public void ImportModpackHandler(DirectoryInfo ttmpPath, bool customImport, bool
PrintMessage("Starting import...");
try
{
var ttmp = new TTMP(ttmpPath, "TexToolsCLI");
var ttmp = new TTMP(ttmpPath, "");

try
{
Expand Down Expand Up @@ -212,7 +212,7 @@ void GetModpackData(DirectoryInfo ttmpPath, ModPackJson ttmpData, bool customImp
var modding = new Modding(_indexDirectory);
string ttmpName = null;
List<SimpleModPackEntries> ttmpDataList = new List<SimpleModPackEntries>();
TTMP _textoolsModpack = new TTMP(ttmpPath, "TexToolsCLI");
TTMP _textoolsModpack = new TTMP(ttmpPath, "FFMT");
PrintMessage($"Extracting data from {ttmpPath.Name}...");
if (ttmpData != null)
{
Expand Down
Expand Up @@ -4,7 +4,7 @@
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.

[assembly: AssemblyTitle("FFXIV_TexTools_CLI")]
[assembly: AssemblyTitle("FFXIV_Modding_Tool")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
Expand Down
File renamed without changes.

0 comments on commit 14fb5ab

Please sign in to comment.