Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Larsj02 committed Mar 23, 2022
0 parents commit 896b2d7
Show file tree
Hide file tree
Showing 81 changed files with 89,272 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
Binary file added .vs/MythicPlusCalc/v16/.suo
Binary file not shown.
25 changes: 25 additions & 0 deletions MythicPlusCalc.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 16
VisualStudioVersion = 16.0.30804.86
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MythicPlusCalc", "MythicPlusCalc\MythicPlusCalc.csproj", "{F61CDB94-C7D5-4CAE-A452-C822D2E749BA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F61CDB94-C7D5-4CAE-A452-C822D2E749BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F61CDB94-C7D5-4CAE-A452-C822D2E749BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F61CDB94-C7D5-4CAE-A452-C822D2E749BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F61CDB94-C7D5-4CAE-A452-C822D2E749BA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F45C7395-E4C9-4C56-AC2A-46F0927B97C5}
EndGlobalSection
EndGlobal
21 changes: 21 additions & 0 deletions MythicPlusCalc/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="MythicPlusCalc.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<userSettings>
<MythicPlusCalc.Properties.Settings>
<setting name="Name" serializeAs="String">
<value>Name</value>
</setting>
<setting name="Realm" serializeAs="String">
<value>Realm</value>
</setting>
</MythicPlusCalc.Properties.Settings>
</userSettings>
</configuration>
550 changes: 550 additions & 0 deletions MythicPlusCalc/Form1.Designer.cs

Large diffs are not rendered by default.

Loading

0 comments on commit 896b2d7

Please sign in to comment.