Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit 2b97a6e

Browse files
author
simonmkwii
authored
Version 0.2b
1 parent 292fba8 commit 2b97a6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+3496
-0
lines changed

App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5+
</startup>
6+
</configuration>

HACToolGUI.vbproj

Lines changed: 265 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,265 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{CE531720-CA92-4A56-B581-E3A9FF50A619}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<StartupObject>HACToolGUI.My.MyApplication</StartupObject>
10+
<RootNamespace>HACToolGUI</RootNamespace>
11+
<AssemblyName>HACToolGUI</AssemblyName>
12+
<FileAlignment>512</FileAlignment>
13+
<MyType>WindowsForms</MyType>
14+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
15+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
16+
<IsWebBootstrapper>false</IsWebBootstrapper>
17+
<PublishUrl>C:\Users\asus\Desktop\f\</PublishUrl>
18+
<Install>true</Install>
19+
<InstallFrom>Disk</InstallFrom>
20+
<UpdateEnabled>false</UpdateEnabled>
21+
<UpdateMode>Foreground</UpdateMode>
22+
<UpdateInterval>7</UpdateInterval>
23+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
24+
<UpdatePeriodically>false</UpdatePeriodically>
25+
<UpdateRequired>false</UpdateRequired>
26+
<MapFileExtensions>true</MapFileExtensions>
27+
<ApplicationRevision>7</ApplicationRevision>
28+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29+
<UseApplicationTrust>false</UseApplicationTrust>
30+
<PublishWizardCompleted>true</PublishWizardCompleted>
31+
<BootstrapperEnabled>true</BootstrapperEnabled>
32+
</PropertyGroup>
33+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34+
<PlatformTarget>AnyCPU</PlatformTarget>
35+
<DebugSymbols>true</DebugSymbols>
36+
<DebugType>full</DebugType>
37+
<DefineDebug>true</DefineDebug>
38+
<DefineTrace>true</DefineTrace>
39+
<OutputPath>bin\Debug\</OutputPath>
40+
<DocumentationFile>HACToolGUI.xml</DocumentationFile>
41+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
42+
</PropertyGroup>
43+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
44+
<PlatformTarget>AnyCPU</PlatformTarget>
45+
<DebugType>pdbonly</DebugType>
46+
<DefineDebug>false</DefineDebug>
47+
<DefineTrace>true</DefineTrace>
48+
<Optimize>true</Optimize>
49+
<OutputPath>bin\Release\</OutputPath>
50+
<DocumentationFile>HACToolGUI.xml</DocumentationFile>
51+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
52+
</PropertyGroup>
53+
<PropertyGroup>
54+
<OptionExplicit>On</OptionExplicit>
55+
</PropertyGroup>
56+
<PropertyGroup>
57+
<OptionCompare>Binary</OptionCompare>
58+
</PropertyGroup>
59+
<PropertyGroup>
60+
<OptionStrict>Off</OptionStrict>
61+
</PropertyGroup>
62+
<PropertyGroup>
63+
<OptionInfer>On</OptionInfer>
64+
</PropertyGroup>
65+
<PropertyGroup>
66+
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
67+
</PropertyGroup>
68+
<PropertyGroup>
69+
<ApplicationIcon>favicon.ico</ApplicationIcon>
70+
</PropertyGroup>
71+
<PropertyGroup>
72+
<SignManifests>false</SignManifests>
73+
</PropertyGroup>
74+
<PropertyGroup>
75+
<ManifestCertificateThumbprint>751D5AC4EF2A98BC633CAD03296A0859F6475168</ManifestCertificateThumbprint>
76+
</PropertyGroup>
77+
<PropertyGroup>
78+
<SignAssembly>false</SignAssembly>
79+
</PropertyGroup>
80+
<PropertyGroup>
81+
<AssemblyOriginatorKeyFile>HacTool.pfx</AssemblyOriginatorKeyFile>
82+
</PropertyGroup>
83+
<PropertyGroup>
84+
<GenerateManifests>true</GenerateManifests>
85+
</PropertyGroup>
86+
<PropertyGroup>
87+
<ManifestKeyFile>
88+
</ManifestKeyFile>
89+
</PropertyGroup>
90+
<ItemGroup>
91+
<Reference Include="System" />
92+
<Reference Include="System.Data" />
93+
<Reference Include="System.Deployment" />
94+
<Reference Include="System.Drawing" />
95+
<Reference Include="System.Windows.Forms" />
96+
<Reference Include="System.Xml" />
97+
<Reference Include="System.Core" />
98+
<Reference Include="System.Xml.Linq" />
99+
<Reference Include="System.Data.DataSetExtensions" />
100+
</ItemGroup>
101+
<ItemGroup>
102+
<Import Include="Microsoft.VisualBasic" />
103+
<Import Include="System" />
104+
<Import Include="System.Collections" />
105+
<Import Include="System.Collections.Generic" />
106+
<Import Include="System.Data" />
107+
<Import Include="System.Drawing" />
108+
<Import Include="System.Diagnostics" />
109+
<Import Include="System.Windows.Forms" />
110+
<Import Include="System.Linq" />
111+
<Import Include="System.Xml.Linq" />
112+
<Import Include="System.Threading.Tasks" />
113+
</ItemGroup>
114+
<ItemGroup>
115+
<Compile Include="HFS0Form.Designer.vb">
116+
<DependentUpon>HFS0Form.vb</DependentUpon>
117+
</Compile>
118+
<Compile Include="HFS0Form.vb">
119+
<SubType>Form</SubType>
120+
</Compile>
121+
<Compile Include="INI1Form.Designer.vb">
122+
<DependentUpon>INI1Form.vb</DependentUpon>
123+
</Compile>
124+
<Compile Include="INI1Form.vb">
125+
<SubType>Form</SubType>
126+
</Compile>
127+
<Compile Include="KIP1Form.Designer.vb">
128+
<DependentUpon>KIP1Form.vb</DependentUpon>
129+
</Compile>
130+
<Compile Include="KIP1Form.vb">
131+
<SubType>Form</SubType>
132+
</Compile>
133+
<Compile Include="MainForm.Designer.vb">
134+
<DependentUpon>MainForm.vb</DependentUpon>
135+
</Compile>
136+
<Compile Include="MainForm.vb">
137+
<SubType>Form</SubType>
138+
</Compile>
139+
<Compile Include="NCAForm.vb">
140+
<SubType>Form</SubType>
141+
</Compile>
142+
<Compile Include="NCAForm.Designer.vb">
143+
<DependentUpon>NCAForm.vb</DependentUpon>
144+
<SubType>Form</SubType>
145+
</Compile>
146+
<Compile Include="KeyForm.Designer.vb">
147+
<DependentUpon>KeyForm.vb</DependentUpon>
148+
</Compile>
149+
<Compile Include="KeyForm.vb">
150+
<SubType>Form</SubType>
151+
</Compile>
152+
<Compile Include="My Project\AssemblyInfo.vb" />
153+
<Compile Include="My Project\Application.Designer.vb">
154+
<AutoGen>True</AutoGen>
155+
<DependentUpon>Application.myapp</DependentUpon>
156+
</Compile>
157+
<Compile Include="My Project\Resources.Designer.vb">
158+
<AutoGen>True</AutoGen>
159+
<DesignTime>True</DesignTime>
160+
<DependentUpon>Resources.resx</DependentUpon>
161+
</Compile>
162+
<Compile Include="My Project\Settings.Designer.vb">
163+
<AutoGen>True</AutoGen>
164+
<DependentUpon>Settings.settings</DependentUpon>
165+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
166+
</Compile>
167+
<Compile Include="NPDMForm.Designer.vb">
168+
<DependentUpon>NPDMForm.vb</DependentUpon>
169+
</Compile>
170+
<Compile Include="NPDMForm.vb">
171+
<SubType>Form</SubType>
172+
</Compile>
173+
<Compile Include="PFS0Form.Designer.vb">
174+
<DependentUpon>PFS0Form.vb</DependentUpon>
175+
</Compile>
176+
<Compile Include="PFS0Form.vb">
177+
<SubType>Form</SubType>
178+
</Compile>
179+
<Compile Include="PK11Form.Designer.vb">
180+
<DependentUpon>PK11Form.vb</DependentUpon>
181+
</Compile>
182+
<Compile Include="PK11Form.vb">
183+
<SubType>Form</SubType>
184+
</Compile>
185+
<Compile Include="PK21Form.Designer.vb">
186+
<DependentUpon>PK21Form.vb</DependentUpon>
187+
</Compile>
188+
<Compile Include="PK21Form.vb">
189+
<SubType>Form</SubType>
190+
</Compile>
191+
<Compile Include="RomFSForm.Designer.vb">
192+
<DependentUpon>RomFSForm.vb</DependentUpon>
193+
</Compile>
194+
<Compile Include="RomFSForm.vb">
195+
<SubType>Form</SubType>
196+
</Compile>
197+
<Compile Include="XCIForm.Designer.vb">
198+
<DependentUpon>XCIForm.vb</DependentUpon>
199+
</Compile>
200+
<Compile Include="XCIForm.vb">
201+
<SubType>Form</SubType>
202+
</Compile>
203+
</ItemGroup>
204+
<ItemGroup>
205+
<EmbeddedResource Include="KeyForm.resx">
206+
<DependentUpon>KeyForm.vb</DependentUpon>
207+
</EmbeddedResource>
208+
<EmbeddedResource Include="MainForm.resx">
209+
<DependentUpon>MainForm.vb</DependentUpon>
210+
</EmbeddedResource>
211+
<EmbeddedResource Include="NCAForm.resx">
212+
<DependentUpon>NCAForm.vb</DependentUpon>
213+
</EmbeddedResource>
214+
<EmbeddedResource Include="My Project\Resources.resx">
215+
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
216+
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
217+
<CustomToolNamespace>My.Resources</CustomToolNamespace>
218+
<SubType>Designer</SubType>
219+
</EmbeddedResource>
220+
<EmbeddedResource Include="RomFSForm.resx">
221+
<DependentUpon>RomFSForm.vb</DependentUpon>
222+
</EmbeddedResource>
223+
<EmbeddedResource Include="XCIForm.resx">
224+
<DependentUpon>XCIForm.vb</DependentUpon>
225+
</EmbeddedResource>
226+
</ItemGroup>
227+
<ItemGroup>
228+
<None Include="HacTool.pfx" />
229+
<None Include="HACToolGUI_TemporaryKey.pfx" />
230+
<None Include="My Project\app.manifest">
231+
<SubType>Designer</SubType>
232+
</None>
233+
<None Include="My Project\Application.myapp">
234+
<Generator>MyApplicationCodeGenerator</Generator>
235+
<LastGenOutput>Application.Designer.vb</LastGenOutput>
236+
</None>
237+
<None Include="My Project\Settings.settings">
238+
<Generator>SettingsSingleFileGenerator</Generator>
239+
<CustomToolNamespace>My</CustomToolNamespace>
240+
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
241+
</None>
242+
<None Include="App.config">
243+
<SubType>Designer</SubType>
244+
</None>
245+
</ItemGroup>
246+
<ItemGroup>
247+
<Content Include="favicon.ico" />
248+
<None Include="Resources\RomFSDrop.png" />
249+
<None Include="Resources\XCIDrop.png" />
250+
<None Include="Resources\NCADrop.png" />
251+
</ItemGroup>
252+
<ItemGroup>
253+
<BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
254+
<Visible>False</Visible>
255+
<ProductName>Microsoft .NET Framework 4.6.1 %28x86 and x64%29</ProductName>
256+
<Install>true</Install>
257+
</BootstrapperPackage>
258+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
259+
<Visible>False</Visible>
260+
<ProductName>.NET Framework 3.5 SP1</ProductName>
261+
<Install>false</Install>
262+
</BootstrapperPackage>
263+
</ItemGroup>
264+
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
265+
</Project>

HACToolGUI.vbproj.user

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ReferencePath>
5+
</ReferencePath>
6+
<PublishUrlHistory>publish\</PublishUrlHistory>
7+
<InstallUrlHistory />
8+
<SupportUrlHistory />
9+
<UpdateUrlHistory />
10+
<BootstrapperUrlHistory />
11+
<ErrorReportUrlHistory />
12+
<FallbackCulture>en-US</FallbackCulture>
13+
<VerifyUploadedFiles>false</VerifyUploadedFiles>
14+
<ProjectView>ShowAllFiles</ProjectView>
15+
</PropertyGroup>
16+
<PropertyGroup>
17+
<EnableSecurityDebugging>false</EnableSecurityDebugging>
18+
</PropertyGroup>
19+
</Project>

HFS0Form.Designer.vb

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

HFS0Form.vb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class HFS0Form
2+
3+
End Class

INI1Form.Designer.vb

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

INI1Form.vb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Public Class INI1Form
2+
3+
End Class

KIP1Form.Designer.vb

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)