Skip to content

Commit b969c04

Browse files
committed
init.
1 parent 34ccf3d commit b969c04

16 files changed

+62096
-0
lines changed

ps4_error_explorer.sln

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.28729.10
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ps4_error_explorer", "ps4_error_explorer\ps4_error_explorer.csproj", "{88F435C3-8A29-46C7-86AA-00220BC1B3FD}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|Mixed Platforms = Debug|Mixed Platforms
12+
Debug|x64 = Debug|x64
13+
Debug|x86 = Debug|x86
14+
Release|Any CPU = Release|Any CPU
15+
Release|Mixed Platforms = Release|Mixed Platforms
16+
Release|x64 = Release|x64
17+
Release|x86 = Release|x86
18+
EndGlobalSection
19+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|Any CPU.ActiveCfg = Debug|x86
21+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|Any CPU.Build.0 = Debug|x86
22+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
23+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|Mixed Platforms.Build.0 = Debug|x86
24+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|x64.ActiveCfg = Debug|x64
25+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|x64.Build.0 = Debug|x64
26+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|x86.ActiveCfg = Debug|x86
27+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Debug|x86.Build.0 = Debug|x86
28+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|Any CPU.ActiveCfg = Release|x86
29+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|Any CPU.Build.0 = Release|x86
30+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|Mixed Platforms.ActiveCfg = Release|x86
31+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|Mixed Platforms.Build.0 = Release|x86
32+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|x64.ActiveCfg = Release|x64
33+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|x64.Build.0 = Release|x64
34+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|x86.ActiveCfg = Release|x86
35+
{88F435C3-8A29-46C7-86AA-00220BC1B3FD}.Release|x86.Build.0 = Release|x86
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
GlobalSection(ExtensibilityGlobals) = postSolution
41+
SolutionGuid = {CFE86955-6F65-4EF6-A1AA-BB61C7EE79B9}
42+
EndGlobalSection
43+
EndGlobal
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Reflection;
3+
using System.Runtime.CompilerServices;
4+
using System.Runtime.InteropServices;
5+
6+
[assembly: AssemblyVersion("1.0.0.0")]
7+
[assembly: AssemblyDescription("tool to search for errors")]
8+
[assembly: AssemblyConfiguration("")]
9+
[assembly: AssemblyTitle("ps4_error_explorer")]
10+
[assembly: AssemblyProduct("ps4_error_explorer")]
11+
[assembly: ComVisible(false)]
12+
[assembly: AssemblyTrademark("")]
13+
[assembly: Guid("6564cf9a-a437-4109-bbd5-fda3d1144332")]
14+
[assembly: AssemblyFileVersion("1.000.0.0")]

ps4_error_explorer/Resources.cs

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
using System;
2+
using System.CodeDom.Compiler;
3+
using System.ComponentModel;
4+
using System.Diagnostics;
5+
using System.Globalization;
6+
using System.Resources;
7+
using System.Runtime.CompilerServices;
8+
9+
namespace ps4_error_explorer_internal.Properties
10+
{
11+
[DebuggerNonUserCode]
12+
[GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
13+
[CompilerGenerated]
14+
internal class Resources
15+
{
16+
internal Resources()
17+
{
18+
}
19+
20+
[EditorBrowsable(EditorBrowsableState.Advanced)]
21+
internal static ResourceManager ResourceManager
22+
{
23+
get
24+
{
25+
if (object.ReferenceEquals(Resources.resourceMan, null))
26+
{
27+
ResourceManager resourceManager = new ResourceManager("ps4_error_explorer_internal.Properties.Resources", typeof(Resources).Assembly);
28+
Resources.resourceMan = resourceManager;
29+
}
30+
return Resources.resourceMan;
31+
}
32+
}
33+
34+
[EditorBrowsable(EditorBrowsableState.Advanced)]
35+
internal static CultureInfo Culture
36+
{
37+
get
38+
{
39+
return Resources.resourceCulture;
40+
}
41+
set
42+
{
43+
Resources.resourceCulture = value;
44+
}
45+
}
46+
47+
48+
private static ResourceManager resourceMan;
49+
private static CultureInfo resourceCulture;
50+
}
51+
}

ps4_error_explorer/Settings.Designer.cs

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<SettingsFile CurrentProfile="(Default)" GeneratedClassNamespace="ps4_error_code_viewer_internal.Properties" GeneratedClassName="Settings" xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings">
3+
<Profiles />
4+
<Settings />
5+
</SettingsFile>

ps4_error_explorer/app.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>

0 commit comments

Comments
 (0)