mirror of
https://github.com/TheShadowEevee/Sharpii-NetCore.git
synced 2025-01-11 14:58:51 -06:00
Run VS Code Cleanup, update .gitignore
This commit is contained in:
parent
40fd02af08
commit
6013a3d36f
10 changed files with 50 additions and 48 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -5,5 +5,3 @@
|
|||
/.vs
|
||||
/bin
|
||||
/obj
|
||||
/Sharpii/obj/x86
|
||||
/WadInstaller/obj/Debug
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
* along with Sharpii. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using libWiiSharp;
|
||||
using System;
|
||||
using System.IO;
|
||||
using libWiiSharp;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
|
|
@ -17,9 +17,6 @@
|
|||
*/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Numerics;
|
||||
using libWiiSharp;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
* along with Sharpii. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using libWiiSharp;
|
||||
using System;
|
||||
using System.IO;
|
||||
using libWiiSharp;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
* along with Sharpii. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using libWiiSharp;
|
||||
using System;
|
||||
using System.IO;
|
||||
using libWiiSharp;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
|
|
@ -16,10 +16,10 @@
|
|||
* along with Sharpii. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using libWiiSharp;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
@ -426,9 +426,12 @@ namespace Sharpii
|
|||
if (BeQuiet.quiet > 1)
|
||||
Console.Write("Downloading content...");
|
||||
|
||||
if (url != "") {
|
||||
if (url != "")
|
||||
{
|
||||
nus.DownloadSingleContent(id, version, content, output, url);
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
nus.DownloadSingleContent(id, version, content, output);
|
||||
}
|
||||
|
||||
|
@ -441,13 +444,17 @@ namespace Sharpii
|
|||
Console.Write("Downloading title...\n");
|
||||
|
||||
string realout = output;
|
||||
if (wad == true) {
|
||||
if (wad == true)
|
||||
{
|
||||
output = temp;
|
||||
}
|
||||
|
||||
if (url != "") {
|
||||
if (url != "")
|
||||
{
|
||||
nus.DownloadTitle(id, version, output, url, store.ToArray());
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
nus.DownloadTitle(id, version, output, store.ToArray());
|
||||
}
|
||||
|
||||
|
|
|
@ -177,8 +177,8 @@ namespace Sharpii
|
|||
Console.WriteLine("");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
public class DeleteADir
|
||||
{
|
||||
public static bool DeleteDirectory(string target_dir)
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
* along with Sharpii. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using libWiiSharp;
|
||||
using System;
|
||||
using System.IO;
|
||||
using libWiiSharp;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
* along with Sharpii. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using libWiiSharp;
|
||||
using System;
|
||||
using System.IO;
|
||||
using libWiiSharp;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
* along with Sharpii. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
using libWiiSharp;
|
||||
using System;
|
||||
using System.IO;
|
||||
using libWiiSharp;
|
||||
|
||||
namespace Sharpii
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue