mirror of
https://github.com/TheShadowEevee/Sharpii-NetCore.git
synced 2025-01-11 14:58:51 -06:00
Fixed some typos, added a personally modified version of libWiiSharp capable of taking CETK files that already exist
This commit is contained in:
parent
03a23953b3
commit
894554baf6
8 changed files with 15 additions and 94 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -3,3 +3,7 @@
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
/.vs
|
/.vs
|
||||||
|
/bin
|
||||||
|
/obj
|
||||||
|
/Sharpii/obj/x86
|
||||||
|
/WadInstaller/obj/Debug
|
||||||
|
|
|
@ -3,16 +3,16 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
|
<PublishTrimmed>true</PublishTrimmed>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Sharpii\Properties\" />
|
|
||||||
<Folder Include="WadInstaller\Properties\" />
|
<Folder Include="WadInstaller\Properties\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Costura.Fody" Version="4.1.0" />
|
<PackageReference Include="Costura.Fody" Version="4.1.0" />
|
||||||
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
|
<PackageReference Include="System.Drawing.Common" Version="5.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
6
Sharpii.csproj.user
Normal file
6
Sharpii.csproj.user
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ShowAllFiles>false</ShowAllFiles>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
|
@ -116,7 +116,7 @@ You used the -IMET flag, but no title was provided.
|
||||||
Provide a proper title.
|
Provide a proper title.
|
||||||
|
|
||||||
Exit Code: 16022/24
|
Exit Code: 16022/24
|
||||||
IMET and IMD5 Flags were used, but only one can be used. (SHARPII_NET_CORE_U8_TWO_HEADERS
|
IMET and IMD5 Flags were used, but only one can be used. (SHARPII_NET_CORE_U8_TWO_HEADERS)
|
||||||
You used the -IMET and -IMD5 flags, but you can't use two headers.
|
You used the -IMET and -IMD5 flags, but you can't use two headers.
|
||||||
Provide only one flag.
|
Provide only one flag.
|
||||||
|
|
||||||
|
|
|
@ -189,7 +189,7 @@ namespace Sharpii
|
||||||
Console.WriteLine(" Errors Get a Sharpii error's description");
|
Console.WriteLine(" Errors Get a Sharpii error's description");
|
||||||
Console.WriteLine(" ExitCodes List of all Sharpii exit codes");
|
Console.WriteLine(" ExitCodes List of all Sharpii exit codes");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
Console.WriteLine(" NOTE: Too see more detailed descriptions of any of the above,");
|
Console.WriteLine(" NOTE: To see more detailed descriptions of any of the above,");
|
||||||
Console.WriteLine(" use 'Sharpii [function] -h'");
|
Console.WriteLine(" use 'Sharpii [function] -h'");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
|
@ -236,7 +236,7 @@ public class BeQuiet
|
||||||
}
|
}
|
||||||
public class ProgramVersion
|
public class ProgramVersion
|
||||||
{
|
{
|
||||||
public static string version = "1.1.1; .Net Core Port (Based on Sharpii 1.7.3)";
|
public static string version = "1.1.3; .Net Core Port (Based on Sharpii 1.7.3)";
|
||||||
}
|
}
|
||||||
public class Logging
|
public class Logging
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
// General Information about an assembly is controlled through the following
|
|
||||||
// set of attributes. Change these attribute values to modify the information
|
|
||||||
// associated with an assembly.
|
|
||||||
[assembly: AssemblyTitle("Sharpii")]
|
|
||||||
[assembly: AssemblyDescription("A command line app for libWiiSharp.dll")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCompany("")]
|
|
||||||
[assembly: AssemblyProduct("Sharpii")]
|
|
||||||
[assembly: AssemblyCopyright("2013 person66")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
|
|
||||||
// Setting ComVisible to false makes the types in this assembly not visible
|
|
||||||
// to COM components. If you need to access a type in this assembly from
|
|
||||||
// COM, set the ComVisible attribute to true on that type.
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
||||||
[assembly: Guid("88c17956-a329-4c36-8919-97334e6b6e4d")]
|
|
||||||
|
|
||||||
// Version information for an assembly consists of the following four values:
|
|
||||||
//
|
|
||||||
// Major Version
|
|
||||||
// Minor Version
|
|
||||||
// Build Number
|
|
||||||
// Revision
|
|
||||||
//
|
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
|
||||||
// by using the '*' as shown below:
|
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||||
[assembly: AssemblyVersion("1.7.2")]
|
|
||||||
[assembly: AssemblyFileVersion("1.7.2")]
|
|
Binary file not shown.
|
@ -1,53 +0,0 @@
|
||||||
/* This file is part of CustomizeMii
|
|
||||||
* Copyright (C) 2009 WiiCrazy / I.R.on
|
|
||||||
*
|
|
||||||
* CustomizeMii is free software: you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU General Public License as published
|
|
||||||
* by the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* CustomizeMii is distributed in the hope that it will be
|
|
||||||
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
||||||
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System.Reflection;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
// General Information about an assembly is controlled through the following
|
|
||||||
// set of attributes. Change these attribute values to modify the information
|
|
||||||
// associated with an assembly.
|
|
||||||
[assembly: AssemblyTitle("WadInstaller")]
|
|
||||||
[assembly: AssemblyDescription("")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCompany("Irduco")]
|
|
||||||
[assembly: AssemblyProduct("WadInstaller")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © Irduco 2010")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
|
|
||||||
// Setting ComVisible to false makes the types in this assembly not visible
|
|
||||||
// to COM components. If you need to access a type in this assembly from
|
|
||||||
// COM, set the ComVisible attribute to true on that type.
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
||||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
||||||
[assembly: Guid("032fe41d-4954-44ea-a8f3-e51de3546361")]
|
|
||||||
|
|
||||||
// Version information for an assembly consists of the following four values:
|
|
||||||
//
|
|
||||||
// Major Version
|
|
||||||
// Minor Version
|
|
||||||
// Build Number
|
|
||||||
// Revision
|
|
||||||
//
|
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
|
||||||
// by using the '*' as shown below:
|
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
Loading…
Reference in a new issue