Skip to content

Commit 1a3b0e3

Browse files
committed
Add project files.
1 parent ef8d479 commit 1a3b0e3

12 files changed

Lines changed: 1069 additions & 0 deletions

SharpPocketToolsGUI.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34330.188
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "SharpPocketToolsGUI", "SharpPocketToolsGUI\SharpPocketToolsGUI.vbproj", "{F338184E-137C-43D3-BF8D-9027C5BDD60A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F338184E-137C-43D3-BF8D-9027C5BDD60A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F338184E-137C-43D3-BF8D-9027C5BDD60A}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F338184E-137C-43D3-BF8D-9027C5BDD60A}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F338184E-137C-43D3-BF8D-9027C5BDD60A}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {0876880F-43D4-451B-B121-5D25370C475C}
24+
EndGlobalSection
25+
EndGlobal

SharpPocketToolsGUI/App.config

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
4+
5+
<configSections>
6+
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
7+
<section name="SharpPocketToolsGUI.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
8+
</sectionGroup>
9+
</configSections>
10+
<userSettings>
11+
<SharpPocketToolsGUI.My.MySettings>
12+
<setting name="outputFormat" serializeAs="String">
13+
<value>0</value>
14+
</setting>
15+
<setting name="filePolicy" serializeAs="String">
16+
<value>0</value>
17+
</setting>
18+
<setting name="pcModel" serializeAs="String">
19+
<value>1211</value>
20+
</setting>
21+
<setting name="fileNamePolicy" serializeAs="String">
22+
<value>0</value>
23+
</setting>
24+
<setting name="sharpFileName" serializeAs="String">
25+
<value />
26+
</setting>
27+
</SharpPocketToolsGUI.My.MySettings>
28+
</userSettings>
29+
</configuration>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Imports Microsoft.VisualBasic.ApplicationServices
2+
3+
Namespace My
4+
' The following events are available for MyApplication:
5+
' Startup: Raised when the application starts, before the startup form is created.
6+
' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally.
7+
' UnhandledException: Raised if the application encounters an unhandled exception.
8+
' StartupNextInstance: Raised when launching a single-instance application and the application is already active.
9+
' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected.
10+
11+
' **NEW** ApplyApplicationDefaults: Raised when the application queries default values to be set for the application.
12+
13+
' Example:
14+
' Private Sub MyApplication_ApplyApplicationDefaults(sender As Object, e As ApplyApplicationDefaultsEventArgs) Handles Me.ApplyApplicationDefaults
15+
'
16+
' ' Setting the application-wide default Font:
17+
' e.Font = New Font(FontFamily.GenericSansSerif, 12, FontStyle.Regular)
18+
'
19+
' ' Setting the HighDpiMode for the Application:
20+
' e.HighDpiMode = HighDpiMode.PerMonitorV2
21+
'
22+
' ' If a splash dialog is used, this sets the minimum display time:
23+
' e.MinimumSplashScreenDisplayTime = 4000
24+
' End Sub
25+
26+
Partial Friend Class MyApplication
27+
28+
End Class
29+
End Namespace

SharpPocketToolsGUI/My Project/Application.Designer.vb

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-16"?>
2+
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3+
<MySubMain>true</MySubMain>
4+
<MainForm>frmMain</MainForm>
5+
<SingleInstance>false</SingleInstance>
6+
<ShutdownMode>0</ShutdownMode>
7+
<EnableVisualStyles>true</EnableVisualStyles>
8+
<AuthenticationMode>0</AuthenticationMode>
9+
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
10+
</MyApplicationData>

SharpPocketToolsGUI/My Project/Settings.Designer.vb

Lines changed: 133 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="My" GeneratedClassName="MySettings" UseMySettingsClassName="true">
3+
<Profiles />
4+
<Settings>
5+
<Setting Name="outputFormat" Type="System.Int32" Scope="User">
6+
<Value Profile="(Default)">0</Value>
7+
</Setting>
8+
<Setting Name="filePolicy" Type="System.Int32" Scope="User">
9+
<Value Profile="(Default)">0</Value>
10+
</Setting>
11+
<Setting Name="pcModel" Type="System.String" Scope="User">
12+
<Value Profile="(Default)">1211</Value>
13+
</Setting>
14+
<Setting Name="fileNamePolicy" Type="System.Int32" Scope="User">
15+
<Value Profile="(Default)">0</Value>
16+
</Setting>
17+
<Setting Name="sharpFileName" Type="System.String" Scope="User">
18+
<Value Profile="(Default)" />
19+
</Setting>
20+
</Settings>
21+
</SettingsFile>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net8.0-windows</TargetFramework>
6+
<StartupObject>SharpPocketToolsGUI.My.MyApplication</StartupObject>
7+
<UseWindowsForms>true</UseWindowsForms>
8+
<MyType>WindowsForms</MyType>
9+
<AssemblyName>Sharp PocketTools GUI</AssemblyName>
10+
<AssemblyVersion>1.0</AssemblyVersion>
11+
<FileVersion>1.0</FileVersion>
12+
<Company>SilverGreen93</Company>
13+
<Copyright>Copyright (c) 2024 by SilverGreen93</Copyright>
14+
<ApplicationIcon>cover.ico</ApplicationIcon>
15+
</PropertyGroup>
16+
17+
<ItemGroup>
18+
<Content Include="cover.ico" />
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<Import Include="System.Data" />
23+
<Import Include="System.Drawing" />
24+
<Import Include="System.Windows.Forms" />
25+
</ItemGroup>
26+
27+
<ItemGroup>
28+
<Compile Update="My Project\Application.Designer.vb">
29+
<DesignTime>True</DesignTime>
30+
<AutoGen>True</AutoGen>
31+
<DependentUpon>Application.myapp</DependentUpon>
32+
</Compile>
33+
<Compile Update="My Project\Settings.Designer.vb">
34+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
35+
<AutoGen>True</AutoGen>
36+
<DependentUpon>Settings.settings</DependentUpon>
37+
</Compile>
38+
</ItemGroup>
39+
40+
<ItemGroup>
41+
<None Update="My Project\Application.myapp">
42+
<Generator>MyApplicationCodeGenerator</Generator>
43+
<LastGenOutput>Application.Designer.vb</LastGenOutput>
44+
</None>
45+
<None Update="My Project\Settings.settings">
46+
<CustomToolNamespace>My</CustomToolNamespace>
47+
<Generator>SettingsSingleFileGenerator</Generator>
48+
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
49+
</None>
50+
</ItemGroup>
51+
52+
</Project>

SharpPocketToolsGUI/cover.ico

766 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)