Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathanwoodburn committed Jan 12, 2023
1 parent 67d4282 commit 920045f
Show file tree
Hide file tree
Showing 7 changed files with 695 additions and 0 deletions.
25 changes: 25 additions & 0 deletions BidderGUI.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33213.308
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BidderGUI", "BidderGUI\BidderGUI.csproj", "{B795BA92-123D-4ABB-A3B9-6A35F7760C2E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B795BA92-123D-4ABB-A3B9-6A35F7760C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B795BA92-123D-4ABB-A3B9-6A35F7760C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B795BA92-123D-4ABB-A3B9-6A35F7760C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B795BA92-123D-4ABB-A3B9-6A35F7760C2E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E68CED6D-47DF-42D3-BFA5-3906E94F79DB}
EndGlobalSection
EndGlobal
16 changes: 16 additions & 0 deletions BidderGUI/BidderGUI.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>NJW Icon 512.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
<Content Include="NJW Icon 512.ico" />
</ItemGroup>

</Project>
335 changes: 335 additions & 0 deletions BidderGUI/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 920045f

Please sign in to comment.