Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
fireshaper committed Sep 19, 2018
0 parents commit 8ed7e91
Show file tree
Hide file tree
Showing 53 changed files with 15,757 additions and 0 deletions.
18 changes: 18 additions & 0 deletions App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?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="Omnibus.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.6.1" />
</startup>
<userSettings>
<Omnibus.Properties.Settings>
<setting name="DownloadLocation" serializeAs="String">
<value />
</setting>
</Omnibus.Properties.Settings>
</userSettings>
</configuration>
13 changes: 13 additions & 0 deletions Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Omnibus
{
class GlobalVariables
{
public static String downloadPath = "";
}
}
241 changes: 241 additions & 0 deletions 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 8ed7e91

Please sign in to comment.