Skip to content

Commit 47458cd

Browse files
committed
Move ModApi.{InterimSetup,Updater} to Package
1 parent 446041a commit 47458cd

28 files changed

+50
-77
lines changed

ModApi.InterimSetup/ModApi.InterimSetup/App.xaml.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.
File renamed without changes.

ModApi.InterimSetup/ModApi.InterimSetup/App.xaml renamed to Package/ModAPI.InterimSetup/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="ModApi.InterimSetup.App"
1+
<Application x:Class="ModAPI.InterimSetup.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:ModApi.InterimSetup"
4+
xmlns:local="clr-namespace:ModAPI.InterimSetup"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77
<ResourceDictionary>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
using System.Windows;
2+
3+
namespace ModAPI.InterimSetup
4+
{
5+
/// <summary>
6+
/// Interaction logic for App.xaml
7+
/// </summary>
8+
public partial class App : Application
9+
{
10+
}
11+
}

ModApi.InterimSetup/ModApi.InterimSetup/MainWindow.xaml renamed to Package/ModAPI.InterimSetup/MainWindow.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Window x:Class="ModApi.InterimSetup.MainWindow"
1+
<Window x:Class="ModAPI.InterimSetup.MainWindow"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:ModApi.InterimSetup"
6+
xmlns:local="clr-namespace:ModAPI.InterimSetup"
77
xmlns:ui="clr-namespace:ModAPI.Common.UI"
88
mc:Ignorable="d"
99
WindowStartupLocation="CenterScreen"

ModApi.InterimSetup/ModApi.InterimSetup/MainWindow.xaml.cs renamed to Package/ModAPI.InterimSetup/MainWindow.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Panel = System.Windows.Controls.Panel;
1313
using File = System.IO.File;
1414

15-
namespace ModApi.InterimSetup
15+
namespace ModAPI.InterimSetup
1616
{
1717
/// <summary>
1818
/// Interaction logic for MainWindow.xaml
@@ -101,7 +101,7 @@ private void FindExistingLauncherKit()
101101

102102
private void UnzipLauncherKit(string path)
103103
{
104-
using (MemoryStream unmStream = new MemoryStream(ModApi.InterimSetup.Properties.Resources.ModApiUpdate))
104+
using (MemoryStream unmStream = new MemoryStream(ModAPI.InterimSetup.Properties.Resources.ModApiUpdate))
105105
{
106106
using (ZipArchive archive = new ZipArchive(unmStream, ZipArchiveMode.Read))
107107
{

ModApi.InterimSetup/ModApi.InterimSetup/ModApi.InterimSetup.csproj renamed to Package/ModAPI.InterimSetup/ModAPI.InterimSetup.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{788A2ABB-921C-4FA5-94FC-C22F76A5A86D}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
9-
<RootNamespace>ModApi.InterimSetup</RootNamespace>
10-
<AssemblyName>ModApi.InterimSetup</AssemblyName>
9+
<RootNamespace>ModAPI.InterimSetup</RootNamespace>
10+
<AssemblyName>ModAPI.InterimSetup</AssemblyName>
1111
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>

ModApi.InterimSetup/ModApi.InterimSetup/Properties/AssemblyInfo.cs renamed to Package/ModAPI.InterimSetup/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
// General Information about an assembly is controlled through the following
88
// set of attributes. Change these attribute values to modify the information
99
// associated with an assembly.
10-
[assembly: AssemblyTitle("ModApi.InterimSetup")]
10+
[assembly: AssemblyTitle("ModAPI.InterimSetup")]
1111
[assembly: AssemblyDescription("")]
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("")]
14-
[assembly: AssemblyProduct("ModApi.InterimSetup")]
14+
[assembly: AssemblyProduct("ModAPI.InterimSetup")]
1515
[assembly: AssemblyCopyright("Copyright © 2018")]
1616
[assembly: AssemblyTrademark("")]
1717
[assembly: AssemblyCulture("")]

ModApi.InterimSetup/ModApi.InterimSetup/Properties/Resources.Designer.cs renamed to Package/ModAPI.InterimSetup/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ModApi.InterimSetup/ModApi.InterimSetup/Properties/Resources.resx renamed to Package/ModAPI.InterimSetup/Properties/Resources.resx

File renamed without changes.

0 commit comments

Comments
 (0)