Skip to content

Commit e9062ea

Browse files
committed
Add project files.
1 parent e826866 commit e9062ea

8 files changed

+5386
-0
lines changed

TwitchChannelPoints.sln

+25
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 16
4+
VisualStudioVersion = 16.0.30611.23
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwitchChannelPoints", "TwitchChannelPoints\TwitchChannelPoints.csproj", "{4D7A5B7D-C872-4547-85B1-B1CAF216B9C2}"
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+
{4D7A5B7D-C872-4547-85B1-B1CAF216B9C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{4D7A5B7D-C872-4547-85B1-B1CAF216B9C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{4D7A5B7D-C872-4547-85B1-B1CAF216B9C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{4D7A5B7D-C872-4547-85B1-B1CAF216B9C2}.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 = {BE11BEB0-E185-40D6-9BFB-629E4999CA40}
24+
EndGlobalSection
25+
EndGlobal

TwitchChannelPoints/Program.cs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
7+
namespace TwitchChannelPoints
8+
{
9+
static class Program
10+
{
11+
/// <summary>
12+
/// The main entry point for the application.
13+
/// </summary>
14+
[STAThread]
15+
static void Main()
16+
{
17+
Application.SetHighDpiMode(HighDpiMode.SystemAware);
18+
Application.EnableVisualStyles();
19+
Application.SetCompatibleTextRenderingDefault(false);
20+
Application.Run(new frmMain());
21+
}
22+
}
23+
}

TwitchChannelPoints/Properties/Settings.Designer.cs

+50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="TwitchChannelPoints.Properties" GeneratedClassName="Settings">
3+
<Profiles />
4+
<Settings>
5+
<Setting Name="AuthToken" Type="System.String" Scope="User">
6+
<Value Profile="(Default)" />
7+
</Setting>
8+
<Setting Name="Streamers" Type="System.String" Scope="User">
9+
<Value Profile="(Default)" />
10+
</Setting>
11+
</Settings>
12+
</SettingsFile>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
<UseWindowsForms>true</UseWindowsForms>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
11+
</ItemGroup>
12+
13+
<ItemGroup>
14+
<Compile Update="Properties\Settings.Designer.cs">
15+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
16+
<AutoGen>True</AutoGen>
17+
<DependentUpon>Settings.settings</DependentUpon>
18+
</Compile>
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<None Update="Properties\Settings.settings">
23+
<Generator>SettingsSingleFileGenerator</Generator>
24+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
25+
</None>
26+
</ItemGroup>
27+
28+
</Project>

0 commit comments

Comments
 (0)